/* ===== styles.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #f15a24;
    --orange-dark: #d44d1c;
    --orange-light: #ff8a5c;
    --black: #000000;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: #f8f9fa;
    --gray-dark: #333333;
    --gray-light: #e9ecef;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(241, 90, 36, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: var(--black);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 3px solid var(--orange);
    transition: all 0.3s;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: white;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.logo-sub {
    color: var(--orange);
    font-size: 11px;
    font-weight: 500;
}

.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.navbar a:hover,
.navbar a.active {
    color: var(--orange);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SECTION - MAXIMUM CONTRAST ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: #ff4d00d3;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

/* Pattern lebih subtle */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Gradient overlay gelap untuk kontras */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Grid Layout */
.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

/* ===== LEFT CONTENT - DENGAN BACKGROUND GELAP ===== */
.hero-content-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.hero-company {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FFD700; /* Kuning emas */
    text-transform: uppercase;
    position: relative;
    padding-left: 25px;
}

.hero-company::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 2px;
    background: #FFD700;
    transform: translateY(-50%);
}

.hero-year {
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 0.9;
}

/* Main Title */
.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.title-line:nth-child(1) {
    font-size: 32px;
    font-weight: 500;
    color: #FFD700; /* Kuning emas */
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line.highlight {
    color: #FFFFFF;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Description */
.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0.95;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #FFD700; /* Kuning emas */
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.9;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #FFD700; /* Kuning emas */
    color: #000000;
    font-weight: 700;
}

.btn-primary:hover {
    background: #FFC800;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}

/* ===== RIGHT SHOWCASE ===== */
.hero-showcase {
    position: relative;
    height: 600px;
}

.showcase-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.6);
}

/* Terminal Card */
.card-main {
    top: 30px;
    right: 0;
    width: 380px;
    padding: 25px;
    z-index: 10;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.card-dots {
    display: flex;
    gap: 8px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.card-dots span:nth-child(1) { background: #ff5f56; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #27c93f; }

.card-title {
    color: #FFD700;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
}

.code-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 6px;
}

.code-prompt {
    color: #FFD700;
    font-size: 14px;
    width: 20px;
    font-weight: 600;
}

.code-command {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
}

.code-line.success {
    background: rgba(39, 201, 63, 0.2);
}

.code-line.success .code-command {
    color: #4caf50;
    font-weight: 500;
}

.code-progress {
    margin-top: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, #FFD700, #ffaa00);
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 30%; }
    50% { width: 80%; }
    100% { width: 30%; }
}

/* Tech Stack Card */
.card-secondary {
    top: 200px;
    left: -40px;
    width: 240px;
    padding: 20px;
    z-index: 9;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-stack span {
    padding: 6px 12px;
    background: #FFD700;
    border-radius: 20px;
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.tech-stack span:hover {
    background: #FFC800;
    transform: scale(1.05);
}

/* Metrics Card */
.card-tertiary {
    bottom: 40px;
    right: 40px;
    width: 200px;
    padding: 20px;
    z-index: 9;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.metric-label {
    color: #FFFFFF;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
}

.metric-value {
    color: #FFD700;
    font-weight: 700;
    font-size: 18px;
}

/* Floating Elements */
.floating-elem {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.elem-1 {
    top: 150px;
    left: -20px;
    animation-delay: 0s;
}

.elem-2 {
    bottom: 150px;
    right: 150px;
    animation-delay: 1s;
}

.elem-3 {
    top: 400px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 30;
}

.scroll-text {
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #FFFFFF, transparent);
    animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-grid { gap: 40px; }
    .title-line:nth-child(2) { font-size: 52px; }
    .card-main { width: 340px; }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-showcase { height: 500px; margin-top: 50px; }
    .card-main { top: 0; left: 50%; transform: translateX(-50%); }
    .card-secondary { top: 150px; left: 5%; }
    .card-tertiary { bottom: 20px; right: 5%; }
    .floating-elem { display: none; }
}

@media (max-width: 768px) {
    .hero-content-wrapper { padding: 25px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero-showcase { height: 400px; }
    .card-main { width: 280px; }
    .card-secondary, .card-tertiary { display: none; }
    .title-line:nth-child(1) { font-size: 24px; }
    .title-line:nth-child(2) { font-size: 40px; }
    .title-line.highlight { font-size: 48px; }
    .stat-number { font-size: 30px; }
}

/* Utility */
.text-gold { color: #FFD700; }
.bg-dark-transparent { background: rgba(0, 0, 0, 0.5); }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 15px;
}

.section-header .orange {
    color: var(--orange);
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(241, 90, 36, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--orange);
    font-size: 32px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: white;
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: #f8f8f8;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.about-exp {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 30px rgba(241, 90, 36, 0.2);
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 36px;
    margin: 10px 0 20px;
    color: #000;
}

.about-desc {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

.about-points {
    margin-bottom: 35px;
}

.point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.point i {
    color: var(--orange);
    font-size: 24px;
    width: 40px;
}

.point-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
}

.point-text p {
    color: #666;
    font-size: 14px;
}

.about-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 80px 0;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.project-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
}

.project-image {
    height: 200px;
    background: linear-gradient(45deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
}

.project-info p {
    color: #666;
    font-size: 14px;
}

.projects-footer {
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card-item {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.contact-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
}

.contact-card-item:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(241, 90, 36, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--orange);
    font-size: 28px;
    transition: all 0.3s;
}

.contact-card-item:hover .card-icon {
    background: var(--orange);
    color: white;
    transform: rotateY(360deg);
}

.contact-card-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}

.contact-detail {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-info {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.card-btn:hover {
    background: var(--orange);
    color: white;
    gap: 12px;
}

/* Location Section */
.location-section {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #000;
    color: white;
    flex-wrap: wrap;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: rgba(241, 90, 36, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--orange);
}

.location-title h3 {
    font-size: 20px;
    margin-bottom: 3px;
    color: white;
}

.location-title p {
    color: #aaa;
    font-size: 14px;
}

.location-hours {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
}

.location-hours i {
    color: var(--orange);
    font-size: 16px;
}

.location-hours span {
    font-size: 14px;
    color: #fff;
}

.map-wrapper {
    position: relative;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(241, 90, 36, 0.3);
    transition: all 0.3s;
}

.map-button:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 90, 36, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    color: #aaa;
    padding: 60px 0 20px;
    border-top: 3px solid var(--orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--orange);
    width: 20px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 14px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-title {
        font-size: 44px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px 0;
        border-top: 2px solid var(--orange);
        border-bottom: 2px solid var(--orange);
    }

    .navbar.active {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stat-card {
        flex-direction: column;
        gap: 15px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-exp {
        bottom: -10px;
        right: -10px;
        padding: 15px;
    }

    .exp-number {
        font-size: 28px;
    }

    .contact-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .location-hours {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .map-wrapper {
        height: 300px;
    }

    .map-overlay {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .map-button {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* ===== UTILITY CLASSES ===== */
.orange {
    color: var(--orange);
}

.orange-bg {
    background: var(--orange);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 40px;
}