:root {
    --navy: #0E1A2B;
    --gold: #C9A24D;
    --gold-light: #E5C882;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-med: #666666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--navy);
}

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

/* Navigation */
.nav {
    background: var(--navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.btn-primary-small {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.btn-quote-small {
    background: var(--gold-light);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(197, 162, 77, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2942 100%);
    color: var(--white);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gold-text {
    color: var(--gold-light);
}

.hero-tagline {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-light);
    margin: 1.5rem 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.credentials {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(197, 162, 77, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--gold);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-quote {
    background: var(--gold-light);
    color: var(--navy);
    box-shadow: 0 0 20px rgba(197, 162, 77, 0.5);
    font-size: 1.1rem;
}

.btn-quote:hover {
    box-shadow: 0 0 30px rgba(197, 162, 77, 0.8);
    transform: scale(1.05);
}

.profile-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.profile-card {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

.profile-card h3 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

/* Services Grid - 10 Services */
.services {
    padding: 4rem 0;
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-med);
    margin-bottom: 3rem;
}

.services-grid-ten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.service-card-compact {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-card-compact h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card-compact p {
    color: var(--gray-med);
    font-size: 0.95rem;
}

/* Story Section */
.story {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.story-image-item {
    text-align: center;
}

.story-image-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.story-image-item p {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.story-text-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.story-text-center p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-highlight {
    background: rgba(197, 162, 77, 0.2);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

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

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

.footer-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-right: 0.5rem;
}

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

.disclosure {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Styles */
.page-header {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--gold-light);
}

.about-content,
.products-content,
.services-detailed,
.contact-content {
    padding: 4rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-photo {
    width: 100%;
    border-radius: 10px;
}

.credential-block {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.credential-block h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.story-with-images {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.story-images-side img {
    width: 100%;
    border-radius: 8px;
}

.caption {
    font-size: 0.9rem;
    color: var(--gray-med);
    margin-top: 0.5rem;
}

.news-coverage {
    margin: 2rem 0;
    text-align: center;
}

.news-image {
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
}

.service-detail {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.action-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.social-links-large a {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.social-btn {
    background: var(--gold);
    color: var(--navy);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid-ten {
        grid-template-columns: 1fr;
    }
    
    .story-images {
        grid-template-columns: 1fr;
    }
    
    .about-intro,
    .story-with-images,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
