@charset "utf-8";
/**
 * 자연으로 HANHO 스타일 테마
 * HANHO Growers 참조 디자인
 */

/* ==========================================
   CSS 변수 정의
   ========================================== */
:root {
    --primary: #1565C0;
    --primary-dark: #0d47a1;
    --primary-light: #42a5f5;
    --gold: #c9a227;
    --gold-light: #d4b84a;
    --cream: #f8f5e6;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #6b6b6b;
    --gray-light: #999999;
    --light-gray: #e8e8e8;
    --bg-light: #f9f9f9;
    
    --font-primary: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   리셋 및 기본 스타일
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary) !important;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white) !important;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ==========================================
   기존 테마 요소 숨김
   ------------------------------------------
   주의: 이 블록이 #container, header/footer 등을
   전역에서 숨기면 게시판(bbs/board.php)까지
   빈 화면이 되는 문제가 있어 주석 처리함.
   (개별 페이지에서 필요한 경우, 그 페이지의
   전용 CSS 또는 인라인 스타일에서만 숨기도록 처리)
   ========================================== */
/*
#header-wrap,
#header,
section#header-wrap,
#m-lnb-wrapper,
#btn-menu-m,
#sitemap,
#hd_sch_wrapper,
#hd_login_msg,
.main_visual,
#main_section,
.contents01,
.contents02,
.contents03,
.contents04,
.contents05,
.right_quick-area,
.bottom_quick_wrap,
.m_quick_wrap,
.popup_bg,
footer#footer,
#wrap > header,
#wrap > footer,
.main-page > header,
.main-page > footer,
.sub_top_area,
.content_wrap,
#container,
#hd_h1,
.lnb-line,
.logo,
#lnb,
#login-box,
#open-button,
.mall,
.sub_menu_area,
.sub_visual,
.sub_page_title,
#footer,
.footer_wrap {
    display: none !important;
}
*/

/* ==========================================
   게시판 페이지(HANHO 레이아웃용)
   - body.gc-board 에서만 기존 헤더/풋터 숨김
   - 게시판 컨텐츠(#container)는 그대로 사용
   ========================================== */
body.gc-board #header-wrap,
body.gc-board #header,
body.gc-board section#header-wrap,
body.gc-board #m-lnb-wrapper,
body.gc-board #btn-menu-m,
body.gc-board #sitemap,
body.gc-board #hd_sch_wrapper,
body.gc-board #hd_login_msg,
body.gc-board .lnb-line,
body.gc-board .logo,
body.gc-board #lnb,
body.gc-board #login-box,
body.gc-board #open-button,
body.gc-board .mall,
body.gc-board .sub_top_area,
body.gc-board .sub_menu_area,
body.gc-board .sub_visual,
body.gc-board .sub_page_title,
body.gc-board #footer,
body.gc-board .footer_wrap,
body.gc-board footer#footer {
    display: none !important;
}

/* ==========================================
   컨테이너
   ========================================== */
.gc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .gc-container {
        padding: 0 20px;
    }
}

/* ==========================================
   헤더
   ========================================== */
.gc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    transition: var(--transition);
}

.gc-header.scrolled {
    background: rgba(13, 71, 161, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* 서브페이지 헤더 - 항상 배경색 적용 */
.gc-header-sub {
    background: rgba(13, 71, 161, 0.98);
    backdrop-filter: blur(10px);
}

.gc-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.gc-logo img {
    display: block;
    height: auto;
    max-height: 48px;
    width: auto;
    background: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    transition: var(--transition);
}

.gc-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.gc-nav > ul {
    display: flex;
    gap: 5px;
}

.gc-nav > ul > li {
    position: relative;
}

.gc-nav > ul > li > a {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 6px;
    display: block;
    letter-spacing: 0.5px;
}

.gc-nav > ul > li > a:hover,
.gc-nav > ul > li:hover > a {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

/* 서브메뉴 */
.gc-sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.gc-nav > ul > li:hover .gc-sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gc-sub-nav li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 400;
}

.gc-sub-nav li a:hover {
    background: var(--cream);
    color: var(--primary);
}

.gc-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 모바일 토글 버튼 */
.gc-mobile-toggle {
    display: none;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10001;
}

.gc-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: var(--transition);
}

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

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

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

/* 모바일 메뉴 */
.gc-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 10000;
    padding: 80px 30px 30px;
    transition: var(--transition);
    overflow-y: auto;
}

.gc-mobile-menu.active {
    right: 0;
}

.gc-mobile-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gc-mobile-nav > ul > li > a {
    display: block;
    padding: 15px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.gc-mobile-sub {
    display: none;
    padding-left: 20px;
    padding-bottom: 10px;
}

.gc-mobile-nav > ul > li.active .gc-mobile-sub {
    display: block;
}

.gc-mobile-sub li a {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.gc-mobile-sub li a:hover {
    color: var(--gold);
}

@media (max-width: 1200px) {
    .gc-nav {
        display: none;
    }
    
    .gc-mobile-toggle {
        display: block;
    }
    
    .gc-header-inner {
        padding: 15px 20px;
    }
}

/* ==========================================
   히어로 섹션
   ========================================== */
.gc-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.gc-hero-bg img.is-active {
    opacity: 1;
}

.gc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(21, 101, 192, 0.8) 50%, rgba(66, 165, 245, 0.05) 100%);
    z-index: 2;
}

.gc-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 40px;
    z-index: 3;
}

.gc-hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.gc-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.gc-hero-desc {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.gc-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.gc-hero-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gc-hero-btn svg {
    width: 20px;
    height: 20px;
}

/* 스크롤 인디케이터 */
.gc-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    z-index: 3;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1s;
}

.gc-scroll-indicator span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gc-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff, transparent);
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ==========================================
   섹션 공통
   ========================================== */
.gc-section {
    padding: 120px 0;
}

.gc-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.gc-section-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.gc-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.gc-section-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

/* ==========================================
   버튼
   ========================================== */
.gc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.gc-btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

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

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

.gc-btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.gc-btn-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

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

.gc-btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.gc-btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* ==========================================
   소개 섹션
   ========================================== */
.gc-about {
    background: var(--bg-light);
}

.gc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* 80 */
    align-items: center;
}

.gc-about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gc-about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gc-about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--gold);
    border-radius: 16px;
    z-index: -1;
}

.gc-about-content .gc-section-subtitle {
    text-align: left;
}

.gc-about-content .gc-section-title {
    text-align: left;
}

.gc-about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .gc-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gc-about-image::after {
        display: none;
    }
    
    .gc-about-image img {
        height: 400px;
    }
}

/* ==========================================
   통계 섹션
   ========================================== */
.gc-stats {
    display: none;
    background: var(--primary);
    padding: 80px 0;
}

.gc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.gc-stat-item {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.gc-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.gc-stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.gc-stat-number span {
    font-size: 32px;
}

.gc-stat-label {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.5;
}

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

@media (max-width: 576px) {
    .gc-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gc-stat-number {
        font-size: 42px;
    }
}

/* ==========================================
   서비스 섹션
   ========================================== */
.gc-services {
    /* background: var(--white); */
    background:#e3f2fd
}

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

.gc-service-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

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

.gc-service-card-wide {
    grid-column: span 2;
}

.gc-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--primary);
    font-size: 28px;
    transition: var(--transition);
}

/* 행잉화분 전용 코스모스 심볼 */
.gc-service-icon .cosmos-topview {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
}

.gc-service-icon .cosmos-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #ffd86b;
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.15);
}

.gc-service-icon .petal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 20px;
    background-color: #ffb6c1;
    border-radius: 5px 5px 2px 2px;
    transform-origin: bottom center;
}

.gc-service-icon .petal-1 { transform: translate(-50%, -100%) rotate(0deg); }
.gc-service-icon .petal-2 { transform: translate(-50%, -100%) rotate(45deg); }
.gc-service-icon .petal-3 { transform: translate(-50%, -100%) rotate(90deg); }
.gc-service-icon .petal-4 { transform: translate(-50%, -100%) rotate(135deg); }
.gc-service-icon .petal-5 { transform: translate(-50%, -100%) rotate(180deg); }
.gc-service-icon .petal-6 { transform: translate(-50%, -100%) rotate(225deg); }
.gc-service-icon .petal-7 { transform: translate(-50%, -100%) rotate(270deg); }
.gc-service-icon .petal-8 { transform: translate(-50%, -100%) rotate(315deg); }

/* 축제 가랜드 심볼 */
.gc-service-icon .symbol-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gc-service-icon .festival-garland {
    position: relative;
    width: 50px;
    height: 40px;
}
.gc-service-icon .garland-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
}
.gc-service-icon .garland-line.line-1 { top: 10px; transform: rotate(1deg); }
.gc-service-icon .garland-line.line-2 { top: 25px; transform: rotate(-2deg); }
.gc-service-icon .festival-garland .flag {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
.gc-service-icon .festival-garland .flag.f1 { border-top: 10px solid #ffcc00; left: 5px; top: -1px; }
.gc-service-icon .festival-garland .flag.f2 { border-top: 10px solid #b81820; left: 20px; top: 0; }
.gc-service-icon .festival-garland .flag.f3 { border-top: 10px solid #ff4444; left: 35px; top: -1px; }
.gc-service-icon .festival-garland .flag.f4 { border-top: 10px solid #ffcc00; left: 10px; top: -1px; }
.gc-service-icon .festival-garland .flag.f5 { border-top: 10px solid #ff4444; left: 25px; top: 0; }

.gc-service-card:hover .gc-service-icon {
    background: var(--primary);
    color: #fff;
}

.gc-service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.gc-service-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.gc-service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.gc-service-link:hover {
    color: var(--gold);
}

@media (max-width: 1200px) {
    .gc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gc-service-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .gc-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   신제품 & 주요 제품 섹션
   ========================================== */
.gc-portfolio-section {
    background: #fff;
}

.gc-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gc-product-card {
    background: #fff;
    border: 1px solid #e3eaf3;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(21, 101, 192, 0.06);
}

.gc-product-card:hover {
    transform: translateY(-8px);
    border-color: #bbdefb;
    box-shadow: 0 16px 40px rgba(21, 101, 192, 0.14);
}

.gc-product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.gc-product-card-thumb {
    position: relative;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%);
    padding: 28px 24px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eef2f7;
}

.gc-product-card-thumb img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.gc-product-card:hover .gc-product-card-thumb img {
    transform: scale(1.05);
}

.gc-product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: 6px;
    line-height: 1;
}

.gc-product-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.gc-product-card-cate {
    display: inline-block;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: #e3f2fd;
    padding: 4px 12px;
    border-radius: 999px;
    line-height: 1.4;
}

.gc-product-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    color: var(--dark);
    margin: 0;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.1em;
}

.gc-product-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.25s ease;
}

.gc-product-card-more i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.gc-product-card:hover .gc-product-card-more {
    color: var(--primary-dark);
}

.gc-product-card:hover .gc-product-card-more i {
    transform: translateX(4px);
}

.gc-portfolio-more {
    text-align: center;
    margin-top: 48px;
}

/* 레거시 포트폴리오 (다른 페이지 호환) */
.gc-portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.gc-filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--light-gray);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.gc-filter-btn:hover,
.gc-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

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

.gc-portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gc-portfolio-img {
    width: 100%;
    height: 100%;
}

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

.gc-portfolio-item:hover .gc-portfolio-img img {
    transform: scale(1.1);
}

.gc-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gc-portfolio-item:hover .gc-portfolio-overlay {
    opacity: 1;
}

.gc-portfolio-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.gc-portfolio-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.gc-portfolio-more {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .gc-featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

@media (max-width: 576px) {
    .gc-featured-grid {
        grid-template-columns: 1fr;
    }

    .gc-product-card-thumb {
        min-height: 200px;
        padding: 24px 20px;
    }

    .gc-product-card-body {
        padding: 18px 20px 22px;
    }

    .gc-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CTA 섹션
   ========================================== */
.gc-cta {
    position: relative;
    padding: 150px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.gc-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gc-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gc-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95) 0%, rgba(21, 101, 192, 0.9) 100%);
    z-index: 2;
}

.gc-cta .gc-container {
    position: relative;
    z-index: 3;
}

.gc-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.gc-cta-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.gc-cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.gc-cta-desc {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.gc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================
   푸터
   ========================================== */
.gc-footer {
    background: var(--dark);
    color: #fff;
}

.gc-footer-top {
    padding: 80px 0 60px;
}

.gc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.gc-footer-logo {
    margin-bottom: 20px;
}

.gc-footer-logo img {
    display: block;
    height: auto;
    max-height: 48px;
    width: auto;
    background: #fff;
    padding: 8px 16px;
    border-radius: 6px;
}

.gc-footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.gc-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.gc-footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

.gc-footer-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.gc-footer-links li {
    margin-bottom: 12px;
}

.gc-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.gc-footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.gc-footer-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.gc-footer-info i {
    color: var(--gold);
    margin-top: 3px;
}

.gc-footer-info a {
    color: rgba(255, 255, 255, 0.7);
}

.gc-footer-info a:hover {
    color: #fff;
}

.gc-footer-info strong {
    color: #fff;
    font-weight: 500;
}

.gc-footer-info-addr {
    min-width: 300px;
}
.gc-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

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

.gc-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.gc-copyright strong {
    color: rgba(255, 255, 255, 0.8);
}

.gc-footer-policy {
    display: flex;
    gap: 20px;
}

.gc-footer-policy a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.gc-footer-policy a:hover {
    color: #fff;
}

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

@media (max-width: 576px) {
    .gc-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gc-footer-bottom .gc-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   상단으로 버튼
   ========================================== */
.gc-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: var(--shadow);
}

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

.gc-top-btn:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

/* ==========================================
   서브페이지 공통
   ========================================== */
.gc-page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    overflow: hidden;
}

.gc-page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gc-page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.gc-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(21, 101, 192, 0.8) 100%);
    z-index: 2;
}

.gc-page-header-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 3;
}

.gc-page-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.gc-page-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
}

.gc-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.gc-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.gc-breadcrumb a:hover {
    color: #fff;
}

.gc-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.gc-page-content {
    padding: 100px 0;
}

.gc-content-box {
    max-width: 900px;
    margin: 0 auto;
}

.gc-content-box h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.gc-content-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin: 40px 0 15px;
}

.gc-content-box p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.gc-content-box img {
    border-radius: 12px;
    margin: 30px 0;
}

/* ==========================================
   반응형
   ========================================== */
@media (max-width: 768px) {
    .gc-section {
        padding: 80px 0;
    }
    
    .gc-hero {
        min-height: 600px;
    }
    
    .gc-hero-title {
        font-size: 32px;
    }
    
    .gc-hero-desc {
        font-size: 15px;
    }
    
    .gc-cta {
        padding: 100px 0;
    }
    
    .gc-page-header {
        height: 300px;
    }
}

/* 한호 로고 — gc-logo img / gc-footer-logo img 에서 통합 스타일 적용 */
.gc-sitemap-link {
    color: #fff;
    font-size: 18px;
    margin-right: 16px;
    opacity: 0.9;
}
.gc-sitemap-link:hover { opacity: 1; color: #fff; }
.gc-header.scrolled .gc-sitemap-link { color: #fff; }
