/* ========================================
   (주)제주종합관리 - Main Stylesheet
   ======================================== */

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

:root {
    --primary: #046bd2;
    --primary-dark: #045cb4;
    --primary-light: #e8f4fd;
    --dark: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --gray-100: #f9fafb;
    --gray-200: #f1f5f9;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e1;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--primary-dark);
}

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

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

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
}

.top-info i {
    color: var(--primary);
    font-size: 12px;
}

/* ========================================
   Main Header
   ======================================== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 28px 22px;
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
    color: var(--primary);
}

.btn-contact {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 6px;
    padding: 10px 24px !important;
    margin-left: 10px;
}

.btn-contact:hover {
    background: var(--primary-dark) !important;
}

/* Dropdown */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.submenu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 24px;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.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);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-300);
    box-shadow: var(--shadow-lg);
}

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

.mobile-nav {
    list-style: none;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-link i {
    font-size: 12px;
    transition: var(--transition);
}

.mobile-nav-link.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    list-style: none;
    background: var(--gray-100);
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 36px;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-submenu li a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
    max-width: 700px;
}

.slide-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    padding: 14px 36px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

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

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

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

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

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

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

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

.service-icon i {
    font-size: 28px;
    color: var(--primary);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

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

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

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

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

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

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, #0288d1 100%);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.about-image-placeholder span {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* ========================================
   Business Areas Section
   ======================================== */
.business-section {
    padding: 80px 0;
    background: var(--white);
}

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

.business-item {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.business-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.business-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 14px;
}

.business-item:hover .business-icon {
    color: var(--white);
}

.business-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.business-item:hover h4 {
    color: var(--white);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0288d1 100%);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.cta-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.cta-phone i {
    font-size: 22px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ========================================
   Contact Info Section
   ======================================== */
.contact-info-section {
    padding: 60px 0;
    background: var(--gray-100);
}

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

.contact-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.contact-box h3 i {
    margin-right: 8px;
}

.contact-box p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ========================================
   Page Banner
   ======================================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0288d1 50%, #1e3a5f 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.85;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 6px;
}

/* ========================================
   Page Content
   ======================================== */
.page-content {
    padding: 60px 0 80px;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 16px;
}

.content-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

/* ========================================
   Company Page
   ======================================== */
.philosophy-section {
    margin-bottom: 50px;
}

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

.philosophy-card {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.phil-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 14px;
}

.philosophy-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

/* Info Table */
.info-table-wrap {
    margin-bottom: 50px;
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-300);
    font-size: 15px;
}

.info-table th {
    width: 160px;
    background: var(--gray-100);
    color: var(--dark);
    font-weight: 600;
}

.info-table td {
    color: var(--text);
}

/* Business Areas */
.business-areas {
    margin-bottom: 50px;
}

.business-areas h3,
.licenses-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.area-item i {
    color: var(--primary);
    font-size: 16px;
}

.area-item span {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

/* Licenses */
.license-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.license-item {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--gray-300);
}

.license-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.license-value {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   Greeting Page
   ======================================== */
.greeting-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.greeting-highlight {
    font-size: 22px !important;
    font-weight: 600;
    color: var(--primary) !important;
    text-align: center;
    padding: 30px;
    background: var(--primary-light);
    border-radius: var(--radius);
    margin-bottom: 30px !important;
    border-left: 4px solid var(--primary);
}

.greeting-sign {
    text-align: right;
    margin-top: 40px !important;
    padding-top: 20px;
    border-top: 1px solid var(--gray-300);
}

/* ========================================
   Organization Chart
   ======================================== */
.org-chart {
    text-align: center;
    padding: 40px 20px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.org-box {
    background: var(--primary);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius);
    min-width: 140px;
    box-shadow: var(--shadow-md);
}

.org-box.ceo {
    background: var(--dark);
    padding: 20px 40px;
}

.org-box.sub {
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--primary);
}

.org-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.org-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}

.org-connector {
    width: 2px;
    height: 30px;
    background: var(--primary);
    margin: 0 auto;
}

/* ========================================
   Directions
   ======================================== */
.map-container {
    margin-bottom: 40px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
}

.map-placeholder i {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 16px;
    color: var(--text);
}

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

.direction-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.direction-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.direction-table {
    width: 100%;
    border-collapse: collapse;
}

.direction-table th,
.direction-table td {
    padding: 10px 0;
    font-size: 14px;
    text-align: left;
    vertical-align: top;
}

.direction-table th {
    width: 70px;
    color: var(--dark);
    font-weight: 600;
}

/* ========================================
   Business Detail Page
   ======================================== */
.business-detail {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-light);
}

.detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 24px;
    color: var(--white);
}

.detail-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.detail-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

.detail-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: 6px;
}

.detail-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   Projects Page
   ======================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.project-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image i {
    font-size: 50px;
    color: var(--primary);
    opacity: 0.5;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.project-info p {
    font-size: 13px;
    color: var(--text-light);
}

.project-info p i {
    color: var(--primary);
    margin-right: 4px;
}

/* ========================================
   Process Page
   ======================================== */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon i {
    font-size: 28px;
    color: var(--primary);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: var(--primary);
    font-size: 24px;
    margin-top: 60px;
}

.process-cta {
    text-align: center;
    padding: 40px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.process-cta p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 20px;
}

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

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(4, 107, 210, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

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

.btn-submit {
    display: inline-block;
    padding: 14px 60px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

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

.alert-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: var(--radius);
    margin-bottom: 30px;
    color: #166534;
    font-size: 15px;
    font-weight: 500;
}

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

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 50px 0 30px;
}

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

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-info {
    list-style: none;
}

.footer-info li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-info li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 12px;
}

.footer-links {
    list-style: none;
}

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

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

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

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

.footer-bottom-inner {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    color: var(--text);
    font-size: 11px;
}

.mobile-bar-item i {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--primary);
}

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

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .detail-list {
        grid-template-columns: 1fr;
    }
}

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

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-inner {
        height: 64px;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        padding: 10px 0;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    .site-footer {
        padding-bottom: 60px;
    }
}

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

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

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

    .area-list {
        grid-template-columns: 1fr;
    }

    .license-list {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 24px;
    }

    .business-detail {
        padding: 24px;
    }

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

    .section-header h2,
    .content-header h2 {
        font-size: 24px;
    }

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

    .about-content h2 {
        font-size: 22px;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 544px) {
    .hero-slider {
        height: 350px;
    }

    .slide-content h1 {
        font-size: 24px;
    }

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

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

    .cta-phone {
        font-size: 22px;
    }
}
