/* Project 36 Fabrication - Art Deco Railway Refined with Animation */

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

:root {
    /* Refined Railway Palette - Dark with Animation */
    --bg-dark: #0f0f0f;
    --bg-charcoal: #1a1a1a;
    --bg-deep: #141418;
    --brass: #b8860b;
    --brass-light: #d4af37;
    --brass-dark: #8b6914;
    --chrome: #c0c0c0;
    --chrome-light: #e8e8e8;
    --cream: #f5f0e6;
    --cream-dark: #e8e0d0;
    
    /* Gradients */
    --brass-gradient: linear-gradient(135deg, var(--brass-light) 0%, var(--brass) 50%, var(--brass-dark) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.7;
    color: var(--cream);
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* Animated Pinstripe Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(184, 134, 11, 0.03) 35px,
        rgba(184, 134, 11, 0.03) 70px
    ),
    repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 35px,
        rgba(184, 134, 11, 0.03) 35px,
        rgba(184, 134, 11, 0.03) 70px
    );
    pointer-events: none;
    z-index: -1;
    animation: grid-shift 60s linear infinite;
}

@keyframes grid-shift {
    0% { background-position: 0 0; }
    100% { background-position: 70px 70px; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1rem;
    color: var(--cream-dark);
}

a {
    color: var(--brass-light);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--brass);
}

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

/* Railway Divider */
.railway-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.railway-divider::before,
.railway-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    max-width: 250px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--brass) 30%, 
        var(--brass-light) 50%, 
        var(--brass) 70%, 
        transparent 100%);
}

.railway-divider i {
    color: var(--brass-light);
    font-size: 1.2rem;
}

/* Header */
header {
    background: rgba(15, 15, 15, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--brass);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--brass) 0px,
        var(--brass) 3px,
        transparent 3px,
        transparent 8px
    );
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0.5rem 2rem;
    border: 2px solid var(--brass);
    background: var(--bg-charcoal);
}

.logo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--brass-light);
    clip-path: polygon(
        0 15px, 15px 0,
        calc(100% - 15px) 0, 100% 15px,
        100% calc(100% - 15px), calc(100% - 15px) 100%,
        15px 100%, 0 calc(100% - 15px)
    );
    pointer-events: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brass-light);
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--chrome-light);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 0.3rem;
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--brass-light);
}

.nav-links .cta {
    color: var(--brass-light);
    border: 1px solid var(--brass);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s;
    background: rgba(184, 134, 11, 0.1);
}

.nav-links .cta:hover {
    background: var(--brass-gradient);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--brass);
    color: var(--brass-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: rgba(184, 134, 11, 0.15);
}

/* Hero with Animated Sunburst */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at center, var(--bg-charcoal) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Sunburst Background */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150vw;
    height: 150vw;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(184, 134, 11, 0.03) 0deg 10deg,
        transparent 10deg 20deg
    );
    animation: sunburst-rotate 60s linear infinite;
    pointer-events: none;
}

@keyframes sunburst-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brass-gradient);
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.5);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    padding: 3rem;
    border: 2px solid var(--brass);
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.hero-content::before,
.hero-content::after {
    content: '⚙';
    position: absolute;
    color: var(--brass-light);
    font-size: 1.8rem;
    opacity: 0.8;
}

.hero-content::before {
    top: -15px;
    left: -15px;
}

.hero-content::after {
    bottom: -15px;
    right: -15px;
    transform: rotate(180deg);
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.15);
    border: 2px solid var(--brass);
    color: var(--brass-light);
    padding: 0.7rem 2.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-badge i {
    margin-right: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.1) rotate(10deg); }
}

.hero h1 {
    font-size: 4rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 14px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
}

.hero h1::after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: var(--brass-gradient);
    margin: 1.5rem auto 0;
}

.hero .tagline {
    font-size: 1.4rem;
    color: var(--cream-dark);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features span {
    color: var(--cream);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--brass);
    background: rgba(184, 134, 11, 0.08);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.hero-features i {
    color: var(--brass-light);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--brass-gradient);
    color: var(--bg-dark);
    border: 2px solid var(--brass);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(184, 134, 11, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--brass-light);
    border: 2px solid var(--brass);
}

.btn-secondary:hover {
    background: rgba(184, 134, 11, 0.15);
    color: var(--brass);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--cream-dark);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 6rem 0;
    background: var(--bg-charcoal);
    color: var(--cream);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--brass) 0px,
        var(--brass) 5px,
        transparent 5px,
        transparent 10px
    );
}

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

.service-card {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    border: 2px solid var(--brass);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--brass-light);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(184, 134, 11, 0.2);
    transform: translateY(-8px);
}

.service-card.featured {
    border-color: var(--brass-light);
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, var(--bg-dark) 100%);
}

.service-card.featured::after {
    content: '★';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--brass-light);
    font-size: 1.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--brass-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--brass-light);
}

.service-icon i {
    font-size: 2rem;
    color: var(--bg-dark);
}

.service-card h3 {
    color: var(--cream);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.service-card p {
    color: var(--cream-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    padding-top: 1.5rem;
}

.service-features li {
    color: var(--cream-dark);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--brass-light);
    font-size: 0.8rem;
}

/* Why Choose with Animated Background */
.why-choose {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(184, 134, 11, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 134, 11, 0.04) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 2px solid var(--brass);
    background: var(--bg-charcoal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(184, 134, 11, 0.02) 0deg 15deg,
        transparent 15deg 30deg
    );
    animation: stat-rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes stat-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-number {
    font-size: 3.5rem;
    color: var(--brass-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--cream);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: var(--brass-light);
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.feature p {
    color: var(--cream-dark);
    font-size: 0.95rem;
}

/* Work */
.work {
    padding: 6rem 0;
    background: var(--bg-charcoal);
    position: relative;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(184, 134, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.work-card {
    background: var(--bg-dark);
    border: 2px solid var(--brass);
    transition: all 0.3s;
}

.work-card:hover {
    border-color: var(--brass-light);
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(184, 134, 11, 0.2);
}

.work-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(184, 134, 11, 0.3);
    background: var(--bg-charcoal);
}

.work-content {
    padding: 2rem;
}

.work-content h3 {
    color: var(--cream);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.work-content p {
    color: var(--cream-dark);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.work-tag {
    display: inline-block;
    background: rgba(184, 134, 11, 0.15);
    color: var(--brass-light);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid var(--brass);
}

.work-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About */
.about {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    border: 2px solid var(--brass);
    background: var(--bg-charcoal);
}

.about-content::before,
.about-content::after {
    content: '⚙';
    position: absolute;
    color: var(--brass-light);
    font-size: 2rem;
    opacity: 0.6;
}

.about-content::before {
    top: -15px;
    left: -15px;
}

.about-content::after {
    bottom: -15px;
    right: -15px;
    transform: rotate(180deg);
}

.about h2 {
    font-size: 2.5rem;
    color: var(--brass-light);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about p {
    color: var(--cream-dark);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--brass);
}

.highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--cream);
    font-size: 1rem;
    padding: 1rem;
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.highlight i {
    color: var(--brass-light);
    font-size: 1.2rem;
}

/* Service Area */
.service-area {
    padding: 6rem 0;
    background: var(--bg-charcoal);
    color: var(--cream);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-card {
    padding: 2rem;
    background: var(--bg-dark);
    border: 2px solid var(--brass);
}

.area-card:hover {
    border-color: var(--brass-light);
}

.area-card h4 {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-card h4 i {
    color: var(--brass-light);
}

.area-card p {
    color: var(--cream-dark);
    font-size: 0.95rem;
}

.service-note {
    text-align: center;
    color: var(--cream-dark);
    font-size: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    border: 2px dashed rgba(184, 134, 11, 0.3);
    background: rgba(184, 134, 11, 0.05);
}

.service-note i {
    color: var(--brass-light);
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-charcoal);
    padding: 3rem 2rem;
    border: 2px solid var(--brass);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--brass-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.testimonial-stars {
    color: var(--brass-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
}

.testimonial-text {
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    color: var(--cream-dark);
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    padding-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--brass-light);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--cream-dark);
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: var(--bg-charcoal);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.contact-item:hover {
    border-color: var(--brass);
}

.contact-item i {
    color: var(--brass-light);
    font-size: 1.5rem;
    width: 30px;
}

.contact-item strong {
    display: block;
    color: var(--brass-light);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-item a, .contact-item p {
    color: var(--cream-dark);
    font-size: 1rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass-light);
    font-size: 1.2rem;
    transition: all 0.3s;
    background: rgba(184, 134, 11, 0.08);
}

.social-links a:hover {
    background: var(--brass-gradient);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--bg-dark);
    padding: 3rem;
    border: 2px solid var(--brass);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--brass-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--brass);
    background: rgba(15, 15, 15, 0.5);
    color: var(--cream);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brass-light);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--cream);
}

.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--brass-gradient);
    color: var(--bg-dark);
    border: 2px solid var(--brass);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(184, 134, 11, 0.4);
}

.form-note {
    color: var(--cream-dark);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
}

/* CTA Section with Animation */
.cta-section {
    padding: 6rem 0;
    background: var(--brass-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.05) 0deg 10deg,
        transparent 10deg 20deg
    );
    animation: cta-rotate 60s linear infinite;
    pointer-events: none;
}

@keyframes cta-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--bg-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.cta-section p {
    color: var(--bg-charcoal);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--bg-dark);
    color: var(--cream);
    border-color: var(--bg-dark);
}

.cta-section .btn-primary:hover {
    background: var(--bg-charcoal);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--bg-dark);
    border-color: var(--bg-dark);
}

.cta-section .btn-secondary:hover {
    background: var(--bg-dark);
    color: var(--cream);
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--brass);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--brass-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    color: var(--cream-dark);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.footer-col ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--brass-light);
    font-size: 0.7rem;
}

.footer-col ul li a {
    color: var(--cream-dark);
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--brass-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brass-light);
    transition: all 0.3s;
    background: rgba(184, 134, 11, 0.08);
}

.footer-social a:hover {
    background: var(--brass-gradient);
    color: var(--bg-dark);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--cream-dark);
    margin-bottom: 1rem;
}

.contact-list li i {
    color: var(--brass-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
}

.footer-bottom p {
    color: var(--cream-dark);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--cream-dark);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--brass-light);
}

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

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

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 3rem 2rem;
        transition: left 0.3s;
    }

    .nav-links.mobile-active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .services-grid,
    .stats-grid,
    .about-highlights {
        grid-template-columns: 1fr;
    }
}
