/* HTTPS Security Enhanced CSS - 최종 완성 버전 */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 스크롤바 제거 */
html {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* CSS Variables */
:root {
    --green-primary: #22c55e;
    --green-secondary: #16a34a;
    --green-light: #f0fdf4;
    --green-dark: #15803d;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 100px;
    --mobile-padding: 1rem;
    --desktop-padding: 2rem;
}

@media (min-width: 640px) {
    :root {
        --header-height: 110px;
    }
}

@media (min-width: 1024px) {
    :root {
        --header-height: 120px;
    }
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--desktop-padding);
    }
}

@media (min-width: 1536px) {
    .work-environments .container {
        max-width: 1400px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.375rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Utility classes */
.highlight {
    color: var(--green-primary);
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
    outline: 2px solid transparent;
}

@media (min-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
    color: var(--white);
    font-weight: 700;
    padding: 1.125rem 2.5rem;
    border-radius: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    box-shadow: 0 8px 15px rgba(34, 197, 94, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    touch-action: manipulation;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-secondary) 0%, var(--green-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 15px rgba(34, 197, 94, 0.2);
}

.btn-full {
    width: 100%;
}

/* Header - 넓은 영역, 흰색 배경 */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    isolation: isolate;
    height: var(--header-height);
    border-bottom: 2px solid var(--green-primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    min-height: var(--header-height);
    position: relative;
}

/* 로고 영역 */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
    padding-top: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--green-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    padding: 0.25rem;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    color: var(--white);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .logo-icon {
        width: 3rem;
        height: 3rem;
        padding: 0.375rem;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.125rem;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gray-900) !important;
    letter-spacing: -0.025em;
    line-height: 1;
}

@media (min-width: 640px) {
    .logo-name {
        font-size: 1.5rem;
    }
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600) !important;
    letter-spacing: 0.025em;
    line-height: 1;
}

@media (min-width: 640px) {
    .logo-tagline {
        font-size: 0.875rem;
    }
}

/* 전화 버튼 - 상단 우측 */
.phone-button {
    background-color: var(--green-primary);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
    position: absolute;
    right: 0;
    top: 1rem;
}

.phone-button::before {
    content: '📞';
    font-size: 1.125rem;
}

.phone-button:hover {
    background-color: var(--green-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}

.phone-button:focus-visible {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
    outline: none;
}

/* 모바일 반응형 */
@media (max-width: 767px) {
    .phone-button {
        position: static;
        margin: 0.75rem auto 0;
        width: max-content;
    }
    
    .header-content {
        flex-direction: column;
        align-items: center;
        padding: 0.75rem 0;
    }
    
    .logo {
        padding-top: 0.5rem;
    }
}

@media (min-width: 640px) {
    .header-content {
        padding: 1.25rem 0;
    }
    
    .phone-button {
        font-size: 1.375rem;
        padding: 1rem 2.5rem;
        top: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .phone-button {
        font-size: 1.5rem;
        padding: 1.125rem 3rem;
        top: 1.5rem;
    }
}

/* 모바일 메뉴 버튼 - 숨김 */
.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Hero Section - 짙은 배경, 큰 이미지 */
.hero {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 3rem 0;
    margin-top: var(--header-height);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

@media (min-width: 640px) {
    .hero {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }
}

.hero-content {
    display: grid;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }
}

.hero-text {
    text-align: center;
    order: 2;
}

.hero-text-top {
    order: 1;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
        order: 2;
    }
    
    .hero-text-top {
        order: 1;
    }
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Hero 이미지 - 크게 */
.hero-image {
    position: relative;
    order: 1;
    width: 100%;
    max-width: 100%;
}

.hero-image-bottom {
    order: 2;
}

@media (min-width: 1024px) {
    .hero-image {
        order: 1;
    }
    
    .hero-image-bottom {
        order: 2;
    }
}

.hero-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

@media (min-width: 640px) {
    .hero-image img {
        height: 28rem;
    }
}

@media (min-width: 1024px) {
    .hero-image img {
        height: 36rem;
    }
}

@media (min-width: 1280px) {
    .hero-image img {
        height: 40rem;
    }
}

.hero-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

@media (min-width: 640px) {
    .hero-badge {
        bottom: 2rem;
        right: 2rem;
        padding: 1rem 1.5rem;
    }
}

.badge-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--green-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge span {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .hero-badge span {
        font-size: 1rem;
    }
}

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

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-600);
    padding: 0 1rem;
    line-height: 1.6;
    max-width: 40rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-header p {
        font-size: 1.125rem;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .section-header p {
        font-size: 1.25rem;
    }
}

/* Services Section */
.services {
    padding: 2rem 0;
    background-color: var(--white);
}

@media (min-width: 640px) {
    .services {
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .services {
        padding: 4rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
    overflow: hidden;
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
    }
}

@media (min-width: 640px) {
    .services-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--green-light);
    border: 1px solid var(--green-light);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

@media (min-width: 640px) {
    .service-card {
        padding: 1.5rem;
    }
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.service-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

@media (min-width: 640px) {
    .service-card img {
        height: 16rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .service-card img {
        height: 20rem;
    }
}

@media (min-width: 1280px) {
    .service-card img {
        height: 24rem;
    }
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .service-card h3 {
        font-size: 1.125rem;
    }
}

.service-card p {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .service-card p {
        font-size: 0.875rem;
    }
}

/* Work Environments Section - 이미지 더 크게 */
.work-environments {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

@media (min-width: 640px) {
    .work-environments {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .work-environments {
        padding: 5rem 0;
    }
}

.environments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 0.5rem;
    overflow: hidden;
}

@media (min-width: 480px) {
    .environments-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 3rem;
    }
}

@media (min-width: 768px) {
    .environments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .environments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 1280px) {
    .environments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 1536px) {
    .environments-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.environment-item {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

@media (min-width: 640px) {
    .environment-item {
        padding: 2.5rem;
    }
}

.environment-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.environment-icon {
    width: 14rem;
    height: 14rem;
    background-color: var(--green-light);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--green-primary);
    font-size: 4rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .environment-icon {
        width: 16rem;
        height: 16rem;
        margin-bottom: 2rem;
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .environment-icon {
        width: 18rem;
        height: 18rem;
        font-size: 6rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1280px) {
    .environment-icon {
        width: 20rem;
        height: 20rem;
    }
}

.environment-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
    transition: transform 0.4s ease;
}

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

.environment-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin-top: 0.75rem;
}

@media (min-width: 640px) {
    .environment-item h3 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .environment-item h3 {
        font-size: 1.375rem;
    }
}

/* About Section */
.about {
    padding: 2rem 0;
    background-color: var(--white);
}

@media (min-width: 640px) {
    .about {
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .about {
        padding: 4rem 0;
    }
}

.about-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

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

@media (min-width: 1024px) {
    .about-text {
        text-align: left;
    }
}

.about-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .about-text h2 {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .about-text h2 {
        font-size: 2.25rem;
    }
}

.about-description {
    margin-bottom: 1.5rem;
}

.about-description p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .about-description p {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
}

.about-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

@media (min-width: 640px) {
    .about-image img {
        height: 20rem;
    }
}

/* Consultation Section */
.consultation {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .consultation-form {
        padding: 3rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.consultation-form .btn-primary {
    margin-top: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.review-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    font-size: 0.875rem;
    color: var(--gray-900);
}

.review-author span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background-color: var(--green-primary);
    color: var(--white);
}

.footer-logo .logo-name {
    color: var(--white) !important;
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.service-list li {
    margin-bottom: 0.5rem;
}

.service-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.service-list a:hover {
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--green-primary);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Accessibility */
:focus {
    outline: 2px solid var(--green-primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
Server busy, please try again later.
New chat
