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

/* === BRAND COLORS === */
:root {
    --brand-green: #014d3a;
    --brand-green-dark: #013927;
    --brand-bg: #fff;
    --brand-text: #222;
}

body {
    font-family: 'Marcellus', serif !important;
    line-height: 1.6;
    color: var(--brand-text);
    background: var(--brand-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.navbar, .nav-menu a, .cta-button, .performance-badge, .service-link, .footer-brand, .footer-links a, .performance-section h2, .printing-services h2, .expert-repairs h2, .top-quality-solutions h2, .final-cta h2, .brand-title {
    font-family: 'Marcellus', serif !important;
    letter-spacing: 0.2px;
}

.hero-content p,
.service-content p,
.repair-card p,
.solution-item p,
.section-subtitle,
.customer-service-highlight p {
    font-family: 'Marcellus', serif !important;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4361ee;
    color: white;
}

.btn-accept:hover {
    background: #3a56d4;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: white;
    color: #1a1a2e;
}

/* Header - Professional & Rich UI */
.header {
    background: var(--brand-bg);
    box-shadow: 0 2px 8px rgba(1,77,58,0.07);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f6fd;
    border-radius: 50%;
    padding: 0.3rem;
    box-shadow: 0 2px 8px rgba(67,97,238,0.10);
    
}

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

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-green);
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--brand-text);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-menu a:hover, .nav-menu a:focus {
    background: #eaf4f1;
    color: var(--brand-green);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 16px rgba(1,77,58,0.10);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Split Layout */
.hero {
    background: #fff;
    color: #222;
    padding: 0;
    min-height: 90vh;
    display: flex;
    align-items: stretch;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 0;
    width: 100%;
    margin-top: 0 !important;
}

.hero-content {
    flex: 1  40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #222;
    text-align: left;
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: #222;
    text-align: left;
    max-width: 500px;
    line-height: 1.6;
}

.cta-button {
    background: var(--brand-green);
    color: #fff;
    padding: 20px 48px;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
    text-align: center;
    margin-top: 1.5rem;
    letter-spacing: 0.2px;
}

.cta-button:hover {
    background: var(--brand-green-dark);
}

.hero-image {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffcfc;
    min-height: 100vh;
    padding: 0;
}

.hero-image img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 1100px) {
    .hero-content {
        padding-left: 3vw;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        min-height: unset;
    }
    .hero-content, .hero-image {
        flex: unset;
        min-height: unset;
        width: 100%;
        padding: 2rem 1rem;
        align-items: flex-start;
    }
    .hero-image {
        justify-content: center;
        padding: 2rem 0;
    }
    .hero-content {
        padding: 2rem 1rem 0 1rem;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    .navbar {
        padding: 1rem 1rem;
    }
    .brand-title {
        font-size: 1.3rem;
    }
    .nav-menu {
        gap: 1.2rem;
    }
}

@media (max-width: 700px) {
    .hero-split {
        margin-top: 70px !important;
    }
}

/* Performance Section */
.performance-section {
    background: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.performance-section h2 {
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 2rem;
    font-weight: 600;
}

.performance-badge {
    display: inline-block;
    background: var(--brand-green);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Tech Services Section */
.printing-services {
    padding: 100px 0;
    background: #fff;
}

.printing-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-card .service-image {
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
}

.service-card .service-image img, .service-card > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--brand-green-dark);
}

/* Expert Repairs Section */
.expert-repairs {
    background: #f8f9fa;
    padding: 100px 0;
}

.expert-repairs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.repair-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.repair-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.repair-icon i {
    font-size: 2rem;
    color: white;
}

.repair-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.repair-card p {
    color: #666;
    line-height: 1.6;
}

/* Top Quality Solutions Section */
.top-quality-solutions {
    background: #fff;
    padding: 100px 0;
}

.top-quality-solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-icon i {
    font-size: 1.8rem;
    color: white;
}

.solution-item h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-item p {
    color: #666;
    line-height: 1.6;
}

.customer-service-highlight {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 3rem;
}

.customer-service-highlight p {
    font-size: 1.2rem;
    color: #1a1a2e;
}

.customer-service-highlight a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 600;
}

.customer-service-highlight a:hover {
    color: var(--brand-green-dark);
}

/* Final CTA Section */
.final-cta {
    background: #eaf4f1;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--brand-green-dark);
    color: #fff;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 80vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 3rem 2rem 2rem 2rem;
        box-shadow: -2px 0 15px rgba(0,0,0,0.08);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .performance-section h2,
    .printing-services h2,
    .expert-repairs h2,
    .top-quality-solutions h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .repairs-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 1rem 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .performance-section,
    .printing-services,
    .expert-repairs,
    .top-quality-solutions,
    .final-cta {
        padding: 60px 0;
    }
    
    .service-content,
    .repair-card {
        padding: 1.5rem;
    }
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(1,77,58,0.25);
    z-index: 998;
    transition: opacity 0.3s ease;
    opacity: 0;
}
.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 80vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 3rem 2rem 2rem 2rem;
        box-shadow: -2px 0 15px rgba(0,0,0,0.08);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        align-items: flex-start;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none;
        padding: 0;
        min-width: unset;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .hamburger span {
        transition: all 0.3s;
    }
}

/* Hero Section Centered */
.hero-centered .main-title {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
}
.hero-centered .subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Service Grid */
.service-grid-section {
    background: #fff;
    padding-bottom: 2rem;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 1.5rem 1.25rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}
.service-card h2 {
    font-family: 'Marcellus', serif;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #111;
}
.service-card p {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: 220px;
    }
    .service-card .service-image img, .service-card > img {
        height: 100%;
    }
} 