/* ============================================
   JANJAD TRADING PLC — Main Landing Page Styles
   Color Scheme: Forest Green (#0d3a2b) + Champagne Gold (#c5a059)
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --green-dark: #0d3a2b;
    --green-mid: #164f3c;
    --green-light: #1a5e47;
    --gold: #c5a059;
    --gold-light: #d8b774;
    --gold-pale: rgba(197, 160, 89, 0.15);
    --bg-cream: #faf8f4;
    --bg-warm: #f4f1ea;
    --bg-tint: #eef2ef;
    --text-dark: #0d3a2b;
    --text-muted: rgba(13, 58, 43, 0.7);
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-sm: 0 4px 12px rgba(13, 58, 43, 0.04);
    --shadow-md: 0 16px 40px rgba(13, 58, 43, 0.06);
    --shadow-lg: 0 24px 60px rgba(13, 58, 43, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --max-width: 1240px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ---- Scroll Reveal Animation Classes ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION BAR
   Dark forest green, fixed, with glassmorphism
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--green-dark);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo & Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
}

.brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.08em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu (mobile) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   Full-width with animated background (Ken Burns effect)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--green-dark);
}

/* Background Image with Ken Burns animation */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-1%, -1%);
    }
    100% {
        transform: scale(1.04) translate(1%, 0.5%);
    }
}

/* Dark overlay gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 58, 43, 0.88) 0%,
        rgba(13, 58, 43, 0.7) 40%,
        rgba(13, 58, 43, 0.4) 70%,
        rgba(13, 58, 43, 0.2) 100%
    );
    z-index: 2;
}

/* Floating Particles Animation */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; top: 20%; left: 10%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; top: 50%; left: 25%; animation-duration: 20s; animation-delay: 3s; }
.particle:nth-child(3) { width: 3px; height: 3px; top: 70%; left: 60%; animation-duration: 18s; animation-delay: 5s; }
.particle:nth-child(4) { width: 5px; height: 5px; top: 30%; left: 80%; animation-duration: 22s; animation-delay: 2s; }
.particle:nth-child(5) { width: 4px; height: 4px; top: 80%; left: 40%; animation-duration: 16s; animation-delay: 7s; }
.particle:nth-child(6) { width: 3px; height: 3px; top: 15%; left: 55%; animation-duration: 19s; animation-delay: 4s; }

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(100px, -150px) scale(1.5);
        opacity: 0.5;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-50px, -300px) scale(0.8);
        opacity: 0;
    }
}

/* Hero Container (Content + Badges) */
.hero-container {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Hero Text Content */
.hero-content {
    max-width: 650px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.75rem;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

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

.btn-primary {
    background-color: var(--white);
    color: var(--green-dark);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--green-dark);
    border: 1.5px solid var(--green-dark);
}

.btn-outline-dark:hover {
    background-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Floating Division Badges */
.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-smooth);
    min-width: 220px;
}

.hero-badge:hover {
    background-color: rgba(197, 160, 89, 0.2);
    border-color: var(--gold);
    transform: translateX(-8px) scale(1.02);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.badge-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    line-height: 1.4;
}

/* ============================================
   SECTION HEADERS (Reusable)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    position: relative;
}

.section-header .section-tag::before,
.section-header .section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--gold);
    vertical-align: middle;
    margin: 0 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--green-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   DIVISIONS SECTION
   Two large clickable image cards
   ============================================ */
.divisions {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.division-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 58, 43, 0.05);
    transition: all 0.5s var(--ease-smooth);
    cursor: pointer;
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-pale);
}

.division-img-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.division-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

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

.division-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem 0.75rem;
}

.division-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.division-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--green-dark);
}

.division-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--green-dark);
    letter-spacing: 0.03em;
}

.division-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 0.04em;
    border-top: none;
    transition: color 0.3s ease;
}

.division-card:hover .division-cta {
    color: var(--gold);
}

.cta-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.division-card:hover .cta-arrow {
    transform: translateX(6px);
}

/* ============================================
   VALUE PROPOSITIONS SECTION
   Horizontal strip with 4 items
   ============================================ */
.values {
    padding: 4rem 0;
    background-color: var(--bg-warm);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--green-dark);
    transition: stroke 0.3s ease;
}

.value-item:hover .value-icon svg {
    stroke: var(--gold);
}

.value-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-tag {
    display: block;
    margin-bottom: 0.75rem;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(13, 58, 43, 0.08);
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* About Visual (Image Card) */
.about-visual {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 58, 43, 0.05);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.about-image-card:hover .about-img {
    transform: scale(1.03);
}

.about-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(transparent, rgba(13, 58, 43, 0.85));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ============================================
   APPLICATIONS SECTION
   Five category cards with images
   ============================================ */
.applications {
    padding: 6rem 0;
    background-color: var(--bg-warm);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.app-card {
    text-align: center;
    transition: transform 0.4s var(--ease-smooth);
    cursor: default;
}

.app-card:hover {
    transform: translateY(-6px);
}

.app-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.app-card:hover .app-img-wrap {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.app-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--green-dark);
    line-height: 1.4;
    text-transform: uppercase;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-cream);
}

.contact-grid {
    max-width: 700px;
}

.contact-content .section-tag {
    display: block;
    margin-bottom: 0.75rem;
}

.contact-content .section-title {
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--bg-tint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--green-dark);
}

.contact-item h5 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-item a {
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-cta-group {
    display: flex;
    gap: 1rem;
}

/* ============================================
   FOOTER
   Dark green 4-column layout
   ============================================ */
.footer {
    background-color: var(--green-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 60px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--gold);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets and below */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .hero-badges {
        display: none;
    }

    .divisions-grid {
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Mobile Nav */
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--green-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Mobile */
    .hero-container {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Sections */
    .divisions-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .contact-cta-group {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-header .section-tag::before,
    .section-header .section-tag::after {
        width: 15px;
    }

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

    .applications-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .divisions-grid {
        gap: 1.5rem;
    }

    .division-img-wrap {
        height: 200px;
    }
}
