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

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(145deg, #1a1a1a 0%, #242424 50%, #1a1a1a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.7;
}

/* Navigation */
.nav {
    background: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c9a961;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #c9a961;
    transition: 0.3s;
}

/* Hero */
.hero {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Intro Section */
.intro {
    margin-bottom: 70px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro .lead {
    font-size: 22px;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.intro .highlight-text {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #c9a961;
    margin-bottom: 25px;
}

.intro p {
    font-size: 17px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.intro .tagline {
    font-style: italic;
    color: #c9a961;
    font-size: 18px;
    margin-top: 30px;
}

/* Section Headings */
h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #c9a961;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    margin-bottom: 70px;
    padding: 50px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.15);
}

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

.stat-card {
    text-align: center;
    padding: 25px;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #c9a961;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.5;
}

.stats-footer {
    text-align: center;
    font-size: 16px;
    color: #808080;
    font-style: italic;
}

/* Services Grid */
.services-preview {
    margin-bottom: 70px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 35px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #c9a961;
    background: rgba(201, 169, 97, 0.05);
}

.service-card p {
    color: #a0a0a0;
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-link {
    color: #c9a961;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #f4d891;
}

/* Services Page Full */
.services-full {
    margin-bottom: 70px;
}

.service-full-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 45px;
    margin-bottom: 30px;
}

.service-full-card:hover {
    border-color: rgba(201, 169, 97, 0.3);
}

.service-full-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.service-full-card > p {
    font-size: 17px;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-list li {
    color: #a0a0a0;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a961;
}

/* Current Work */
.current-work {
    margin-bottom: 70px;
}

.work-card {
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    padding: 40px;
    position: relative;
}

.work-badge {
    display: inline-block;
    background: #c9a961;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.work-card h3 {
    font-size: 26px;
    color: #ffffff;
}

.work-card p {
    color: #c0c0c0;
    font-size: 16px;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.02) 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    color: #a0a0a0;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: #c9a961;
    color: #1a1a1a;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f4d891;
    transform: translateY(-2px);
}

/* Case Studies */
.case-studies {
    margin-bottom: 70px;
}

.case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.case-card:hover {
    border-color: rgba(201, 169, 97, 0.3);
}

.case-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.case-card p {
    color: #a0a0a0;
    font-size: 16px;
}

.case-highlight {
    background: rgba(201, 169, 97, 0.08);
    border: 2px solid #c9a961;
}

.case-highlight h3 {
    color: #ffffff;
}

/* About Page */
.about-section {
    margin-bottom: 70px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-name {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 5px;
}

.about-title {
    font-size: 18px;
    color: #c9a961;
    letter-spacing: 2px;
}

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

.about-content p {
    font-size: 17px;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.credentials {
    margin-top: 50px;
    padding: 40px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.credentials h3 {
    text-align: center;
    margin-bottom: 25px;
}

.credentials-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.credentials-list li {
    color: #a0a0a0;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
}

.credentials-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #c9a961;
}

/* Who We Work With */
.clients-section {
    margin-bottom: 70px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.client-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
}

.client-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.client-card p {
    color: #a0a0a0;
    font-size: 14px;
}

/* Contact Page */
.contact-section {
    margin-bottom: 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-label {
    font-size: 12px;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 18px;
    color: #ffffff;
}

.contact-value a {
    color: #c9a961;
    text-decoration: none;
}

.contact-value a:hover {
    color: #f4d891;
}

.contact-cta {
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.contact-cta h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-cta p {
    color: #a0a0a0;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 50px 40px;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: #c9a961;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #c9a961;
    border-radius: 4px;
    font-size: 11px;
    color: #c9a961;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #808080;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c9a961;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid #333;
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .services-grid,
    .clients-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-list,
    .credentials-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px 40px;
        gap: 15px;
        border-bottom: 1px solid #333;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .container {
        padding: 40px 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

/* Print */
@media print {
    body {
        background: #1a1a1a;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        color-adjust: exact;
    }
}
