@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --color-primary: #00008B;
    --color-accent: #8B0000;
    --color-gold: #FFD700;
    --color-light-gray: #F5F5F5;
    --color-dark-gray: #333333;
    --color-white: #FFFFFF;
    
    --font-primary: 'Oswald', sans-serif;
    --font-fallback: 'Roboto', sans-serif;
    
    --header-height: 80px;
    --header-height-tablet: 70px;
    --header-height-mobile: 60px;
    
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fallback);
    color: var(--color-dark-gray);
    background-color: var(--color-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ==================== HEADER STYLES ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--color-primary);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 68px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    font-family: var(--font-fallback);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-light-gray);
    position: relative;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    font-family: var(--font-fallback);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-light-gray);
    transition: color 0.2s ease;
}

.phone-number:hover {
    color: var(--color-gold);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.btn-primary:hover {
    background: #A00000;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    background: #7A0000;
    transform: scale(1.02);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-fallback);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

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

.btn-tertiary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-fallback);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-tertiary:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-light-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    font-size: 24px;
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.mobile-menu .phone-number {
    font-size: 20px;
    margin-bottom: 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-light-gray);
    font-size: 40px;
    cursor: pointer;
}

/* ==================== HERO STYLES ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 139, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-text h1 {
    font-size: 56px;
    color: var(--color-white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
}

.hero-text p {
    font-size: 20px;
    color: var(--color-light-gray);
    margin-bottom: 30px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease 0.2s forwards;
}

.hero-text .btn-primary {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease 0.4s forwards;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-video-progress-bar {
    height: 100%;
    background: var(--color-gold);
    animation: progressBar 8s linear infinite;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ==================== SECTION STYLES ==================== */
section {
    padding: 80px 0;
}

.section-light {
    background: var(--color-light-gray);
}

.section-dark {
    background: var(--color-primary);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0V0zm1 1h58v58H1V1z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.section-accent {
    background: var(--color-accent);
}

.section-title {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--color-gold);
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--color-dark-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.section-subtitle-light {
    color: var(--color-light-gray);
}

/* ==================== ABOUT SNIPPET ==================== */
.about-snippet {
    text-align: center;
    padding: 100px 0;
}

.about-snippet p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.about-snippet strong {
    color: var(--color-primary);
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.25s ease-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 2;
}

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

.service-card p {
    font-size: 15px;
    color: var(--color-dark-gray);
    line-height: 1.6;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-us {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
}

.why-choose-us h2 {
    font-size: 48px;
    color: var(--color-white);
    line-height: 1.1;
}

.why-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-benefit-icon {
    min-width: 50px;
    height: 50px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2.5;
}

.why-benefit h4 {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.why-benefit p {
    font-size: 15px;
    color: var(--color-light-gray);
    line-height: 1.5;
}

.vertical-divider {
    width: 2px;
    background: var(--color-gold);
    position: absolute;
    left: 40%;
    top: 0;
    height: 100%;
}

/* ==================== PROJECT SPOTLIGHT ==================== */
.project-spotlight {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.project-spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 139, 0.8) 0%, rgba(0, 0, 139, 0.3) 50%, transparent 100%);
}

.project-spotlight-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
}

.project-spotlight-content h3 {
    font-size: 36px;
    color: var(--color-white);
    margin-bottom: 15px;
}

/* ==================== PROCESS STEPS ==================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.process-step h4 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: var(--color-dark-gray);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 30px;
    left: calc(33.33% + 20px);
    width: calc(33.33% - 40px);
    height: 2px;
    background: var(--color-gold);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 400px;
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    scroll-snap-align: start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--color-dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-card cite {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
}

.testimonial-card span {
    display: block;
    font-family: var(--font-fallback);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-dark-gray);
    margin-top: 5px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonial-nav button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ==================== SERVICE AREA MAP ==================== */
.service-area-map {
    text-align: center;
    padding: 80px 0;
}

.service-area-map h2 {
    margin-bottom: 40px;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px dashed var(--color-gold);
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--color-primary);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    color: var(--color-dark-gray);
    font-weight: 500;
}

/* ==================== CTA SECTIONS ==================== */
.cta-section {
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--color-light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    font-size: 16px;
    padding: 16px 40px;
}

/* ==================== PRECONSTRUCTION FOCUS ==================== */
.preconstruction-focus {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
}

.preconstruction-focus h2 {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.preconstruction-focus > p {
    font-size: 17px;
    color: var(--color-dark-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.preconstruction-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preconstruction-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.preconstruction-benefit-icon {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.preconstruction-benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 2.5;
}

.preconstruction-benefit p {
    font-size: 16px;
    color: var(--color-dark-gray);
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
}

.team-section h2 {
    font-size: 40px;
    color: var(--color-white);
    margin-bottom: 25px;
}

.team-section > p {
    font-size: 17px;
    color: var(--color-light-gray);
    line-height: 1.7;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question h4 {
    font-size: 18px;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 500;
}

.faq-icon {
    width: 30px;
    height: 30px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 16px;
    color: var(--color-dark-gray);
    line-height: 1.6;
}

/* ==================== CONTACT CTA ==================== */
.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.contact-cta h2 {
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.contact-cta .phone-number {
    font-size: 28px;
    font-family: var(--font-primary);
    color: var(--color-gold);
    margin-bottom: 25px;
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: var(--header-height);
}

.about-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 60px 20px;
}

.about-hero h1 {
    font-size: 52px;
    color: var(--color-white);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-hero p {
    font-size: 20px;
    color: var(--color-light-gray);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

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

/* Our Story */
.our-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
    align-items: start;
}

.our-story h2 {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.our-story p {
    font-size: 17px;
    color: var(--color-dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--color-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
}

.timeline-item h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 15px;
    color: var(--color-dark-gray);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.value-card:hover {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.value-card-icon {
    width: 70px;
    height: 70px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
}

.value-card h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.5;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-card-image {
    height: 250px;
    background: var(--color-dark-gray);
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.team-card:hover .team-card-image img {
    filter: grayscale(0%);
}

.team-card-content {
    padding: 25px;
}

.team-card h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.5;
}

/* Commitment Section */
.commitment-section {
    text-align: center;
    padding: 100px 0;
}

.commitment-section h2 {
    font-size: 52px;
    color: var(--color-white);
    margin-bottom: 25px;
}

.commitment-section p {
    font-size: 22px;
    color: var(--color-light-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: var(--header-height);
}

.services-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 60px 20px;
}

.services-hero h1 {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    color: var(--color-light-gray);
}

.services-intro {
    text-align: center;
    padding: 80px 0;
}

.services-intro h2 {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.services-intro p {
    font-size: 18px;
    color: var(--color-dark-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Individual Services Grid */
.individual-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 80px 0;
}

.service-detail-card {
    background: var(--color-primary);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
}

.service-detail-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 139, 0.3);
}

.service-detail-card:hover::after {
    transform: scaleX(1);
}

.service-detail-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-detail-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 2;
}

.service-detail-card h3 {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.service-detail-card p {
    font-size: 16px;
    color: var(--color-light-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Preconstruction Advantage */
.preconstruction-advantage {
    padding: 100px 0;
}

.preconstruction-advantage h2 {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 25px;
    text-align: center;
}

.preconstruction-advantage > p {
    font-size: 18px;
    color: var(--color-light-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.preconstruction-list {
    max-width: 800px;
    margin: 0 auto;
}

.preconstruction-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--color-gold);
}

.preconstruction-list-item h4 {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.preconstruction-list-item p {
    font-size: 15px;
    color: var(--color-light-gray);
    line-height: 1.5;
}

/* Service Process */
.service-process {
    padding: 80px 0;
}

.service-process h2 {
    font-size: 42px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 60px;
}

.process-steps-vertical {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-steps-vertical::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--color-gold);
}

.process-step-vertical {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step-vertical-number {
    min-width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 10;
}

.process-step-vertical-content h4 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.process-step-vertical-content p {
    font-size: 16px;
    color: var(--color-dark-gray);
    line-height: 1.6;
}

/* ==================== PORTFOLIO PAGE STYLES ==================== */
.portfolio-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: var(--header-height);
}

.portfolio-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 60px 20px;
}

.portfolio-hero h1 {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.portfolio-hero p {
    font-size: 20px;
    color: var(--color-light-gray);
}

/* Filter */
.project-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 40px 0;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-fallback);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0 80px;
}

.project-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.25s ease;
}

.project-card:hover {
    transform: translateY(-5px) perspective(1000px) rotateY(3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.project-card-content {
    padding: 25px;
}

.project-card h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.5;
}

/* ==================== EMPLOYMENT PAGE STYLES ==================== */
.employment-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: var(--header-height);
}

.employment-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 60px 20px;
}

.employment-hero h1 {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.employment-hero p {
    font-size: 20px;
    color: var(--color-light-gray);
}

/* Why Work Here */
.why-work-here {
    padding: 80px 0;
}

.why-work-here h2 {
    font-size: 42px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.benefit-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 2;
}

.benefit-card h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--color-dark-gray);
    line-height: 1.5;
}

/* Job Openings */
.job-openings {
    padding: 80px 0;
}

.job-openings h2 {
    font-size: 42px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 50px;
}

.job-list {
    max-width: 800px;
    margin: 0 auto;
}

.job-item {
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.job-header {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.job-header h4 {
    font-size: 18px;
    color: var(--color-primary);
}

.job-header .job-icon {
    width: 30px;
    height: 30px;
    position: relative;
}

.job-header .job-icon::before,
.job-header .job-icon::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    transition: transform 0.3s ease;
}

.job-header .job-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.job-header .job-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.job-item.active .job-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.job-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.job-content-inner {
    padding: 0 30px 30px;
}

.job-content p {
    font-size: 15px;
    color: var(--color-dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-content .btn-primary {
    font-size: 13px;
    padding: 10px 20px;
}

/* Hiring Process */
.hiring-process {
    padding: 80px 0;
}

.hiring-process h2 {
    font-size: 42px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: var(--header-height);
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 60px 20px;
}

.contact-hero h1 {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--color-light-gray);
}

/* Contact Options */
.contact-options {
    padding: 80px 0;
}

.contact-options h2 {
    font-size: 42px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

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

.contact-option {
    text-align: center;
    padding: 35px 25px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    cursor: pointer;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--color-gold);
}

.contact-option-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-option-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 2;
}

.contact-option h4 {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-option p {
    font-size: 15px;
    color: var(--color-dark-gray);
    font-weight: 500;
}

.contact-option a {
    font-size: 15px;
    color: var(--color-dark-gray);
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-option a:hover {
    color: var(--color-accent);
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-primary);
    padding: 50px;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-family: var(--font-fallback);
    font-size: 16px;
    background: var(--color-white);
    color: var(--color-dark-gray);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

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

.contact-form-wrapper .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

/* Form Success Animation */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success h3 {
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.form-success p {
    font-size: 18px;
    color: var(--color-light-gray);
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-section h2 {
    font-size: 42px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

.map-container-full {
    height: 400px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.map-container-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== FOOTER STYLES ==================== */
.footer {
    background: var(--color-primary);
    padding: 70px 0 30px;
    color: var(--color-light-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 25% 20% 25% 30%;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 50px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: perspective(400px) rotateY(15deg);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-light-gray);
    fill: none;
    stroke-width: 2;
}

.footer-social a:hover svg {
    stroke: var(--color-primary);
}

.footer h4 {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    font-size: 15px;
    color: var(--color-light-gray);
    transition: all 0.2s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.footer-cta {
    margin-top: 25px;
}

.footer-cta .btn-secondary {
    border-color: var(--color-gold);
    color: var(--color-gold);
    padding: 10px 20px;
    font-size: 13px;
}

.footer-cta .btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

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

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

/* ==================== ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100px;
    background: rgba(0, 0, 139, 0.2);
    border-radius: 2px;
    z-index: 100;
    display: none;
}

.scroll-indicator-bar {
    width: 100%;
    height: 0%;
    background: var(--color-gold);
    border-radius: 2px;
    transition: height 0.2s ease;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablet */
@media (max-width: 1023px) {
    :root {
        --header-height: var(--header-height-tablet);
    }
    
    .header-inner {
        padding: 0 25px;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta .phone-number {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 60px 25px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-us {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .process-line {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .preconstruction-focus {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        grid-template-columns: 1fr;
    }
    
    .our-story {
        grid-template-columns: 1fr;
    }
    
    .individual-services {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --header-height: var(--header-height-mobile);
    }
    
    .logo img {
        height: 45px;
    }
    
    .header-inner {
        padding: 0 15px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us h2 {
        font-size: 32px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-section h2 {
        font-size: 32px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .our-story h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .preconstruction-advantage h2 {
        font-size: 28px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
    
    .hero-text h1,
    .hero-text p,
    .hero-text .btn-primary {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .about-hero h1,
    .about-hero p {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Job Badge Pulse */
.job-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    animation: pulse 2s infinite ease-out;
}
