﻿
/* ================================
   Global Styles & Variables
   ================================ */

:root {
    /* Orange Signature Colors */
    --primary-color: #FF8C00;
    --primary-dark: #E67E00;
    --primary-light: #FFA500;
    --primary-gradient: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    
    /* Neutral Colors */
    --dark-color: #1a1a1a;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #999999;
    --gray-lighter: #E5E5E5;
    --white: #FFFFFF;
    --background: #F8F9FA;
    
    /* Accent Colors */
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    
    /* Typography */
    --font-primary: 'Noto Sans KR', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 4px 20px rgba(255, 140, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    /* ?띿뒪??以꾨컮轅?理쒖쟻??*/
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* 而ㅼ꽌 源쒕묀??諛⑹? */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

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

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

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

ul {
    list-style: none;
}

/* ================================
   ?띿뒪??以꾨컮轅?理쒖쟻??(?꾩껜 ?섏씠吏)
   ================================ */

h1, h2, h3, h4, h5, h6, p, span, div, li, a, button, label {
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 湲??⑥뼱??URL???덉쓣 寃쎌슦 */
.case-description, .about-text p, .feature-item p, .expertise-item p {
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

/* ================================
   Navigation Bar
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-small);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    mix-blend-mode: multiply;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-dark);
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ================================
   Hero Section
   ================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(51, 51, 51, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-description {
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description br {
    display: none;
}

@media (min-width: 769px) {
    .hero-description br {
        display: block;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    min-width: 150px;
}

.stat-number {
    font-size: clamp(48px, 10vw, 72px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--white);
    margin-top: 10px;
    white-space: nowrap;
}

.stat-sublabel {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    white-space: nowrap;
}

.stat-divider {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

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

.hero-achievement {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 20px;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 500;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.achievement-badge i {
    font-size: 20px;
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ================================
   Buttons
   ================================ */

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

.btn-outline-small {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    transition: var(--transition-normal);
}

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

/* ================================
   Section Common Styles
   ================================ */

section {
    padding: 100px 0;
}

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

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header.light .section-title,
.section-header.light .section-description {
    color: var(--white);
}

/* ================================
   About Section
   ================================ */

.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-orange);
}

.badge-year {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.badge-number {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-secondary);
}

.about-text h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: clamp(15px, 2vw, 16px);
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro {
    font-size: clamp(16px, 2.2vw, 17px);
    line-height: 1.9;
    margin-bottom: 35px;
}

.about-intro strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-description {
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.8;
    margin-top: 30px;
    padding: 20px;
    background: var(--background);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--gray-medium);
    margin: 0;
}

/* ================================
   Services Section
   ================================ */

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-orange);
}

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

.service-card h3 {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card > p {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-list li {
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--gray-medium);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--gray-lighter);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 12px;
}

/* ================================
   Achievements Section
   ================================ */

.achievement-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.highlight-card:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-orange);
}

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

.highlight-number {
    font-size: clamp(42px, 8vw, 56px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.highlight-label {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: clamp(13px, 2vw, 14px);
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   Team Section
   ================================ */

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.team-description h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.team-description p {
    font-size: clamp(15px, 2vw, 16px);
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.team-expertise {
    margin-top: 40px;
}

.expertise-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.expertise-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.expertise-item h4 {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.expertise-item p {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--gray-medium);
    margin: 0;
}

.team-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 3px 10px rgba(255,140,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 5px 15px rgba(255,140,0,0.12);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--background);
    padding: 40px 25px;
    border-radius: 20px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.value-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.value-card h4 {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: clamp(13px, 2vw, 14px);
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ================================
   Case Studies Section
   ================================ */

.case-studies {
    background: var(--background);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.case-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.case-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-color);
}

.case-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-orange);
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: clamp(18px, 2.8vw, 20px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.case-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(12px, 1.8vw, 13px);
    color: var(--gray-medium);
}

.case-meta i {
    color: var(--primary-color);
    font-size: 14px;
}

.case-description {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--background);
    border-radius: 12px;
}

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

.result-number {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.result-label {
    font-size: clamp(11px, 1.6vw, 12px);
    color: var(--gray-medium);
    font-weight: 600;
}

.case-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.case-tags::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: clamp(10px, 1.4vw, 11px);
    font-weight: 600;
    border: 1px solid rgba(255, 140, 0, 0.2);
    white-space: nowrap;
}

.case-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-dark) 100%);
    border-radius: 20px;
    color: var(--white);
}

.case-cta h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 15px;
}

.case-cta p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* ================================
   Social Media Section
   ================================ */

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.social-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    background: var(--white);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.social-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.social-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.social-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.social-card:hover .social-image-wrapper img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(255, 140, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    padding: 40px;
    text-align: center;
}

.social-card:hover .social-overlay {
    opacity: 1;
}

.social-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-name {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.social-description {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.social-cta i {
    transition: var(--transition-normal);
}

.social-card:hover .social-cta i {
    transform: translateX(5px);
}

.social-info {
    padding: 25px 30px;
}

.social-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(18px, 2.8vw, 20px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.social-title i {
    color: var(--primary-color);
    font-size: 22px;
}

.social-info p {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--gray-medium);
    margin-bottom: 12px;
}

.social-url {
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-secondary);
}

.social-subscribe {
    background: var(--background);
    border-radius: 20px;
    padding: 50px;
}

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

.subscribe-text h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.subscribe-text p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--gray-medium);
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.subscribe-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--gray-lighter);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--gray-dark);
    transition: var(--transition-normal);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.subscribe-form button {
    white-space: nowrap;
}

/* ================================
   Contact Section
   ================================ */

.contact {
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-small);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.info-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

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

.info-text h4 {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-text p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--gray-medium);
    margin-bottom: 5px;
}

.info-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

.info-text small {
    font-size: clamp(12px, 1.8vw, 13px);
    color: var(--gray-light);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: clamp(13px, 1.8vw, 14px);
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-lighter);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--gray-dark);
    transition: var(--transition-normal);
}

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

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    margin-bottom: 25px;
}

.form-privacy label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--gray-medium);
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-form .btn-primary {
    width: 100%;
}

/* Map Section */
.map-section {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.map-section h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-small);
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.map-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.map-info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.map-info-item strong {
    display: block;
    font-size: clamp(15px, 2vw, 16px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.map-info-item p {
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--gray-medium);
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-description {
    font-size: clamp(13px, 1.8vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4,
.footer-group h4 {
    font-size: clamp(15px, 2vw, 16px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: clamp(13px, 1.8vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

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

.footer-contact ul li {
    display: flex;
    gap: 12px;
    font-size: clamp(13px, 1.8vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-group p {
    font-size: clamp(13px, 1.8vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.footer-bottom p {
    font-size: clamp(12px, 1.6vw, 13px);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

/* ================================
   Scroll to Top Button
   ================================ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-orange);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

.scroll-top i {
    font-size: 20px;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1024px) {
    .about-content,
    .team-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: var(--shadow-medium);
        gap: 0;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-lighter);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid,
    .achievement-highlights,
    .values-grid,
    .case-studies-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-content,
    .team-content {
        gap: 32px;
    }

    .about-image img {
        max-height: 340px;
        object-fit: cover;
    }

    .about-badge {
        right: 14px;
        bottom: 14px;
        padding: 12px 16px;
        border-radius: 12px;
    }

    .badge-year {
        font-size: 12px;
    }

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

    .team-values {
        margin-top: 72px !important;
    }

    .team-content {
        margin-top: 36px !important;
        margin-bottom: 52px;
    }

    .team-description p {
        margin-bottom: 22px;
    }

    .team-expertise {
        margin-top: 26px;
    }

    .expertise-item {
        gap: 14px;
        margin-bottom: 20px;
    }

    .values-grid {
        gap: 16px;
    }

    .value-card {
        padding: 28px 18px;
    }
    
    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }
    
    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }
    
    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }
    
    .team-image {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .team-image img {
        height: 180px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .about-image img {
        max-height: 280px;
    }

    .team-image img {
        height: 160px;
    }
}

/* ================================
   Animations
   ================================ */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}
    
