/* ============================================
   그린푸드 - 위탁급식 전문업체 스타일시트
   컬러 테마: 녹색 계열
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --green-900: #1a3c1a;
    --green-800: #1e5631;
    --green-700: #2d7a3a;
    --green-600: #38a349;
    --green-500: #43b556;
    --green-400: #6ec96e;
    --green-300: #a8dda8;
    --green-200: #c8eac8;
    --green-100: #e8f5e9;
    --green-50: #f1f9f1;

    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #4a4a4a;
    --gray-600: #666666;
    --gray-500: #888888;
    --gray-400: #aaaaaa;
    --gray-300: #cccccc;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;

    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-gray {
    background: var(--gray-100);
}

.text-center {
    text-align: center;
}

.text-green {
    color: var(--green-600);
}

.mt-40 {
    margin-top: 40px;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--green-600);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-top: 10px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

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

.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-700);
}

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

.btn-white {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
}

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

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

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

.btn-link {
    color: var(--green-700);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-link:hover {
    color: var(--green-800);
    gap: 8px;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--green-900);
    color: var(--green-200);
    font-size: 0.82rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.top-bar i {
    margin-right: 5px;
    color: var(--green-400);
}

.top-bar-admin {
    color: var(--green-300);
    font-size: 0.82rem;
    padding: 3px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.top-bar-admin:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.top-bar-admin i {
    margin-right: 4px;
    font-size: 0.75rem;
}

/* ---------- Header & Navigation ---------- */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

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

.logo-text strong {
    font-size: 1.4rem;
    color: var(--green-800);
    font-weight: 900;
}

.logo-text small {
    font-size: 0.7rem;
    color: var(--green-600);
    letter-spacing: 2px;
    font-weight: 500;
}

/* Nav */
.nav-list {
    display: flex;
    gap: 0;
}

.nav-item>a {
    display: block;
    padding: 28px 22px;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--gray-800);
    position: relative;
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--green-600);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item>a:hover {
    color: var(--green-700);
}

.nav-item>a:hover::after {
    transform: scaleX(1);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    border-top: 3px solid var(--green-600);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.92rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.dropdown li a:hover {
    background: var(--green-50);
    color: var(--green-700);
    padding-left: 24px;
}

.dropdown li:last-child a {
    border-bottom: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ---------- Hero Slider ---------- */
.hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 60, 26, 0.75) 0%, rgba(45, 122, 58, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 32px;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Hero animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.3s;
}

.delay-2 {
    transition-delay: 0.6s;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--green-600);
    border-color: var(--green-600);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ---------- Strengths ---------- */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.strength-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.strength-card:hover {
    border-color: var(--green-300);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.strength-icon {
    width: 70px;
    height: 70px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--green-700);
    transition: var(--transition);
}

.strength-card:hover .strength-icon {
    background: var(--green-600);
    color: var(--white);
    transform: scale(1.1);
}

.strength-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.strength-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---------- Business Preview ---------- */
.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.business-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.business-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
}

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

.business-info {
    padding: 28px;
}

.business-tag {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.business-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.business-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

/* ---------- Counter Section ---------- */
.counter-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.counter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 60, 26, 0.88) 0%, rgba(30, 86, 49, 0.85) 100%);
}

.counter-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.counter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.counter-item {
    padding: 20px;
}

.counter-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--green-300);
    display: inline;
}

.counter-unit {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--green-300);
}

.counter-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

/* ---------- Gallery Preview ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
    color: var(--white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-details li {
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--gray-500);
}

.footer-details strong {
    color: var(--gray-400);
    display: inline-block;
    min-width: 100px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--green-400);
    padding-left: 4px;
}

.footer-phone {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-400);
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* ---------- Scroll Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-600);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--green-800);
    transform: translateY(-3px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-inner {
        height: 65px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav.open {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-item>a {
        padding: 14px 24px;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-item>a::after {
        display: none;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: var(--gray-50);
        display: none;
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown li a {
        padding-left: 40px;
    }

    .hero {
        height: 55vh;
        min-height: 380px;
    }

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

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

    .section {
        padding: 50px 0;
    }

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

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

    .counter-number {
        font-size: 2.4rem;
    }
}

/* ---------- Sub Page Styles (공통) ---------- */
.page-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 60, 26, 0.8), rgba(45, 122, 58, 0.6));
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-banner-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-banner-content .breadcrumb {
    font-size: 0.9rem;
    opacity: 0.85;
}

.page-banner-content .breadcrumb a:hover {
    color: var(--green-300);
}

.page-section {
    padding: 70px 0;
}

.page-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--green-600);
    display: inline-block;
}

.ceo-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.ceo-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ceo-message p {
    font-size: 1.02rem;
    line-height: 2;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.ceo-sign {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

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

.philosophy-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--green-200);
}

.philosophy-card .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--green-600);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.philosophy-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 10px;
}

.philosophy-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* History / Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green-300);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green-600);
    border: 3px solid var(--green-200);
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-700);
    margin-bottom: 6px;
}

.timeline-content {
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group label .required {
    color: #e53e3e;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(67, 181, 86, 0.15);
}

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Performance Table */
.perf-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.perf-table thead {
    background: var(--green-700);
    color: var(--white);
}

.perf-table th,
.perf-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.95rem;
}

.perf-table th {
    font-weight: 600;
}

.perf-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
}

.perf-table tbody tr:nth-child(even) {
    background: var(--gray-100);
}

.perf-table tbody tr:hover {
    background: var(--green-50);
}

/* map placeholder */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-top: 20px;
}

/* ---------- Contact Page ---------- */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card-item {
    text-align: center;
    padding: 30px;
    background: var(--green-50);
    border-radius: 12px;
}

.contact-card-item i {
    font-size: 2rem;
    color: var(--green-600);
    margin-bottom: 12px;
}

.contact-card-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.contact-card-item p {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.contact-card-value {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: var(--green-700) !important;
}

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

/* ---------- Table Responsive ---------- */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ---------- Location Grid ---------- */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 768px) {
    .ceo-section {
        grid-template-columns: 1fr;
    }

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

    .page-banner {
        height: 220px;
    }

    .page-banner-content h1 {
        font-size: 1.6rem;
    }

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

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

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

    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}