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

:root {
    --newspaper-bg: #ffffff;
    --newspaper-text: #2c3e50;
    --newspaper-accent: #e67e22;
    --newspaper-border: #bdc3c7;
    --newspaper-headline: #1a1a1a;
    --newspaper-date: #7f8c8d;
    --paper-texture: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
    --primary-blue: #3498db;
    --dark-blue: #2c3e50;
    --orange-accent: #e67e22;
    --light-gray: #ecf0f1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--newspaper-text);
    background: var(--newspaper-bg);
    background-image: var(--paper-texture);
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--newspaper-bg);
    color: var(--newspaper-text);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    border-top: 3px double var(--newspaper-accent);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
    font-size: 14px;
}

.cookie-content a {
    color: var(--newspaper-accent);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--newspaper-accent);
    color: var(--newspaper-bg);
    border: 2px solid var(--newspaper-accent);
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.cookie-btn:hover {
    background: var(--newspaper-bg);
    color: var(--newspaper-accent);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--newspaper-bg);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px double var(--newspaper-accent);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--orange-accent);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Segoe UI', sans-serif;
    border: 2px solid var(--orange-accent);
    padding: 8px 20px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid var(--orange-accent);
}

.logo:hover {
    background: var(--orange-accent);
    color: var(--newspaper-bg);
    -webkit-text-fill-color: var(--newspaper-bg);
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    color: var(--newspaper-bg);
    background: var(--orange-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 18px;
    font-family: 'Segoe UI', sans-serif;
    border: 2px solid var(--orange-accent);
    box-shadow: 0 2px 4px rgba(230, 126, 34, 0.3);
    border-radius: 4px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--orange-accent);
    background: var(--newspaper-bg);
    border-color: var(--orange-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 126, 34, 0.4);
}

.nav-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--newspaper-accent);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Fullscreen Menu (Mobile Only) */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--newspaper-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 3px double var(--newspaper-accent);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.fullscreen-link {
    font-size: 32px;
    font-weight: 900;
    color: var(--newspaper-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Times New Roman', serif;
    border-bottom: 2px solid transparent;
    padding-bottom: 10px;
}

.fullscreen-link:hover {
    border-bottom-color: var(--newspaper-accent);
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 48px;
    color: var(--newspaper-accent);
    background: none;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Times New Roman', serif;
    font-weight: 700;
}

.menu-close:hover {
    transform: rotate(90deg);
}

/* Hero Section - Newspaper Style */
.hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background: var(--newspaper-bg);
    border-bottom: 3px double var(--newspaper-accent);
}

.blob-background {
    display: none;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.split-left,
.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.split-left {
    border-right: 2px solid var(--newspaper-border);
    padding-right: 60px;
}

.split-content {
    max-width: 100%;
}

.hero-title-large {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-blue);
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--orange-accent);
    padding-bottom: 20px;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--newspaper-text);
    margin-bottom: 35px;
    line-height: 1.9;
    text-align: justify;
    column-count: 1;
}

.btn-neon {
    display: inline-block;
    padding: 15px 35px;
    background: var(--orange-accent);
    color: var(--newspaper-bg);
    border: 2px solid var(--orange-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(230, 126, 34, 0.3);
}

.btn-neon:hover {
    background: var(--dark-blue);
    color: var(--newspaper-bg);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(44, 62, 80, 0.4);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    padding: 20px;
    background: var(--newspaper-bg);
    border: 2px solid var(--newspaper-border);
    border-left: 4px solid var(--newspaper-accent);
}

.stat-item.pulse {
    animation: none;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--orange-accent);
    margin-bottom: 5px;
    font-family: 'Segoe UI', sans-serif;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--newspaper-date);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-image-wrapper {
    width: 100%;
    height: 400px;
    border: 3px double var(--newspaper-accent);
    overflow: hidden;
    background: var(--newspaper-bg);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--newspaper-accent);
    z-index: 2;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--newspaper-accent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
    background: var(--newspaper-bg);
    border-bottom: 2px solid var(--newspaper-border);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 3px solid var(--orange-accent);
    padding-bottom: 20px;
}

.section-title-large {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark-blue);
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--newspaper-date);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-intro {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--newspaper-text);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.9;
    text-align: justify;
    column-count: 2;
    column-gap: 40px;
}

/* Services Tabs - Newspaper Style */
.services-tabs {
    background: var(--newspaper-bg);
}

.tabs-container {
    margin-top: 50px;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 3px double var(--newspaper-accent);
    padding-bottom: 20px;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--newspaper-border);
    color: var(--newspaper-text);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-family: 'Times New Roman', serif;
}

.tab-btn:hover {
    border-color: var(--orange-accent);
    background: var(--orange-accent);
    color: var(--newspaper-bg);
}

.tab-btn.active {
    background: var(--orange-accent);
    color: var(--newspaper-bg);
    border-color: var(--orange-accent);
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.tab-image {
    width: 100%;
    height: 350px;
    border: 3px double var(--newspaper-accent);
    overflow: hidden;
    background: var(--newspaper-bg);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-text {
    column-count: 1;
}

.tab-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--orange-accent);
    padding-bottom: 10px;
}

.tab-text p {
    font-size: 16px;
    color: var(--newspaper-text);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.service-features {
    list-style: none;
    border-left: 3px solid var(--newspaper-accent);
    padding-left: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--newspaper-text);
    font-size: 15px;
    line-height: 1.8;
    position: relative;
}

.service-features li::before {
    content: '■';
    position: absolute;
    left: -25px;
    color: var(--newspaper-accent);
    font-size: 10px;
}

/* About Statistics - Newspaper Style */
.about-stats {
    background: var(--newspaper-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    border: 3px double var(--newspaper-accent);
    padding: 30px;
    background: var(--newspaper-bg);
}

.stat-card {
    background: transparent;
    border: 2px solid var(--newspaper-border);
    border-left: 4px solid var(--newspaper-accent);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--newspaper-accent);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
    filter: grayscale(100%);
}

.stat-value {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--orange-accent);
    margin-bottom: 8px;
    display: block;
    font-family: 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 12px;
    color: var(--newspaper-date);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}

.about-text-block {
    padding: 25px;
    background: var(--newspaper-bg);
    border: 2px solid var(--newspaper-border);
    border-left: 4px solid var(--orange-accent);
    column-count: 1;
    border-radius: 4px;
}

.about-text-block h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--orange-accent);
    padding-bottom: 8px;
}

.about-text-block p {
    color: var(--newspaper-text);
    line-height: 1.9;
    text-align: justify;
    font-size: 15px;
}

.about-image-block {
    grid-column: span 2;
}

.about-image-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px double var(--newspaper-accent);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Process Diagram - Newspaper Style */
.process-diagram {
    background: var(--newspaper-bg);
}

.process-diagram-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 50px;
    border-left: 3px solid var(--newspaper-accent);
}

.process-node {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    opacity: 1;
    transition: all 0.3s ease;
}

.process-node:hover {
    background: rgba(0,0,0,0.02);
    padding: 10px;
    margin: -10px;
}

.node-circle {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: var(--newspaper-bg);
    border: 3px double var(--newspaper-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.process-node:hover .node-circle {
    background: var(--orange-accent);
}

.node-number {
    font-size: 20px;
    font-weight: 900;
    color: var(--orange-accent);
    font-family: 'Segoe UI', sans-serif;
}

.process-node:hover .node-number {
    color: var(--newspaper-bg);
}

.node-content {
    flex: 1;
    background: transparent;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.node-content h3 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--orange-accent);
    padding-bottom: 8px;
}

.node-content p {
    color: var(--newspaper-text);
    line-height: 1.9;
    text-align: justify;
    font-size: 15px;
}

/* Industries Horizontal Scroll - Newspaper Style */
.industries-scroll {
    background: var(--newspaper-bg);
    overflow: hidden;
}

.scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--newspaper-accent) transparent;
    padding-bottom: 20px;
}

.scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: var(--newspaper-border);
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--newspaper-accent);
    border-radius: 0;
}

.industries-scroll-container {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    min-width: max-content;
}

.industry-card {
    position: relative;
    width: 350px;
    height: 450px;
    border: 3px double var(--newspaper-accent);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: var(--newspaper-bg);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.industry-card:hover img {
    filter: grayscale(70%) contrast(1.s1);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(116 116 110 / 98%), transparent);
    padding: 30px 25px 25px;
    border-top: 2px solid var(--newspaper-accent);
}

.industry-overlay h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-overlay p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 14px;
    text-align: justify;
}

/* Why Choose Cards - Newspaper Style */
.why-choose-cards {
    background: var(--newspaper-bg);
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card-hover {
    background: var(--newspaper-bg);
    border: 2px solid var(--newspaper-border);
    border-left: 4px solid var(--newspaper-accent);
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-hover::before {
    display: none;
}

.feature-card-hover:hover {
    border-color: var(--newspaper-accent);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.feature-card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.feature-card-hover:hover .feature-card-icon {
    filter: grayscale(0%);
}

.feature-card-hover h3 {
    font-size: 18px;
    color: var(--newspaper-headline);
    margin-bottom: 12px;
    font-family: 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--newspaper-border);
    padding-bottom: 8px;
}

.feature-card-hover p {
    color: var(--newspaper-text);
    line-height: 1.9;
    font-size: 14px;
    text-align: justify;
}

/* Contact Section - Newspaper Style */
.contact-section {
    background: var(--newspaper-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-side h3 {
    font-size: 24px;
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--orange-accent);
    padding-bottom: 15px;
}

.contact-info-item {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--newspaper-bg);
    border: 2px solid var(--newspaper-border);
    border-left: 4px solid var(--newspaper-accent);
}

.contact-info-item strong {
    display: block;
    color: var(--orange-accent);
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
}

.contact-info-item p {
    color: var(--newspaper-text);
    line-height: 1.8;
    font-size: 15px;
}

.contact-info-item a {
    color: var(--orange-accent);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    text-decoration: none;
}

.contact-form-side {
    background: var(--newspaper-bg);
    padding: 35px;
    border: 3px double var(--newspaper-accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--orange-accent);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--newspaper-bg);
    border: 2px solid var(--newspaper-border);
    border-left: 3px solid var(--newspaper-accent);
    color: var(--newspaper-text);
    font-size: 15px;
    font-family: 'Times New Roman', serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-accent);
    background: rgba(230, 126, 34, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer - Newspaper Style */
.footer {
    background: var(--newspaper-bg);
    border-top: 3px double var(--newspaper-accent);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--newspaper-border);
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    color: var(--newspaper-headline);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
    border-bottom: 2px solid var(--newspaper-border);
    padding-bottom: 10px;
}

.footer-section p {
    color: var(--newspaper-text);
    line-height: 1.9;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section a {
    color: var(--newspaper-text);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange-accent);
    text-decoration: none;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid var(--newspaper-border);
    color: var(--newspaper-date);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .split-left {
        border-right: none;
        border-bottom: 2px solid var(--newspaper-border);
        padding-right: 40px;
        padding-bottom: 40px;
    }
    
    .tab-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-image-block {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-intro {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 150px;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .process-diagram-container {
        padding-left: 30px;
    }
    
    .node-circle {
        width: 50px;
        height: 50px;
    }
    
    .node-number {
        font-size: 16px;
    }
    
    .industry-card {
        width: 280px;
        height: 380px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 32px;
    }
    
    .section-title-large {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .process-diagram-container {
        padding-left: 20px;
    }
    
    .node-circle {
        width: 40px;
        height: 40px;
    }
    
    .industry-card {
        width: 250px;
        height: 350px;
    }
    
    .contact-form-side {
        padding: 25px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--orange-accent);
    color: var(--newspaper-bg);
}

/* Additional Styles for Catalog and Services */
select {
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    color: var(--newspaper-text);
}

select:focus {
    outline: none;
    border-color: var(--orange-accent);
    background: rgba(230, 126, 34, 0.05);
}

/* Print Styles */
@media print {
    .header,
    .menu-toggle,
    .fullscreen-menu,
    .cookie-popup {
        display: none;
    }
    
    body {
        background: white;
    }
    
    section {
        page-break-inside: avoid;
    }
}
