/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A1F44;
    --secondary-color: #6B7280;
    --accent-color: #F97316;
    --text-color: #111827;
    --light-text: #6B7280;
    --bg-light: #ffffff;
    --white: #ffffff;
    --border-color: #e6e7e9;
    --shadow: 0 2px 10px rgba(10,31,68,0.08);
    --shadow-lg: 0 5px 20px rgba(10,31,68,0.12);
    /* New color palette - used across sections */
    --color-1: #dad7cd;   /* light cream - section backgrounds */
    --color-2: #a3b18a;   /* sage - borders, subtle accents */
    --color-3: #588157;   /* medium green - links, icons */
    --color-4: #3a5a40;   /* dark green - headers, footer */
    --color-5: #344e41;   /* darkest - top bar, strong contrast */
    --shadow-soft: 0 4px 14px rgba(52,62,65,0.08);
    --shadow-card: 0 10px 30px rgba(58,90,64,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding-top: 110px; /* space for fixed header (top + main) */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header strip - darker bar, clearly separate from main header */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1002;
    background: var(--color-5);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid var(--color-3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Make top header stretch full browser width and match header spacing */
.top-header > .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.top-header .contact-info span,
.top-header .social-links a {
    color: var(--white);
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i,
.social-links i {
    margin-right: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Main Header - distinct from strip; gradient color-4 to color-3 */
.main-header {
    position: fixed;
    top: 40px; /* below top-header */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.25)), url('https://images.unsplash.com/photo-1741666989875-8e30ee0fc524?auto=format&fit=crop&w=1920&q=80') center/cover;
    background-attachment: fixed;
    padding: 15px 0;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
/* Same accent line as footer - at header bottom */
.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--color-3));
    z-index: 10;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-4) 0%, var(--color-3) 100%);
    z-index: 0;
    opacity: 0.92;
}

.header-content {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.header-content .mobile-menu-toggle {
    display: none;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* New header bar layout: logo left, nav center, actions right */
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

/* Ensure header content sits above the background overlay */
.header-bar {
    position: relative;
    z-index: 5;
}

.logo-link { display: inline-flex; align-items:center; gap:10px; text-decoration:none; color:inherit; }

.header-center-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.logo {
    width: 64px;
    height: 56px;
    min-width: 64px;
    background: linear-gradient(135deg, var(--color-4) 0%, var(--color-3) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.logo-cube {
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo-initial {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.call-btn { position: relative; z-index: 6; }

.call-btn:hover { opacity: 0.95; transform: translateY(-1px); }

.logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-text p {
    font-size: 11px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-logo {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.cert-badge {
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 5px;
    display: inline-block;
}

.cert-badge.circular {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
}

.cert-logo small {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.9);
}

/* Navigation */
.main-nav {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    background: transparent;
    padding: 0 6px;
    margin: 0;
    border-radius: 5px;
    overflow: visible;
    justify-content: center;
    gap: 2px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    padding: 10px 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.25s;
    border-bottom: 3px solid transparent;
    font-size: 14px;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown i {
    font-size: 12px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 500px;
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    padding: 20px;
    display: none;
    z-index: 1000;
    margin-top: 5px;
    border: 1px solid var(--color-2);
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dropdown-column h4 {
    color: var(--color-4);
    margin-bottom: 15px;
    font-size: 16px;
}

.dropdown-column ul {
    list-style: none;
}

.dropdown-column ul li {
    margin-bottom: 10px;
}

.dropdown-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: color 0.3s;
    border: none;
    background: none;
}

.dropdown-column ul li a:hover {
    color: var(--color-4);
    padding-left: 5px;
}

.mobile-menu-toggle {
    display: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 20px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.3);
}

/* Full-width header content and prevent header row wrapping */
.main-header > .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

/* Tablet: slightly reduce header padding */
@media (max-width: 992px) {
    .main-header > .container,
    .top-header > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-bar { padding: 6px 0; }
    .main-header .logo { width: 54px; height: 48px; min-width: 54px; padding: 0 8px; }
    .logo-cube { font-size: 1.25rem; }
    .logo-initial { font-size: 1.65rem; }
    .nav-item a { padding: 8px 6px; font-size: 13px; }
}

.header-bar {
    flex-wrap: nowrap;
}

.header-center-nav {
    min-width: 0;
}

.main-header .logo {
    width: 64px;
    height: 56px;
    min-width: 64px;
    border-radius: 10px;
    flex: 0 0 auto;
}

.logo-text h1 { white-space: nowrap; }

.nav-menu { white-space: nowrap; }
.nav-item { flex: 0 0 auto; }
.nav-item a { white-space: nowrap; }

/* Mobile header adjustments */
@media (max-width: 768px) {
    .logo-text { display: none; }
    .logo { width: 48px; height: 44px; min-width: 48px; padding: 0 6px; gap: 4px; }
    .logo-cube { font-size: 1.1rem; }
    .logo-initial { font-size: 1.5rem; }

    .header-bar { padding: 6px 0; }

    .mobile-menu-toggle { display: block; }

    /* Ensure header-bar is the positioning context so nav can be full-width */
    .header-bar { position: relative; }

    /* Mobile nav slides down from the header-bar and fills width */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-5);
        flex-direction: column;
        gap: 0;
        padding: 8px 12px;
        border-radius: 0 0 6px 6px;
        box-shadow: var(--shadow-lg);
        z-index: 1003;
    }

    .nav-menu.active { 
        display: flex; 
        position: fixed;
        top: 56px; /* below main header when top-header is hidden */
        left: 0;
        right: 0;
        z-index: 1100;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }

    .nav-item a {
        padding: 12px 16px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    /* Dropdowns behave as accordion on mobile */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: none;
        margin: 0;
    }
    .dropdown-menu.active { display: block; }
    .dropdown-content { display: block; gap: 0; }
    .dropdown-column { margin-bottom: 12px; }
    .dropdown-column h4 { color: var(--white); }
    .dropdown-column ul li a { color: rgba(255,255,255,0.95); padding-left: 0; }

    /* Remove call button on mobile and keep only hamburger on the right */
    .call-btn { display: none !important; visibility: hidden !important; height: 0 !important; padding: 0 !important; margin: 0 !important; }
    .header-actions { margin-left: auto; }

    /* Ensure header elements don't wrap and keep logo left, hamburger right */
    .header-bar { gap: 10px; z-index: 1200; }
    .logo-section { order: 0; }
    .header-center-nav { order: 1; }
    .header-actions { order: 2; }
}


/* Hero Section - 90vh height, images fit perfectly inside */
.hero-section {
    position: relative;
    text-align: center;
    color: var(--white);
    height: 85vh;
    min-height: 320px;
    max-height: 800px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 76, 77, 0.65));
    z-index: 1;
}

/* Hero slider - fills hero height, all images fit perfectly */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    min-height: 0;
}
.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    min-height: 0;
}
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
/* Ken Burns: subtle zoom + pan on active slide (unique cinematic feel) */
.hero-slider .slide:nth-child(1).active img { animation: hero-kenburns-1 8s ease-out forwards; }
.hero-slider .slide:nth-child(2).active img { animation: hero-kenburns-2 8s ease-out forwards; }
.hero-slider .slide:nth-child(3).active img { animation: hero-kenburns-3 8s ease-out forwards; }
.hero-slider .slide:nth-child(4).active img { animation: hero-kenburns-4 8s ease-out forwards; }
@keyframes hero-kenburns-1 {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.06) translate(-1%, -1%); }
}
@keyframes hero-kenburns-2 {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.07) translate(1.5%, 0); }
}
@keyframes hero-kenburns-3 {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.05) translate(0, 1%); }
}
@keyframes hero-kenburns-4 {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.08) translate(-1.5%, -0.5%); }
}

/* Ensure slider and slides fill hero height so images always fit inside */
.hero-slider,
.hero-slider .slide {
    height: 100%;
    width: 100%;
}
.hero-slider .slide img {
    height: 100% !important;
    width: 100% !important;
}

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    backdrop-filter: blur(8px);
}
.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}
.hero-arrow:focus {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.hero-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    transition: width 0.35s ease, background 0.3s, border-color 0.3s, min-width 0.35s ease;
}
.hero-dot:hover {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.9);
}
.hero-dot.active {
    width: 28px;
    min-width: 28px;
    background: var(--white);
    border-color: var(--white);
}
.hero-dot:focus {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

/* Progress bar: fills over autoplay duration (unique “time left” feel) */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}
.hero-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-3), var(--white));
    transition: none;
}
.hero-progress-bar.animating {
    transition: width 5s linear;
    width: 100%;
}

/* Slide counter badge (01 / 04) */
.hero-counter {
    position: absolute;
    bottom: 42px;
    right: 28px;
    z-index: 3;
    font-variant-numeric: tabular-nums;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
}
.hero-counter-sep {
    margin: 0 4px;
    opacity: 0.7;
}
.hero-counter-current {
    color: var(--white);
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Hero content fade when slide changes */
.hero-content.is-changing .hero-title,
.hero-content.is-changing .hero-subtitle,
.hero-content.is-changing .hero-buttons {
    opacity: 0;
    transform: translateY(8px);
}
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-buttons {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-content {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 760px;
    width: 100%;
    padding: 20px 24px;
    box-sizing: border-box;
}

/* Prevent wrapping on desktop so title, subtitle and CTAs stay on one line */
.hero-title,
.hero-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-title { font-size: 56px; }
.hero-subtitle { font-size: 20px; }
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}
.hero-buttons a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0,0,0,0.25), 0 0 1px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive hero sizes - 85vh on smaller screens */
@media (max-width: 992px) {
    .hero-section { height: 85vh; min-height: 280px; max-height: 600px; }
    .hero-title { font-size: 36px; }
    .hero-arrow { width: 44px; height: 44px; font-size: 18px; }
    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }
    .hero-dots { bottom: 20px; gap: 10px; }
    .hero-dot { width: 10px; height: 10px; }
    .hero-counter { bottom: 36px; right: 20px; font-size: 12px; }
    .hero-dot.active { width: 22px; min-width: 22px; }
}
@media (max-width: 600px) {
    .hero-section { height: 85vh; min-height: 260px; max-height: 500px; }
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 14px; }
    /* Allow wrapping on small screens */
    .hero-title,
    .hero-subtitle { white-space: normal; }
    .hero-buttons { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .hero-arrow { width: 40px; height: 40px; font-size: 16px; }
    .hero-prev { left: 8px; }
    .hero-next { right: 8px; }
    .hero-dots { bottom: 14px; gap: 8px; }
    .hero-dot { width: 8px; height: 8px; border-width: 1.5px; }
    .hero-dot.active { width: 18px; min-width: 18px; }
    .hero-counter { bottom: 30px; right: 12px; font-size: 11px; letter-spacing: 0.05em; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 17px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--color-4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-4);
    border-color: var(--color-3);
}

.btn-outline:hover {
    background-color: var(--color-4);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Features Section - uses color-1 background, color-2/3 accents */
.features-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--color-1) 0%, var(--bg-light) 50%, var(--color-1) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(163,177,138,0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-5);
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.5px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-3), var(--color-4));
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Desktop: exactly 4 cards in one row, enough width so title doesn't break */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 25px 40px;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: var(--color-3);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-3) 0%, var(--color-4) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(10,31,68,0.15);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-3), var(--color-5));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotateY(5deg);
    box-shadow: 0 15px 35px rgba(10,31,68,0.25);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: visible;
    word-break: normal;
    overflow-wrap: normal;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.feature-card:hover h3 {
    color: var(--color-4);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 15px;
    transition: color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.feature-card:hover p {
    color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px 35px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
}

/* Industry Section - uses color-1 bg, color-2 border */
.industry-section {
    padding: 80px 0;
    background-color: var(--color-1);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-2);
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-content {
    padding: 25px;
}

.industry-content h3 {
    color: var(--color-4);
    margin-bottom: 15px;
    font-size: 24px;
}

.industry-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Customize Container page - solution blocks */
.custom-solutions-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

.custom-solution-block {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 40px 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-2);
    transition: box-shadow 0.3s ease;
}

.custom-solution-block:hover {
    box-shadow: var(--shadow-lg);
}

.custom-solution-block-alt {
    background: linear-gradient(135deg, var(--color-1) 0%, rgba(255,255,255,0.98) 100%);
}

.custom-solution-icon-wrap {
    margin-bottom: 16px;
}

.custom-solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
    color: var(--white);
    border-radius: 14px;
    font-size: 24px;
}

.custom-solution-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-5);
    margin: 0 0 12px;
}

.custom-solution-lead {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.custom-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.custom-solution-col h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.custom-solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-solution-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
    font-size: 15px;
}

.custom-solution-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-4);
    font-size: 12px;
}

.custom-solution-tags li {
    display: inline-block;
    margin: 4px 8px 4px 0;
    padding: 6px 14px;
    padding-left: 14px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
}

.custom-solution-tags li::before {
    display: none;
}

.custom-solution-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.custom-solution-inline li {
    padding-left: 24px;
}

.custom-solution-inline li i {
    margin-right: 6px;
    color: var(--color-4);
}

@media (max-width: 768px) {
    .custom-solution-block {
        padding: 24px 20px 28px;
    }
    .custom-solution-title {
        font-size: 22px;
    }
}

/* ========== Container detail page – professional product layout ========== */
.product-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    inset: 0;
}

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

.product-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--color-5) 0%, var(--color-4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 80px;
    gap: 12px;
}

.product-hero-placeholder span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(52,78,65,0.95) 0%, rgba(52,78,65,0.6) 45%, rgba(52,78,65,0.2) 100%);
}

.product-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 36px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 13px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
}

.product-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumb a:hover {
    color: var(--white);
}

.product-breadcrumb i.fa-chevron-right {
    font-size: 10px;
    opacity: 0.7;
}

.product-breadcrumb span {
    color: var(--white);
    font-weight: 600;
}

.product-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.product-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.product-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
}

.product-badge-buy { background: rgba(255,255,255,0.25); }
.product-badge-sell { background: rgba(13,110,253,0.9); }
.product-badge-rent { background: var(--accent-color); }

.product-type {
    padding-left: 12px;
    border-left: 2px solid rgba(255,255,255,0.5);
}

.product-location i {
    margin-right: 6px;
    opacity: 0.9;
}

/* Detail section */
.product-detail {
    padding: 48px 0 80px;
    background: var(--bg-light);
}

.product-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.product-gallery-col {
    position: sticky;
    top: 120px;
}

.product-gallery-main {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
    margin-bottom: 16px;
}

.product-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 340px;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.25s ease;
}

.product-gallery-placeholder {
    width: 100%;
    min-height: 360px;
    background: linear-gradient(145deg, var(--color-1), #e8e6df);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-4);
    font-size: 56px;
    gap: 8px;
}

.product-gallery-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-thumb:hover {
    border-color: var(--color-2);
    box-shadow: 0 4px 12px rgba(58,90,64,0.12);
}

.product-thumb.active {
    border-color: var(--color-4);
    box-shadow: 0 0 0 2px rgba(88,129,87,0.3);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sidebar card */
.product-sidebar {
    position: sticky;
    top: 120px;
}

.product-sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.product-price-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.product-price-old {
    display: block;
    text-decoration: line-through;
    color: var(--light-text);
    font-size: 16px;
    margin-bottom: 4px;
}

.product-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-4);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.product-price-unit {
    font-size: 14px;
    color: var(--light-text);
    font-weight: 500;
    margin-left: 4px;
}

.product-specs-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.product-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
}

.product-spec-label {
    color: var(--light-text);
    font-weight: 600;
}

.product-spec-value {
    color: var(--text-color);
    font-weight: 500;
}

.product-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: 2px solid transparent;
}

.product-btn-primary {
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(58,90,64,0.35);
}

.product-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58,90,64,0.4);
    color: var(--white);
}

.product-btn-call {
    background: var(--white);
    color: var(--color-4);
    border-color: var(--color-3);
}

.product-btn-call:hover {
    background: rgba(88,129,87,0.08);
    border-color: var(--color-4);
    color: var(--color-5);
}

.product-btn-back {
    background: transparent;
    color: var(--light-text);
    border-color: var(--border-color);
}

.product-btn-back:hover {
    background: var(--bg-light);
    color: var(--text-color);
    border-color: var(--color-2);
}

/* Content blocks below */
.product-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    margin-top: 56px;
}

.product-block {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.product-block-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-5);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.product-block-title i {
    color: var(--color-3);
    font-size: 16px;
}

.product-description-text {
    color: var(--text-color);
    line-height: 1.75;
    font-size: 15px;
}

/* Full Specifications – proper table layout */
.product-specs-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.product-specs-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.product-specs-table tbody tr:last-child {
    border-bottom: none;
}

.product-specs-table tbody tr:hover {
    background: rgba(88, 129, 87, 0.04);
}

.product-spec-label-cell {
    padding: 14px 20px;
    color: var(--light-text);
    font-weight: 600;
    width: 42%;
    min-width: 160px;
    vertical-align: middle;
}

.product-spec-label-cell i {
    color: var(--color-3);
    margin-right: 10px;
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.product-spec-value-cell {
    padding: 14px 20px;
    color: var(--text-color);
    font-weight: 500;
    vertical-align: middle;
}

.product-specs-empty {
    color: var(--light-text);
    font-size: 15px;
    margin: 0;
    padding: 20px 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .product-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .product-gallery-col,
    .product-sidebar {
        position: static;
    }
    .product-hero-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        min-height: 300px;
    }
    .product-hero-content {
        padding: 36px 20px 28px;
    }
    .product-hero-title {
        font-size: 26px;
    }
    .product-hero-meta {
        font-size: 13px;
        gap: 10px 14px;
    }
    .product-detail {
        padding: 32px 0 56px;
    }
    .product-wrap {
        padding: 0 20px;
    }
    .product-sidebar-card {
        padding: 24px 20px;
    }
    .product-price {
        font-size: 28px;
    }
    .product-cta .product-btn {
        width: 100%;
    }
    .product-content-wrap {
        padding: 0 20px;
        margin-top: 40px;
    }
    .product-block {
        padding: 24px 20px;
    }
    .product-spec-label-cell,
    .product-spec-value-cell {
        padding: 12px 16px;
        font-size: 14px;
    }
    .product-spec-label-cell {
        width: 38%;
        min-width: 130px;
    }
}

/* Containers listing (Buy / Sell / Rent pages - admin-added listings) */
.containers-listing-section {
    padding: 60px 0 80px;
    background: #dad7cd;
}

.containers-listing-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
}

.containers-listing-desc {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.containers-listing-empty {
    text-align: center;
    color: var(--text-color);
    margin-top: 16px;
    margin-bottom: 24px;
}

.container-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.container-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color, #e8eaed);
    transition: box-shadow 0.3s, transform 0.3s;
}

.container-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.container-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: 180px;
    background: var(--color-2);
    overflow: hidden;
}

.container-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.container-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 48px;
}

.container-card-type {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.container-card-type-buy { background: #28a745; color: #fff; }
.container-card-type-sell { background: #007bff; color: #fff; }
.container-card-type-rent { background: #fd7e14; color: #fff; }

.container-card-body {
    padding: 20px;
}

.container-card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--primary-color);
}

.container-card-body p {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.container-card-location {
    font-size: 13px;
    color: var(--light-text);
}

.container-card-price {
    font-weight: 700;
    color: var(--primary-color);
}

.container-card-price-label {
    font-weight: 400;
    font-size: 13px;
    color: var(--light-text);
}

.container-card-body .btn {
    margin-top: 8px;
}

/* Container Types Section - uses color-1 bg, color-3/4 for cards */
.container-types-section {
    padding: 80px 0;
    background-color: var(--color-1);
}

/* 1 row × 3 columns on desktop; 2 cols tablet, 1 col mobile */
.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
}

.type-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--color-2);
    transition: all 0.3s;
}

.type-card:hover {
    background: var(--color-4);
    color: var(--white);
    border-color: var(--color-4);
    transform: translateY(-5px);
}

.type-card i {
    font-size: 40px;
    color: var(--color-4);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.type-card:hover i {
    color: var(--white);
}

.type-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.type-card p {
    font-size: 14px;
    color: var(--light-text);
}

.type-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* CTA Section - uses color-4 & color-5 */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Page Header - uses color-4 & color-5, matches main header gradient */
.page-header {
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
    color: var(--white);
    padding: 70px 0 36px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(52, 62, 65, 0.2);
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.page-header-subtitle {
    font-size: 20px;
    max-width: 720px;
    margin: 0 auto 12px;
    opacity: 0.95;
    line-height: 1.5;
}

.page-header-desc {
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.page-header-hero .breadcrumb {
    margin-top: 24px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    background: rgba(58, 90, 64, 0.4);
    padding: 6px 18px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(52, 62, 65, 0.25);
    border: 1px solid var(--color-2);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 400;
}

.breadcrumb a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-1px);
}

.breadcrumb a i {
    font-size: 11px;
    opacity: 0.8;
}

.breadcrumb a:hover i {
    opacity: 1;
}

.breadcrumb > span:not(.separator) {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2px;
    font-size: 10px;
    display: flex;
    align-items: center;
}

/* About Section - matches features-section background and typography */
.about-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--color-1) 30%, var(--color-1) 70%, var(--bg-light) 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    color: var(--color-5);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-3);
    display: inline-block;
}

.about-text h3 {
    color: var(--color-4);
    font-size: 22px;
    font-weight: 600;
    margin: 28px 0 12px;
    letter-spacing: -0.01em;
}

.about-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 15px;
}

.about-list {
    list-style: none;
    margin-top: 16px;
    padding: 0;
}

.about-list li {
    padding: 10px 0;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-list i {
    color: var(--color-3);
    margin-right: 0;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-2);
    transition: all 0.35s ease;
}

.about-image:hover {
    box-shadow: 0 14px 40px rgba(58, 90, 64, 0.18);
    border-color: var(--color-3);
    transform: translateY(-4px);
}

/* Footer - unique design with accent strip, branded logo, styled sections */
.main-footer {
    position: relative;
    background: linear-gradient(180deg, var(--color-4), var(--color-5));
    color: var(--white);
    padding: 0 0 8px;
    overflow: hidden;
}

/* Wave above footer – black to match footer background */
.footer-wave {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}
.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}
.footer-wave-fill {
    fill: var(--color-1);
}

/* Accent strip at top */
.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--color-3));
    margin-bottom: 20px;
}

/* Make footer content container full browser width */
.main-footer > .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-top { padding: 0 0 16px; }

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 320px;
    gap: 24px;
    align-items: start;
    color: rgba(255,255,255,0.92);
}

/* Footer logo - same style as header (cube + initial) */
.footer-logo-link { text-decoration: none; color: inherit; display: inline-block; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    height: 48px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 12px;
}
.footer-logo .logo-cube { color: var(--accent-color); font-size: 1.2rem; }
.footer-logo .logo-initial { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.footer-logo .logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }

.footer-brand h3 { margin-top: 0; margin-bottom: 4px; font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.footer-tagline { color: var(--color-2); font-size: 12px; font-weight: 600; margin-bottom: 4px; letter-spacing: 0.05em; }
.footer-brand .muted { color: rgba(255,255,255,0.75); margin-bottom: 12px; font-size: 12px; }

/* Social icons - rounded boxes with hover, no underline below */
.main-footer .footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: none;
}
.main-footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.main-footer .footer-social a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Section headings with left accent bar */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-left: 12px;
    border-left: 3px solid var(--color-3);
}

.footer-links ul,
.footer-services ul { list-style: none; padding: 0; margin: 0; }

.footer-links li,
.footer-services li { margin-bottom: 8px; color: rgba(255,255,255,0.88); font-size: 13px; }

.footer-links a { color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--accent-color); padding-left: 4px; }

.footer-contact .address { white-space: normal; margin-bottom: 8px; color: rgba(255,255,255,0.9); font-size: 13px; line-height: 1.4; }
.footer-contact p { margin-bottom: 6px; font-size: 13px; }
.footer-contact p a { color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.2s; }
.footer-contact p a:hover { color: var(--accent-color); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 14px;
    margin-top: 8px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-copyright { margin: 0; color: rgba(255,255,255,0.75); font-size: 12px; }
.footer-motto {
    margin: 0;
    color: var(--color-2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.footer-crafted {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}
.footer-crafted a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-crafted a:hover {
    color: var(--color-2);
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    margin-left: 16px;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 12px; }
    .footer-brand { order: 0; }
    .footer-links, .footer-services, .footer-contact { order: 1; }
    .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Certifications Section - matches features section style (color-1 bg, section-header) */
.certifications-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--color-1) 0%, var(--bg-light) 50%, var(--color-1) 100%);
    text-align: center;
    position: relative;
}

.certifications-section h2 {
    color: var(--color-5);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.certifications-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-3), var(--color-4));
    border-radius: 2px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.certifications-section .cert-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

.certifications-section .cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 40px rgba(58, 90, 64, 0.15);
    border-color: var(--color-3);
}

.certifications-section .cert-badge.large {
    font-size: 16px;
    font-weight: 700;
    padding: 12px 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
    color: var(--white);
    border-radius: 8px;
    display: inline-block;
}

.certifications-section .cert-badge.large.circular {
    width: 90px;
    height: 90px;
    font-size: 12px;
    line-height: 1.3;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certifications-section .cert-card h3 {
    color: var(--color-4);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.certifications-section .cert-card p {
    color: var(--light-text);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.certifications-section .cert-card small {
    color: var(--secondary-color);
    font-size: 12px;
}

/* Sale Section */
.sale-section {
    padding: 60px 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

.section-intro p {
    color: var(--light-text);
    font-size: 18px;
}

.container-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.category-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.category-card ul li {
    padding: 8px 0;
    color: var(--light-text);
    padding-left: 25px;
    position: relative;
}

.category-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.price-range {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 20px;
}

.features-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.features-box h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 24px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-box .btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Office Section */
.office-section {
    padding: 60px 0;
}

.office-feature-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.office-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.office-feature:nth-child(even) {
    direction: rtl;
}

.office-feature:nth-child(even) > * {
    direction: ltr;
}

.feature-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-content h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-content ul {
    list-style: none;
}

.feature-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--light-text);
}

.feature-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.office-types {
    margin-bottom: 50px;
}

.office-types h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.rental-options {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.rental-options h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.option-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.option-card h4 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.option-card p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.option-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.option-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.option-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Other Container Section */
.other-container-section {
    padding: 60px 0;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    color: var(--light-text);
    font-size: 14px;
}

.cta-section-inline {
    text-align: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.cta-section-inline h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section-inline p {
    color: var(--light-text);
    font-size: 18px;
    margin-bottom: 25px;
}

/* Contact Section – apda colors */
.contact-section {
    padding: 60px 0 80px;
    background: var(--color-1);
}

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

.contact-form-wrapper h2 {
    color: var(--color-4);
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--light-text);
    margin-bottom: 30px;
}

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

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

.form-group label {
    color: var(--color-5);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid var(--color-2);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-3);
    box-shadow: 0 0 0 3px rgba(88,129,87,0.15);
}

.contact-info-wrapper h2 {
    color: var(--color-4);
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid var(--color-2);
    box-shadow: var(--shadow-soft);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-4);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--color-4);
    margin-bottom: 5px;
    font-size: 18px;
}

.info-content p {
    color: var(--light-text);
    line-height: 1.6;
}

.info-content p a {
    color: var(--color-4);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.info-content p a:hover {
    color: var(--color-3);
    text-decoration: underline;
}

.map-placeholder {
    background: var(--white);
    border: 2px dashed var(--color-2);
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    color: var(--light-text);
}

.map-placeholder i {
    font-size: 48px;
    color: var(--color-3);
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-5);
}

.map-placeholder small {
    font-size: 14px;
}

/* Iron Ore Section */
.iron-ore-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.content-text h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.content-text h4 {
    color: var(--primary-color);
    font-size: 22px;
    margin: 25px 0 15px;
}

.content-text p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--light-text);
}

.feature-list i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.content-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.applications {
    margin: 50px 0;
}

.applications h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.application-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.application-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.application-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.application-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.application-card p {
    color: var(--light-text);
    font-size: 14px;
}

/* Gallery Section – apda colors (color-1 to color-5, accent) */
.gallery-section {
    padding: 60px 0 80px;
    background: var(--color-1);
}

.gallery-section .section-intro {
    text-align: center;
    margin-bottom: 36px;
}

.gallery-section .section-intro h2 {
    color: var(--color-4);
    font-size: 28px;
    margin-bottom: 8px;
}

.gallery-section .section-intro p {
    color: var(--light-text);
    max-width: 560px;
    margin: 0 auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--color-2);
    border-radius: 6px;
    color: var(--color-4);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: var(--color-3);
    color: var(--white);
    border-color: var(--color-3);
}

.filter-btn.active {
    background: var(--color-4);
    color: var(--white);
    border-color: var(--color-4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-3);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--color-2);
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(52,78,65,0.92), rgba(58,90,64,0.6), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.95;
}

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

.gallery-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--color-3);
    box-shadow: var(--shadow-soft);
}

.gallery-note p {
    color: var(--light-text);
    margin: 0;
}

.gallery-note i {
    color: var(--color-3);
    margin-right: 10px;
}

.gallery-note code {
    background: var(--color-1);
    color: var(--color-5);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    border: 1px solid var(--color-2);
}

/* Footer (alternate layout - footer-content/section used on some pages) */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.contact-list i {
    margin-top: 5px;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
}

.footer-certifications {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-certifications span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* Alert Messages – apda colors */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(163,177,138,0.25);
    color: var(--color-5);
    border: 1px solid var(--color-3);
}

.alert-success i {
    color: var(--color-3);
}

.alert-error {
    background: rgba(248,113,22,0.12);
    color: #b45309;
    border: 1px solid var(--accent-color);
}

.alert-error i {
    color: var(--accent-color);
}

.alert i {
    font-size: 20px;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .top-header {
        display: none;
    }

    body {
        padding-top: 60px; /* only main header when top-header hidden */
    }
    .main-header {
        top: 0;
        padding: 10px 0;
    }

    .main-header > .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-bar {
        gap: 12px;
        padding: 8px 0;
        flex-wrap: nowrap;
    }

    .logo-section {
        flex: 1;
        min-width: 0;
        gap: 8px;
    }

    .logo {
        width: 42px;
        height: 38px;
        min-width: 42px;
        padding: 0 6px;
        gap: 3px;
        flex-shrink: 0;
    }

    .logo-cube { font-size: 1rem; }
    .logo-initial { font-size: 1.35rem; }

    .header-center-nav {
        flex: 0 0 auto;
    }

    .header-actions {
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .breadcrumb {
        font-size: 11px;
        padding: 5px 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .breadcrumb a,
    .breadcrumb > span:not(.separator) {
        padding: 3px 8px;
        font-size: 11px;
    }

    .breadcrumb .separator {
        font-size: 9px;
    }

    .main-nav {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        flex: 0 0 auto;
    }

    .nav-menu {
        flex-direction: column;
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-5);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        border-radius: 0 0 8px 8px;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        max-height: calc(100vh - 56px);
        padding: 8px 0;
        overflow-y: auto;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        width: 100%;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.95);
    }

    .nav-item:last-child a {
        border-bottom: none;
    }

    .nav-item a:hover,
    .nav-item.active a {
        background-color: var(--color-4);
        color: var(--white);
        border-bottom-color: var(--color-4);
    }

    .main-nav .mobile-menu-toggle {
        display: none !important;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 0;
        display: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: rgba(255,255,255,0.08);
    }

    .nav-item .dropdown-menu.active {
        display: block;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px;
    }

    .dropdown-column {
        margin-bottom: 15px;
    }

    .dropdown-column:last-child {
        margin-bottom: 0;
    }

    .dropdown-column h4 {
        color: var(--white);
    }

    .dropdown-column ul li a {
        color: rgba(255,255,255,0.9);
    }

    .nav-item .has-dropdown i.fa-chevron-down {
        transition: transform 0.3s;
    }

    .nav-item.active .has-dropdown i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-content,
    .contact-wrapper,
    .office-feature {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-content {
        gap: 32px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .certifications-section {
        padding: 50px 0;
    }

    .certifications-section h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header {
        padding: 50px 0 24px;
    }

    .office-feature:nth-child(even) {
        direction: ltr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Extra small - header padding */
@media (max-width: 480px) {
    .main-header > .container,
    .top-header > .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .logo { width: 38px; height: 34px; min-width: 38px; padding: 0 5px; }
    .logo-cube { font-size: 0.9rem; }
    .logo-initial { font-size: 1.2rem; }
}

