/* --- Version: 250101-0005 - Claude Sonnet 4.5 - Message 008 --- */

:root {
    --empire-green: #648c1b;
    --empire-cyan: #00aeef;
    --empire-navy: #002f6d;
    --empire-orange: #ed7623;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background-color: white;
    border-top: 10px solid var(--empire-cyan);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    max-width: 1440px;
    margin: 0 auto;
    background-color: white;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.logo {
    text-decoration: none;
    display: block;
}

.logo img {
    height: 37px;
    width: auto;
}

.tagline {
    font-size: 16px;
    color: var(--empire-green);
    font-weight: bold;
    font-style: normal;
    text-align: center;
    line-height: 1.3;
    flex: 1;
    max-width: 500px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-expert {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.contact-expert img {
    height: 50px;
    width: auto;
}

.nav-bar {
    background-color: var(--empire-green);
    border-top: 1px solid rgba(255,255,255,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    gap: 0;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 2px 20px;
    border-bottom: 6px solid transparent;
    transition: all 0.2s;
    text-transform: uppercase;
    flex: 1;
    text-align: center;
}

nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

nav a.active {
    border-bottom-color: var(--empire-cyan);
}

/* Hero Section */
.hero {
    background-color: var(--empire-green);
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-banner {
    width: 100%;
    overflow: hidden;
    max-height: 400px;
}

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

.hero-text {
    background-color: var(--empire-green);
    padding: 10px 0;
}

.hero-text .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.hero .subtitle {
    font-size: 26px;
    margin-bottom: 0;
    color: white;
    line-height: 1.6;
    font-weight: 600;
    font-style: italic;
}

.hero .commitment {
    font-size: 26px;
    font-weight: bold;
    color: white;
    line-height: 1.4;
}

/* About Section */
.about {
    padding: 60px 0 30px 0;
    background-color: white;
    max-width: 1440px;
    margin: 0 auto;
}

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

.about h2 {
    color: var(--empire-green);
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 600;
}

.about h3 {
    color: var(--empire-cyan);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    padding: 30px 0 60px 0;
    background-color: #f5f5f5;
    max-width: 1440px;
    margin: 0 auto;
}

.services-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-grid h2 {
    color: var(--empire-green);
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}

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

.service-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    border-color: var(--empire-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card .icon {
    font-size: 48px;
    margin-bottom: 18px;
}

.service-card h3 {
    color: var(--empire-green);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 14px;
}

/* Lasting Connection Section */
.lasting-connection {
    padding: 30px 0 60px 0;
    background-color: white;
    max-width: 1440px;
    margin: 0 auto;
}

.lasting-connection .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.lasting-connection h2 {
    color: var(--empire-green);
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.lasting-connection h3 {
    color: var(--empire-cyan);
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 600;
}

.promo-image {
    margin: 40px 0;
}

.promo-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 35px;
}

.content-columns p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 16px;
}

.content-columns ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-columns li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.emphasis {
    font-size: 16px;
    line-height: 1.8;
    margin: 35px 0;
}

.closing {
    font-size: 18px;
    color: var(--empire-cyan);
    margin-top: 35px;
    font-weight: 600;
}

.orange-text {
    color: var(--empire-cyan);
    font-weight: 600;
    font-size: 18px;
}

/* Industry Services */
.industry-services {
    padding: 60px 0;
    background-color: #f5f5f5;
    max-width: 1440px;
    margin: 0 auto;
}

.industry-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.industry-services h2 {
    color: var(--empire-green);
    font-size: 38px;
    margin-bottom: 35px;
    font-weight: 600;
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 25px;
}

.services-list h4 {
    color: var(--empire-green);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.services-list p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Brand Logos Section */
.brand-logos {
    padding: 25px 0 13px 0;
    background-color: white;
    max-width: 1440px;
    margin: 0 auto;
}

.brand-logos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.brand-logos h2 {
    color: var(--empire-green);
    font-size: 38px;
    margin-bottom: 17px;
    font-weight: 600;
    text-align: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
    align-items: center;
}

.brand-grid img {
    width: 100%;
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
    margin: 0 auto;
    display: block;
}

.brand-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--empire-green);
    color: white;
    padding: 18px 0;
    text-align: center;
}

/* Service Page Specific Styles */
.service-page {
    display: flex;
    min-height: calc(100vh - 100px);
    background-color: white;
    max-width: 1440px;
    margin: 0 auto;
}

/* Service Images */
.service-image {
    margin: 30px 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.service-images-row .service-image {
    margin: 0;
}

.sidebar {
    width: 280px;
    background-color: white;
    border-right: 1px solid #e0e0e0;
    padding: 32px 0;
    flex-shrink: 0;
}

.sidebar h3 {
    color: var(--empire-green);
    font-size: 26px;
    padding: 0 25px;
    margin-bottom: 18px;
    font-weight: 600;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    border-left: 4px solid transparent;
}

.sidebar-nav li.active {
    border-left-color: var(--empire-cyan);
    background-color: #f0f0f0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 13px 25px;
    color: var(--empire-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.sidebar-nav a:hover {
    background-color: #f8f8f8;
}

.sidebar-nav .icon {
    font-size: 24px;
    margin-right: 12px;
    width: 32px;
    text-align: center;
}

.main-content {
    flex: 1;
    padding: 32px 80px 60px 80px;
    background-color: white;
}

.main-content h1 {
    color: var(--empire-green);
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 600;
}

.main-content h2 {
    color: var(--empire-cyan);
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
}

.main-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #333;
}

.service-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
}

/* Responsive Design */

/* ============================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and smaller */
@media (max-width: 1024px) {
    /* Header adjustments */
    .header-top {
        padding: 10px 20px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .tagline {
        font-size: 12px;
        max-width: 300px;
    }
    
    .contact-expert img {
        height: 40px;
    }
    
    nav {
        padding: 0 20px;
    }
    
    nav a {
        font-size: 11px;
        padding: 2px 15px;
    }
    
    /* Hero section */
    .hero .subtitle {
        font-size: 20px;
    }
    
    /* Services grid */
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Brand logos */
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    /* Header - Stack vertically */
    .header-top {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .logo-section {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .logo {
        text-align: center;
    }
    
    .logo img {
        height: 28px;
    }
    
    .tagline {
        font-size: 11px;
        max-width: 100%;
        text-align: center;
    }
    
    .header-right {
        width: 100%;
        justify-content: center;
    }
    
    .contact-expert img {
        height: 35px;
    }
    
    /* Navigation - Stack */
    nav {
        flex-direction: column;
        padding: 0;
    }
    
    nav a {
        width: 100%;
        padding: 12px 20px;
        font-size: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-left: 3px solid transparent;
    }
    
    nav a.active {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-left-color: var(--empire-cyan);
    }
    
    nav a:hover {
        border-left-color: var(--empire-cyan);
    }
    
    /* Hero section */
    .hero-text .container {
        padding: 0 20px;
    }
    
    .hero .subtitle {
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Services grid - Single column */
    .services-grid .container,
    .lasting-connection .container,
    .about .container {
        padding: 0 20px;
    }
    
    .services-grid h2,
    .lasting-connection h2,
    .brand-logos h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    /* Brand logos - 2 columns */
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-logos .container {
        padding: 0 20px;
    }
    
    /* Content columns - Stack */
    .content-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Service pages */
    .service-page {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        padding: 20px;
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .sidebar h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .sidebar-nav a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .main-content h1 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .main-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    /* Service images side-by-side - Stack on mobile */
    .service-images-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Footer */
    footer {
        padding: 15px 0;
    }
    
    footer p {
        font-size: 14px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .logo img {
        height: 24px;
    }
    
    .tagline {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .hero .subtitle {
        font-size: 14px;
    }
    
    .services-grid h2,
    .lasting-connection h2,
    .brand-logos h2 {
        font-size: 24px;
    }
    
    .main-content h1 {
        font-size: 28px;
    }
    
    .main-content h2 {
        font-size: 20px;
    }
    
    nav a {
        font-size: 11px;
        padding: 10px 15px;
    }
}
