/* Fun Font Faces for Norm Animation */
@font-face {
    font-family: 'BagelFat';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_JAMO@1.0/BagelFatOne-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SchoolSafetyAquariumDecor';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2508-2@1.0/HakgyoansimEohangkkumigiB.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GoryeongStrawberry';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-01@1.0/GoryeongStrawberry.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PartialSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-1@1.1/PartialSansKR-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

/* You can add more fonts here - just follow the same pattern:
@font-face {
    font-family: 'YourFontName';
    src: url('https://your-font-url.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.navbar.white-theme {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.white-theme .nav-link {
    color: rgba(0, 0, 0, 0.6);
}

.navbar.white-theme .nav-link.active,
.navbar.white-theme .nav-link:hover {
    color: rgba(0, 0, 0, 1);
}

.navbar.white-theme .nav-link::after {
    background: #000;
}

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

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 80px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

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

/* Comet System */
.comet-container {
    position: fixed;
    z-index: 100;
    pointer-events: none;
}

.comet-container.hidden {
    display: none;
}

.comet-head {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 16px rgba(255, 255, 255, 0.6),
        0 0 24px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

.comet-trail-main {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 15%,
        rgba(255, 255, 255, 0.5) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.15) 70%,
        rgba(255, 255, 255, 0.05) 85%,
        transparent 100%);
    transform: translateY(-50%);
    border-radius: 50px 0 0 50px;
    filter: blur(0.5px);
}

.comet-trail-layer1 {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.25) 40%,
        rgba(255, 255, 255, 0.1) 65%,
        rgba(255, 255, 255, 0.03) 85%,
        transparent 100%);
    transform: translateY(-50%);
    border-radius: 30px 0 0 30px;
    filter: blur(1px);
}

.comet-trail-layer2 {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 80px;
    height: 8px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.04) 75%,
        transparent 100%);
    transform: translateY(-50%);
    border-radius: 20px 0 0 20px;
    filter: blur(2px);
}

/* Space Section - Outer space with comets */
.space-section {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000 70%);
    z-index: 1;
    transition: opacity 1s ease;
}

.space-section.fade-out {
    opacity: 0;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 200;
    position: relative;
    margin-bottom: 120px;
    transition: opacity 0.8s ease;
}

.hero-content.fade-out {
    opacity: 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 2s ease-out 0.5s forwards;
}

/* Cycling animation for entire title - starts after 5 seconds */
.cycling-title {
    animation: fadeUp 2s ease-out 0.5s forwards, fontCycleWithPop 4s ease-in-out 5s infinite;
}

@keyframes fontCycleWithPop {
    /* Inter - stable */
    0%, 10% {
        font-family: 'Inter', sans-serif;
        transform: scale(1);
    }
    /* Pop transition to BagelFat */
    12% {
        font-family: 'Inter', sans-serif;
        transform: scale(1.15);
    }
    14% {
        font-family: 'BagelFat', cursive;
        transform: scale(1.15);
    }
    16%, 24% {
        font-family: 'BagelFat', cursive;
        transform: scale(1);
    }
    /* Pop transition to SchoolSafety */
    26% {
        font-family: 'BagelFat', cursive;
        transform: scale(1.15);
    }
    28% {
        font-family: 'SchoolSafetyAquariumDecor', serif;
        transform: scale(1.15);
    }
    30%, 38% {
        font-family: 'SchoolSafetyAquariumDecor', serif;
        transform: scale(1);
    }
    /* Pop transition to Goryeong */
    40% {
        font-family: 'SchoolSafetyAquariumDecor', serif;
        transform: scale(1.15);
    }
    42% {
        font-family: 'GoryeongStrawberry', sans-serif;
        transform: scale(1.15);
    }
    44%, 52% {
        font-family: 'GoryeongStrawberry', sans-serif;
        transform: scale(1);
    }
    /* Pop transition to Partial */
    54% {
        font-family: 'GoryeongStrawberry', sans-serif;
        transform: scale(1.15);
    }
    56% {
        font-family: 'PartialSans', sans-serif;
        transform: scale(1.15);
    }
    58%, 66% {
        font-family: 'PartialSans', sans-serif;
        transform: scale(1);
    }
    /* Pop transition to NewFont1 */
    68% {
        font-family: 'PartialSans', sans-serif;
        transform: scale(1.15);
    }
    70% {
        font-family: 'YourNewFont1', sans-serif;
        transform: scale(1.15);
    }
    72%, 80% {
        font-family: 'YourNewFont1', sans-serif;
        transform: scale(1);
    }
    /* Pop transition to NewFont2 */
    82% {
        font-family: 'YourNewFont1', sans-serif;
        transform: scale(1.15);
    }
    84% {
        font-family: 'YourNewFont2', cursive;
        transform: scale(1.15);
    }
    86%, 94% {
        font-family: 'YourNewFont2', cursive;
        transform: scale(1);
    }
    /* Pop transition back to Inter */
    96% {
        font-family: 'YourNewFont2', cursive;
        transform: scale(1.15);
    }
    98% {
        font-family: 'Inter', sans-serif;
        transform: scale(1.15);
    }
    100% {
        font-family: 'Inter', sans-serif;
        transform: scale(1);
    }
}

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

/* Planet Container - animated to center and zoom */
.planet-container {
    position: fixed;
    bottom: -200px;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.planet-container.center-stage {
    bottom: 50%;
    transform: translateX(-50%) translateY(50%);
}

.planet-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.planet-surface {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transform: scale(0.5);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.3);
}

.planet-surface.zoom-in {
    transform: scale(20); /* Much larger zoom to fill screen */
}

.planet-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: scale(0.5);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

.planet-glow.zoom-in {
    transform: scale(20);
    opacity: 0;
}

/* Planet Interior Content */
.planet-interior {
    background: #fff;
    color: #000;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    opacity: 0;
    transition: opacity 1s ease;
    overflow-y: auto;
    padding: 100px 0;
}

.planet-interior.fade-in {
    opacity: 1;
}

.interior-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.company-showcase {
    padding: 80px 0;
}

.showcase-grid {
    display: grid;
    gap: 120px;
    margin-bottom: 120px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-text h3 {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #000;
}

.showcase-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-weight: 300;
}

/* Abstract Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-text {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 1px;
}

.mask-abstract-1,
.mask-abstract-2,
.mask-abstract-3,
.mask-abstract-4 {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* Simple Navigation Section */
.simple-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 0;
    text-align: center;
}

.nav-header {
    margin-bottom: 80px;
}

.nav-header h1 {
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 20px;
}

.nav-header p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 1px;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    width: 100%;
}

.nav-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border: 2px solid #000;
    border-radius: 16px;
    padding: 50px 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.nav-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: #000;
    color: #fff;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.card-content h2 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-card:hover .card-content h2 {
    color: #fff;
}

.card-arrow {
    font-size: 1.8rem;
    color: #000;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.nav-card:hover .card-arrow {
    color: #fff;
    transform: translateX(8px) scale(1.1);
}

/* Company Metrics Grid */
.company-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.metric-card {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.metric-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 100;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.metric-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Page Titles for other pages */
.page-title {
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.3s forwards;
}

/* Services Page Styles */
.services-container {
    min-height: 100vh;
    padding: 120px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 80px;
    margin-bottom: 120px;
}

.service-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.5s; }
.service-card:nth-child(2) { animation-delay: 0.7s; }

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-number {
    font-size: 1rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.service-name {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 40px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.feature {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.feature:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.service-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.service-link:hover {
    border-bottom-color: #fff;
}

.services-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.9s forwards;
}

.metric {
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.metric-value {
    font-size: 2rem;
    font-weight: 100;
    color: #fff;
    margin-bottom: 15px;
}

.metric-label {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Page Styles */
.about-container {
    min-height: 100vh;
    padding: 120px 40px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.company-intro {
    margin-bottom: 100px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.5s forwards;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    text-align: center;
}

/* Timeline */
.timeline-section {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.7s forwards;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding: 30px 0 30px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 35px;
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 50%;
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Hardware Section */
.hardware-section {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.9s forwards;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.hardware-item {
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: all 0.3s ease;
}

.hardware-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.hardware-spec {
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hardware-detail {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Company Metrics */
.company-metrics {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 1.1s forwards;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.metric-large {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 40px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    .planet-container {
        width: 300px;
        height: 300px;
    }
    
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .showcase-item.reverse {
        direction: ltr;
    }
    
    .company-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .services-metrics {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hardware-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item::before {
        left: 11px;
    }
    
    /* Simple navigation responsive */
    .nav-header h1 {
        font-size: 2.2rem;
        letter-spacing: 0px;
    }
    
    .nav-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .nav-card {
        padding: 40px 30px;
        min-height: 120px;
    }
    
    .card-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 20px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .services-container,
    .about-container {
        padding: 100px 20px 60px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature {
        text-align: center;
    }
    
    .company-metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .interior-content {
        padding: 0 20px;
    }
}