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

:root {
    --content-padding: clamp(20px, 5vw, 60px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
    background-color: #808080;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

.navbar {
    background-color: transparent !important;
    background: transparent !important;
    padding: 20px var(--content-padding);
    border-bottom: none;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: nowrap;
}

/* Logo */
.logo {
    background-color: transparent;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-image {
    height: 130px;
    width: auto;
    display: block;
}

.logo-name {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(205, 28, 24, 0.7),
                 0 0 30px rgba(205, 28, 24, 0.4);
    position: relative;
    line-height: 1.2;
}

.logo-text sup {
    font-size: 11px;
    position: absolute;
    top: -3px;
    right: -10px;
    font-weight: 400;
}

.logo-tagline {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 12px;
    opacity: 0.8;
}

.logo-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cd1c18 0%, #cd1c18 100%);
    margin-top: 6px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(205, 28, 24, 0.5);
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    gap: 5px;
    transition: transform 0.2s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

.hamburger-menu:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.hamburger-menu:hover .hamburger-line {
    background-color: #cd1c18;
    box-shadow: 0 0 8px rgba(205, 28, 24, 0.5);
}

.hamburger-menu.active .hamburger-line {
    background-color: #cd1c18;
    box-shadow: 0 0 10px rgba(205, 28, 24, 0.6);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Links */
.nav-links {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-wrap: nowrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #cd1c18;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #cd1c18;
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #cd1c18;
}

.nav-link.active::after {
    width: 100%;
    background-color: #cd1c18;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-link:hover .dropdown-arrow {
    transform: translateY(2px);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.05);
    background-color: #cd1c18;
    box-shadow: 0 4px 12px rgba(205, 28, 24, 0.4);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-personal {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-personal:hover {
    background-color: #ffffff;
    color: #2c2c2c;
}

.btn-callback {
    background-color: #e0e0e0;
    border: none;
    color: #2c2c2c;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-callback:hover {
    background-color: #d0d0d0;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 2px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.lang-option {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 14px;
    border-radius: 4px;
    min-width: 45px;
    text-align: center;
}

.lang-option.active {
    background-color: #cd1c18;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(205, 28, 24, 0.3);
}

.lang-option:not(.active) {
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

.lang-option:not(.active):hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .navbar-container {
        gap: 40px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .logo-image {
        height: 75px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 18px 30px;
    }
    
    .navbar-container {
        gap: 25px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 12px;
        letter-spacing: 0.6px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 968px) {
    .navbar {
        padding: 15px 25px;
    }
    
    .navbar-container {
        flex-wrap: wrap;
        gap: 20px;
        position: relative;
    }
    
    .hamburger-menu {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    
    .logo-name {
        font-size: 20px;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .navbar::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }
    
    .navbar.navbar-menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    .nav-links {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
        padding: 20px 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(205, 28, 24, 0.2);
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        position: relative;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
        max-height: 500px;
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        text-align: left;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(205, 28, 24, 0.1);
        padding-left: 25px;
        color: #cd1c18;
    }
    
    .social-icons {
        order: 3;
        gap: 10px;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
    }
    
    .language-selector {
        order: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 12px 20px;
    }
    
    .navbar-container {
        gap: 15px;
    }
    
    .hamburger-menu {
        width: 28px;
        height: 28px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-image {
        height: 65px;
    }
    
    .nav-links {
        margin-top: 15px;
        padding: 15px 0;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 12px 20px;
        letter-spacing: 0.5px;
    }
    
    .social-icons {
        gap: 8px;
        margin-right: 10px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .language-selector {
        gap: 2px;
        padding: 2px;
    }
    
    .lang-option {
        font-size: 11px;
        padding: 6px 10px;
        min-width: 38px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.4)),
        radial-gradient(circle at 20% 50%, rgba(205, 28, 24, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-menu {
    position: absolute;
    bottom: 40px;
    right: var(--content-padding);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
    min-width: 220px;
}

.menu-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 6px;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    border-radius: 10px;
}

.menu-link-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-link-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.menu-link:hover {
    color: #cd1c18;
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.05);
}

.menu-link:hover .menu-link-icon {
    border-color: rgba(205, 28, 24, 0.7);
    background: rgba(205, 28, 24, 0.15);
}

/* Contact Info Boxes (Top Right) */
.contact-info {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.contact-box {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.contact-email {
    background-color: #cd1c18;
}

.contact-phone {
    background-color: #4CAF50;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--content-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 500px;
    padding-top: 80px;
    padding-bottom: 60px;
}

/* Hero Headline */
.hero-headline {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    color: #ffffff;
}

.brand-name {
    color: #cd1c18;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.btn-catalog {
    background-color: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-catalog:hover {
    background-color: #1a1a1a;
    border-color: #cd1c18;
}

.btn-technologist {
    background-color: #ffffff;
    border: none;
    color: #000000;
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-technologist:hover {
    background-color: #f0f0f0;
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 60px;
    }
    
    .contact-info {
        top: 20px;
        right: 20px;
    }
    
    .hero-menu {
        right: 20px;
        bottom: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-slide {
        background-attachment: scroll;
    }
    
    .hero-headline {
        font-size: 44px;
        letter-spacing: 1px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn-catalog,
    .btn-technologist {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-info {
        top: 15px;
        right: 15px;
    }
    
    .contact-box {
        font-size: 11px;
        padding: 10px 15px;
    }

    .hero-menu {
        right: 15px;
        bottom: 20px;
        padding: 14px 16px;
        min-width: 200px;
    }
    
}

/* Catalog Section */
.catalog-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    padding: 0;
}

/* Catalog Navigation */
.catalog-nav {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    padding: 25px var(--content-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

.catalog-nav-buttons {
    display: flex;
    gap: 0;
    background-color: #2a2a2a;
    padding: 6px;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.catalog-nav-btn {
    background-color: transparent;
    border: none;
    color: #b0b0b0;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

.catalog-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #cd1c18 0%, #cd1c18 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.catalog-nav-btn.active {
    background-color: #2a2a2a;
    color: #ffffff;
    box-shadow: none;
    font-weight: 600;
}

.catalog-nav-btn.active::before {
    opacity: 0;
}

.catalog-nav-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-1px);
}

.catalog-nav-btn:active {
    transform: translateY(0);
}

.catalog-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.catalog-contact-box {
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.catalog-contact-email {
    background-color: #cd1c18;
}

.catalog-contact-phone {
    background-color: #4CAF50;
}

/* Catalog Content */
.catalog-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px var(--content-padding) 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.catalog-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: flex-start;
}

.catalog-heading {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 50px 0;
    position: relative;
    padding-bottom: 30px;
    line-height: 1.2;
}

.catalog-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, #cd1c18 0%, #cd1c18 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(205, 28, 24, 0.3), 0 0 25px rgba(205, 28, 24, 0.15);
    animation: underlineExpand 0.6s ease-out 0.3s forwards;
}

.catalog-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.2px;
}

.catalog-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.catalog-product-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1.75;
    text-align: left;
    margin: 0;
    letter-spacing: 0.2px;
    max-width: 100%;
}

/* Product Cards */
.product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--content-padding) 30px;
}

.product-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-flavouring {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('public/images/products/Oleoresins.png') center/cover;
}

.card-marinades {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('public/images/products/Nutraceuticals.png') center/cover;
}

.card-sausages {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('public/images/products/Herbal-Extracts.png') center/cover;
}

.card-spices {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('public/images/products/essential-oil.png') center/cover;
}

.card-additives {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=800&h=400&fit=crop') center/cover;
}

.card-mixtures {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1466637574441-749b8f19452f?w=800&h=400&fit=crop') center/cover;
}

.card-poultry {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1604503468506-a8da13d82791?w=800&h=400&fit=crop') center/cover;
}

.card-fish {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1544943910-04c54f7b7762?w=800&h=400&fit=crop') center/cover;
}

.card-meat {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1600891964092-4316c288032e?w=800&h=400&fit=crop') center/cover;
}

.card-horeca {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=800&h=400&fit=crop') center/cover;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.card-arrow {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsive Catalog Section */
@media (max-width: 1200px) {
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .catalog-right {
        padding-top: 0;
    }
    
    .catalog-nav {
        padding: 20px 30px;
    }
    
    .catalog-nav-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .catalog-nav {
        padding: 15px 20px;
    }
    
    .catalog-nav-buttons {
        flex-wrap: wrap;
        padding: 4px;
        gap: 4px;
    }
    
    .catalog-nav-btn {
        padding: 10px 14px;
        font-size: 11px;
        letter-spacing: 0.4px;
        flex: 1;
        min-width: calc(50% - 2px);
    }
    
    .catalog-content {
        padding: 20px 20px 20px 20px;
    }
    
    .catalog-heading {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .catalog-heading::after {
        width: 80px;
        height: 4px;
    }
    
    .product-cards {
        padding: 0 20px 20px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .card-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Pure Oleoresins Section */
.oleoresins-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    min-height: 100vh;
    padding: 120px 60px 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.oleoresins-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.oleoresins-header {
    text-align: center;
    margin-bottom: 60px;
}

.oleoresins-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.oleoresins-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1.75;
    margin: 0;
    letter-spacing: 0.3px;
}

.oleoresins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.oleoresin-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.oleoresin-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(214, 7, 7, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.oleoresin-image-wrapper {
    width: 250px;
    height: 250px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.oleoresin-item:hover .oleoresin-image-wrapper {
    transform: scale(1.05);
}

.oleoresin-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.oleoresin-name {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Oleoresins Section */
@media (max-width: 1200px) {
    .oleoresins-section {
        padding: 100px 40px 60px;
    }
    
    .oleoresins-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .oleoresins-section {
        padding: 80px 20px 40px;
    }
    
    .oleoresins-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .oleoresins-description {
        font-size: 16px;
    }
    
    .oleoresins-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .oleoresin-item {
        min-height: 280px;
        padding: 25px 15px;
    }
    
    .oleoresin-image-wrapper {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }
    
    .oleoresin-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .oleoresins-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .oleoresin-item {
        min-height: 260px;
    }
    
    .oleoresin-image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .oleoresin-name {
        font-size: 16px;
    }
}

/* About The Company Section */
.about-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    min-height: auto;
    padding: 60px 0 40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(205, 28, 24, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 75%, rgba(205, 28, 24, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, rgba(205, 28, 24, 0.01) 0%, transparent 50%);
    pointer-events: none;
    animation: subtleGlow 12s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

/* About Contact Info Boxes (Top Right) */
.about-contact-info {
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.about-contact-box {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-contact-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-contact-email {
    background-color: #cd1c18;
}

.about-contact-phone {
    background-color: #4CAF50;
}

/* About Content */
/* About Content */
.about-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--content-padding);
    position: relative;
    z-index: 5;
    animation: fadeInContent 0.6s ease-out;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-heading {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 50px 0;
    position: relative;
    padding-bottom: 30px;
    line-height: 1.2;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, #cd1c18 0%, #cd1c18 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(205, 28, 24, 0.3), 0 0 25px rgba(205, 28, 24, 0.15);
    animation: underlineExpand 0.6s ease-out 0.3s forwards;
}

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 140px;
        opacity: 1;
    }
}

.about-intro {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #e8e8e8;
    line-height: 1.9;
    margin: 0 0 30px 0;
    text-align: left;
    max-width: 1100px;
    letter-spacing: 0.2px;
    padding: 45px 55px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
        rgba(255, 255, 255, 0.03);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%) 1;
    border-radius: 16px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(205, 28, 24, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-know-more-link {
    font-family: 'Inter', sans-serif;
    color: #cd1c18 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 19px;
    display: inline;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.about-know-more-link:hover {
    color: #ff2d2d !important;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(205, 28, 24, 0.5);
}

.about-intro:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%),
        rgba(255, 255, 255, 0.05);
    transform: translateX(3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(205, 28, 24, 0.1);
}

.about-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0 0 60px 0;
    position: relative;
    padding-left: 40px;
    display: inline-block;
}

.about-subheading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 45px;
    background: linear-gradient(180deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%);
    border-radius: 3px;
    box-shadow: 
        0 0 12px rgba(205, 28, 24, 0.4),
        0 0 25px rgba(205, 28, 24, 0.2);
    animation: verticalLine 0.6s ease-out 0.2s backwards;
}

@keyframes verticalLine {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 40px;
        opacity: 1;
    }
}

.about-facts-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin: 0 0 80px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: fact-counter;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-facts-list li {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%),
        rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(205, 28, 24, 0.2);
    border-radius: 20px;
    padding: 40px 40px;
    position: relative;
    counter-increment: fact-counter;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.2px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(205, 28, 24, 0.05);
    overflow: hidden;
}

.about-facts-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 28, 24, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-facts-list li:hover::after {
    left: 100%;
}

.about-facts-list li:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        rgba(255, 255, 255, 0.06);
    border-color: rgba(205, 28, 24, 0.4);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 45px rgba(205, 28, 24, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(205, 28, 24, 0.1);
}

.about-infrastructure-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    padding: 60px 60px;
    position: relative;
}

.infrastructure-image-wrapper {
    margin: 0 0 60px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(205, 28, 24, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 800px;
    margin-left: auto;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 20px;
    margin-right: auto;
}

.infrastructure-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(205, 28, 24, 0.15);
}

.infrastructure-image {
    width: 100%;
    max-height: 400px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}


.about-facts-list li strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.about-facts-list li p {
    margin: 0;
    color: #d8d8d8;
    line-height: 1.75;
    font-size: 15.5px;
}

.btn-more-details {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border: 2px solid rgba(205, 28, 24, 0.3);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px 65px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-more-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-more-details::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) translateX(5px);
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-more-details:hover {
    color: #ffffff;
    border-color: rgba(205, 28, 24, 0.25);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 35px rgba(205, 28, 24, 0.3),
        0 5px 18px rgba(205, 28, 24, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-more-details:hover::before {
    left: 0;
}

.btn-more-details:hover::after {
    width: 20px;
    background: #ffffff;
}

.btn-more-details:active {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(205, 28, 24, 0.4),
        0 4px 15px rgba(205, 28, 24, 0.2);
}

/* Responsive About Section */
@media (max-width: 1200px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        padding: 0 var(--content-padding);
    }
    
    .about-contact-info {
        top: 30px;
        right: 40px;
    }
    
    .about-heading {
        font-size: 48px;
        letter-spacing: 2.5px;
    }
    
    .about-intro {
        font-size: 19px;
        padding: 25px 35px;
    }
    
    .about-subheading {
        font-size: 26px;
    }
    
    .about-facts-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-facts-list li {
        font-size: 15px;
    }
    
    .about-facts-list li strong {
        font-size: 19px;
    }
    
    .about-facts-list li p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .about-content {
        padding: 0 var(--content-padding);
    }
    
    .about-contact-info {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 35px;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .about-contact-box {
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .about-heading {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .about-heading::after {
        width: 80px;
        height: 4px;
    }
    
    .about-intro {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 40px;
        padding: 20px 25px;
        border-left-width: 3px;
    }
    
    .about-subheading {
        font-size: 22px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
        padding-left: 15px;
    }
    
    .about-subheading::before {
        width: 4px;
        height: 24px;
    }
    
    .about-facts-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .about-facts-list li {
        padding: 30px 25px;
        font-size: 15px;
        line-height: 1.7;
    }
    
    .about-facts-list li strong {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .about-facts-list li p {
        font-size: 14px;
    }
    
    .infrastructure-image-wrapper {
        margin-bottom: 40px;
    }
    
    .btn-more-details {
        width: 100%;
        max-width: 100%;
        padding: 16px 40px;
        font-size: 14px;
        letter-spacing: 1.2px;
    }
}

/* Statistics Section */
.statistics-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
        url('BG-img-exp-part.jpg') center/cover;
    background-attachment: fixed;
    padding: 50px 50px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    pointer-events: none;
}

.statistics-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUpStat 0.6s ease forwards;
    min-height: 150px;
    height: 100%;
    position: relative;
    overflow: visible;
}


.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

@keyframes fadeInUpStat {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
    display: inline-block;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-number {
    transform: scale(1.02);
}

.stat-tilde {
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    display: inline-block;
    margin-right: 4px;
}


.stat-unit,
.stat-plus {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
    vertical-align: baseline;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-unit,
.stat-item:hover .stat-plus {
    transform: scale(1.02);
}

.stat-unit sup {
    font-size: 22px;
    vertical-align: super;
    font-weight: 600;
}

.stat-separator {
    width: 80px;
    height: 1px;
    background: #ffffff;
    margin: 20px 0;
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-separator {
    width: 100px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:nth-child(3) .stat-label {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.4;
}

/* Responsive Statistics Section */
@media (max-width: 1200px) {
    .statistics-section {
        padding: 40px 40px;
    }
    
    .statistics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
        min-height: 140px;
    }
    
    .stat-number {
        font-size: 64px;
    }
    
    .stat-tilde {
        font-size: 64px;
    }
    
    .stat-unit,
    .stat-plus {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 35px 25px;
    }
    
    .statistics-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
        min-height: 130px;
    }
    
    .stat-item:nth-child(3) .stat-label {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-tilde {
        font-size: 56px;
    }
    
    .stat-unit,
    .stat-plus {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .stat-separator {
        width: 60px;
    }
}

/* Our Advantages Section */
.advantages-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    padding: 80px 0 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Advantages Contact Info Boxes (Top Right) */
.advantages-contact-info {
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.advantages-contact-box {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    border-radius: 4px;
}

.advantages-contact-email {
    background-color: #cd1c18;
}

.advantages-contact-phone {
    background-color: #4CAF50;
}

/* Advantages Header */
.advantages-header {
    margin-bottom: 60px;
    max-width: 1400px;
    padding: 0 var(--content-padding);
}

.advantages-heading {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 50px 0;
    position: relative;
    padding-bottom: 30px;
    line-height: 1.2;
}

.advantages-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, #cd1c18 0%, #cd1c18 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(205, 28, 24, 0.3), 0 0 25px rgba(205, 28, 24, 0.15);
    animation: underlineExpand 0.6s ease-out 0.3s forwards;
}

.advantages-heading-part1 {
    background: linear-gradient(135deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-heading-part2 {
    background: linear-gradient(135deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-intro {
    font-size: 18px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

.advantages-grid .advantage-card:nth-child(4) {
    grid-column: 1;
}

.advantages-grid .advantage-card:nth-child(5) {
    grid-column: 2;
    justify-self: start;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.advantage-description {
    font-size: 16px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Responsive Advantages Section */
@media (max-width: 1200px) {
    .advantages-section {
        padding: 70px 0 20px 0;
    }
    
    .advantages-header {
        padding: 0 40px;
    }
    
    .advantages-grid {
        padding: 0 40px;
    }
    
    .advantages-contact-info {
        top: 30px;
        right: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }
    
    .advantages-heading {
        font-size: 48px;
        letter-spacing: 2.5px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 50px 0 15px 0;
    }
    
    .advantages-header {
        padding: 0 25px;
    }
    
    .advantages-grid {
        padding: 0 25px;
    }
    
    .advantages-contact-info {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 35px;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .advantages-contact-box {
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .advantages-header {
        margin-bottom: 40px;
    }
    
    .advantages-heading {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .advantages-heading::after {
        width: 80px;
        height: 4px;
    }
    
    .advantages-intro {
        font-size: 16px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantage-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .advantage-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .advantage-description {
        font-size: 15px;
    }
}

/* Certifications & Registrations Section */
.certifications-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    padding: 100px 0 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(205, 28, 24, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 75%, rgba(205, 28, 24, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.certifications-container {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

.certifications-header {
    margin-bottom: 40px;
    max-width: 1400px;
    padding: 0 var(--content-padding);
}

.certifications-heading {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #cd1c18 0%, #cd1c18 50%, #cd1c18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 50px 0;
    position: relative;
    padding-bottom: 30px;
    line-height: 1.2;
}

.certifications-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, #cd1c18 0%, #cd1c18 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(205, 28, 24, 0.3), 0 0 25px rgba(205, 28, 24, 0.15);
    animation: underlineExpand 0.6s ease-out 0.3s forwards;
}

.certifications-intro {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.3px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

.certification-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%),
        rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(205, 28, 24, 0.2);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(205, 28, 24, 0.05);
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 28, 24, 0.1), transparent);
    transition: left 0.6s ease;
}

.certification-card:hover::before {
    left: 100%;
}

.certification-card:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        rgba(255, 255, 255, 0.06);
    border-color: rgba(205, 28, 24, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 15px 45px rgba(205, 28, 24, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(205, 28, 24, 0.1);
}

.certification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: #cd1c18;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(205, 28, 24, 0.15) 0%, rgba(205, 28, 24, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(205, 28, 24, 0.3);
    transition: all 0.3s ease;
}

.certification-card:hover .certification-icon {
    transform: scale(1.1);
    border-color: rgba(205, 28, 24, 0.5);
    box-shadow: 0 0 20px rgba(205, 28, 24, 0.3);
}

.certification-icon svg {
    width: 48px;
    height: 48px;
    stroke: #cd1c18;
}

.certification-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.certification-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Responsive Certifications Section */
@media (max-width: 1200px) {
    .certifications-section {
        padding: 80px 0 35px 0;
    }
    
    .certifications-container {
        padding: 0 40px;
    }
    
    .certifications-header {
        padding: 0 40px;
    }
    
    .certifications-grid {
        padding: 0 40px;
    }
    
    .certifications-heading {
        font-size: 48px;
        letter-spacing: 2.5px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .certifications-section {
        padding: 60px 0 25px 0;
    }
    
    .certifications-container {
        padding: 0 25px;
    }
    
    .certifications-header {
        margin-bottom: 30px;
        padding: 0 25px;
    }
    
    .certifications-heading {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .certifications-heading::after {
        width: 80px;
        height: 4px;
    }
    
    .certifications-intro {
        font-size: 16px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 25px;
    }
    
    .certification-card {
        padding: 35px 25px;
    }
    
    .certification-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .certification-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .certification-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .certification-description {
        font-size: 14px;
    }
}

/* Technologist Consultation Section */
.technologist-section {
    position: relative;
    width: 100%;
}

/* Technologist Contact Info Boxes (Top Right) */
.technologist-contact-info {
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.technologist-contact-box {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    border-radius: 4px;
}

.technologist-contact-email {
    background-color: #cd1c18;
}

.technologist-contact-phone {
    background-color: #4CAF50;
}

/* Top Sub-Section */
.technologist-top {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.technologist-top-left {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.technologist-top-content {
    max-width: 600px;
    width: 100%;
}

.technologist-top-right {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.technologist-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.technologist-top-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 30px 0;
    text-align: center;
    line-height: 1.2;
}

.technologist-top-description {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin: 0 0 40px 0;
    text-align: left;
    letter-spacing: 0.3px;
}

.btn-technologist-consultation {
    background-color: #ffffff;
    border: none;
    color: #2c2c2c;
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.btn-technologist-consultation:hover {
    background-color: #cd1c18;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 28, 24, 0.4);
}

.btn-technologist-consultation:active {
    transform: translateY(0);
}

/* Bottom Sub-Section */
.technologist-bottom {
    background-color: #363636;
    padding: 80px 50px;
    width: 100%;
}

.technologist-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.technologist-bottom-left {
    display: flex;
    align-items: center;
}

.technologist-bottom-title {
    font-size: 68px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.1;
}

.technologist-title-orange {
    color: #cd1c18;
}

.technologist-title-white {
    color: #ffffff;
}

.technologist-bottom-right {
    display: flex;
    align-items: center;
}

.technologist-bottom-description {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    text-align: left;
    letter-spacing: 0.3px;
}

/* Responsive Technologist Section */
@media (max-width: 1200px) {
    .technologist-contact-info {
        top: 30px;
        right: 40px;
    }
    
    .technologist-top {
        padding: 70px 40px 50px;
    }
    
    .technologist-top-title {
        font-size: 28px;
    }
    
    .technologist-top-description {
        font-size: 17px;
    }
    
    .technologist-bottom {
        padding: 70px 40px;
    }
    
    .technologist-bottom-container {
        gap: 50px;
    }
    
    .technologist-bottom-title {
        font-size: 56px;
    }
    
    .technologist-bottom-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .technologist-contact-info {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 30px;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 0 25px;
    }
    
    .technologist-contact-box {
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .technologist-top {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .technologist-top-left {
        padding: 50px 30px;
    }
    
    .technologist-top-right {
        min-height: 300px;
    }
    
    .technologist-top-title {
        font-size: 28px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .technologist-top-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn-technologist-consultation {
        width: 100%;
        max-width: 100%;
        padding: 16px 35px;
        font-size: 14px;
    }
    
    .technologist-bottom {
        padding: 50px 25px;
    }
    
    .technologist-bottom-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .technologist-bottom-title {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .technologist-bottom-description {
        font-size: 17px;
    }
}

/* Testimonial/Quote Section */
.testimonial-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.75)),
        url("Testimonial.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px var(--content-padding);
    overflow: hidden;
}

/* Testimonial Contact Phone Box (Top Right) */
.testimonial-contact-info {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 10;
}

.testimonial-contact-box {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    border-radius: 4px;
}

.testimonial-contact-phone {
    background-color: #4CAF50;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.testimonial-text {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-profile {
    margin-bottom: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(205, 28, 24, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(205, 28, 24, 0.3);
}

.testimonial-profile-image {
    width: clamp(220px, 25vw, 320px);
    aspect-ratio: 3 / 4;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    filter: brightness(1.05) contrast(1.05);
}

.testimonial-quote {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.4px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: rgba(205, 28, 24, 0.4);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-attribution {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 20px;
    border-top: 2px solid rgba(205, 28, 24, 0.3);
    width: 100%;
}

.testimonial-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.2px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-title {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.6px;
    margin: 0;
    font-style: italic;
}

/* Responsive Testimonial Section */
@media (max-width: 1200px) {
    .testimonial-section {
        min-height: 400px;
        padding: 50px var(--content-padding);
    }
    
    .testimonial-contact-info {
        top: 30px;
        right: 40px;
    }
    
    .testimonial-profile-image {
        width: clamp(200px, 40vw, 260px);
    }
    
    .testimonial-quote {
        font-size: 22px;
        padding-left: 25px;
    }
    
    .testimonial-quote::before {
        font-size: 50px;
    }
    
    .testimonial-text {
        padding: 30px;
    }
    
    .testimonial-name {
        font-size: 24px;
    }
    
    .testimonial-title {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .testimonial-text {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .testimonial-quote {
        padding-left: 0;
        text-align: center;
    }
    
    .testimonial-quote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }
    
    .testimonial-attribution {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        min-height: 380px;
        padding: 50px 25px;
        background-attachment: scroll;
    }
    
    .testimonial-contact-info {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }
    
    .testimonial-contact-box {
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .testimonial-content {
        gap: 20px;
    }
    
    .testimonial-profile-image {
        width: min(260px, 80vw);
    }
    
    .testimonial-text {
        padding: 25px;
        gap: 20px;
    }
    
    .testimonial-quote {
        font-size: 18px;
        line-height: 1.7;
        padding-left: 20px;
    }
    
    .testimonial-quote::before {
        font-size: 40px;
        top: -5px;
    }
    
    .testimonial-name {
        font-size: 22px;
    }
    
    .testimonial-title {
        font-size: 15px;
    }
    
    .testimonial-attribution {
        padding-top: 15px;
    }
}

/* Catalog CTA Section */
.catalog-cta-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('Product catalog-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    overflow: hidden;
}

/* Catalog CTA Contact Info Boxes (Top Right) */
.catalog-cta-contact-info {
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.catalog-cta-contact-box {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    border-radius: 4px;
}

.catalog-cta-contact-email {
    background-color: #cd1c18;
}

.catalog-cta-contact-phone {
    background-color: #4CAF50;
}

/* Catalog CTA Content */
.catalog-cta-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    text-align: left;
}

.catalog-cta-heading {
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.catalog-cta-heading-white {
    color: #ffffff;
}

.catalog-cta-heading-orange {
    color: #cd1c18;
}

.catalog-cta-description {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 40px 0;
    letter-spacing: 0.3px;
    max-width: 700px;
}

.catalog-cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-catalog-cta-orange {
    background-color: #cd1c18;
    border: none;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-catalog-cta-orange:hover {
    background-color: #cd1c18;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 28, 24, 0.4);
}

.btn-catalog-cta-white {
    background-color: #ffffff;
    border: none;
    color: #2c2c2c;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-catalog-cta-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Telegram Subscription Section */
.subscription-section {
    background-color: #e5e5e5;
    padding: 80px 50px;
    width: 100%;
}

.subscription-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.subscription-heading {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.subscription-heading-orange {
    color: #cd1c18;
}

.subscription-heading-black {
    color: #2c2c2c;
}

.subscription-description {
    font-size: 18px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.7;
    margin: 0 0 40px 0;
    letter-spacing: 0.3px;
    max-width: 700px;
}

.subscription-button-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-subscribe {
    background-color: #ffffff;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-subscribe:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.subscription-arrow {
    color: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription-arrow svg {
    width: 60px;
    height: 60px;
}

/* Responsive Catalog CTA Section */
@media (max-width: 1200px) {
    .catalog-cta-section {
        min-height: 500px;
        padding: 70px 40px;
    }
    
    .catalog-cta-contact-info {
        top: 30px;
        right: 40px;
    }
    
    .catalog-cta-heading {
        font-size: 46px;
    }
    
    .catalog-cta-description {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .catalog-cta-section {
        min-height: 450px;
        padding: 60px 25px;
    }
    
    .catalog-cta-contact-info {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 30px;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .catalog-cta-contact-box {
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .catalog-cta-heading {
        font-size: 36px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .catalog-cta-description {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .catalog-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-catalog-cta-orange,
    .btn-catalog-cta-white {
        width: 100%;
        max-width: 320px;
    }
}

/* Responsive Subscription Section */
@media (max-width: 1200px) {
    .subscription-section {
        padding: 70px 40px;
    }
    
    .subscription-heading {
        font-size: 42px;
    }
    
    .subscription-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .subscription-section {
        padding: 60px 25px;
    }
    
    .subscription-heading {
        font-size: 36px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .subscription-description {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .subscription-button-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-subscribe {
        width: 100%;
        max-width: 320px;
    }
    
    .subscription-arrow {
        display: none;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    padding: 50px var(--content-padding) 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(205, 28, 24, 0.1);
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(205, 28, 24, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(205, 28, 24, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(205, 28, 24, 0.3) 50%, transparent 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    position: relative;
    z-index: 5;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-image {
    max-height: 120px;
    width: auto;
    display: block;
}

.footer-logo-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, #cd1c18 0%, #cd1c18 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(205, 28, 24, 0.5);
}

.footer-logo-box {
    background-color: #000000;
    padding: 14px 20px;
    position: relative;
    border: none;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.footer-logo-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 28, 24, 0.3);
}

.footer-logo-line-top,
.footer-logo-line-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #cd1c18 0%, #cd1c18 100%);
    box-shadow: 0 0 10px rgba(205, 28, 24, 0.5);
}

.footer-logo-line-top {
    top: 0;
    border-radius: 4px 4px 0 0;
}

.footer-logo-line-bottom {
    bottom: 0;
    border-radius: 0 0 4px 4px;
}

.footer-logo-text {
    font-family: inherit;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    text-shadow: 0 0 15px rgba(205, 28, 24, 0.5);
}

.footer-logo-text sup {
    font-size: 11px;
    position: absolute;
    top: -3px;
    right: -14px;
}

/* Footer Company Column */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-tagline {
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.3px;
    opacity: 0.95;
}

.footer-phone {
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin-top: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-phone:hover {
    filter: brightness(1.2);
}

.footer-email {
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.footer-contact-link:hover {
    color: #cd1c18;
    text-shadow: 0 0 10px rgba(205, 28, 24, 0.5);
}

.footer-email:hover {
    color: #cd1c18;
    text-shadow: 0 0 10px rgba(205, 28, 24, 0.5);
}

.footer-address {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 0;
    opacity: 0.9;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-link {
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-legal-link::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #cd1c18;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffffff;
    padding-left: 18px;
}

.footer-legal-link:hover::before {
    opacity: 1;
}

/* Footer Columns (Navigation, Products, Services) */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column:not(.footer-company) {
    padding-top: 5px;
}

.footer-column:not(.footer-company)::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #cd1c18;
    margin-bottom: 10px;
    border-radius: 0;
    display: block;
}

.footer-column-heading {
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.3px;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-heading,
.footer-products-heading {
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    position: relative;
}

.footer-nav-heading::before,
.footer-products-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #cd1c18 0%, rgba(205, 28, 24, 0.5) 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(205, 28, 24, 0.4);
}

.footer-link {
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.5;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #cd1c18 0%, #cd1c18 100%);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-link:hover::after {
    width: 100%;
}

/* Footer Social Media Icons */
.footer-social {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-section {
        padding: 40px 40px 30px;
    }
    
    .footer-container {
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: 35px;
    }
    
    .footer-social {
        margin-top: 12px;
    }
}

@media (max-width: 968px) {
    .footer-section {
        padding: 35px 40px 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 25px;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
    
    .footer-social {
        margin-top: 12px;
        justify-content: flex-start;
    }
    
    .footer-phone {
        font-size: 20px;
    }
    
    .footer-email {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 30px 25px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-phone {
        font-size: 16px;
    }
    
    .footer-email {
        font-size: 16px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-social {
        margin-top: 12px;
        justify-content: flex-start;
    }
    
    .footer-social-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-column:not(.footer-company)::before {
        width: 100%;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    /* Navbar */
    .navbar {
        padding: 15px 15px;
    }
    
    .navbar-container {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hamburger-menu {
        width: 26px;
        height: 26px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    .logo-image {
        height: 75px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .nav-links {
        order: 4;
        width: 100%;
        margin-top: 15px;
        padding: 15px 0;
    }
    
    .nav-link {
        font-size: 13px;
        letter-spacing: 0.5px;
        padding: 12px 15px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .language-selector {
        gap: 1px;
        padding: 3px;
    }
    
    .lang-option {
        font-size: 11px;
        padding: 6px 10px;
        min-width: 40px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }
    
    .hero-headline {
        font-size: 28px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-catalog,
    .btn-technologist {
        width: 100%;
        padding: 12px 20px;
        font-size: 11px;
    }
    
    /* Catalog Navigation */
    .catalog-nav {
        padding: 12px 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .catalog-nav-buttons {
        flex-wrap: nowrap;
        min-width: max-content;
    }
    
    .catalog-nav-btn {
        padding: 8px 12px;
        font-size: 10px;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }
    
    .catalog-heading {
        font-size: 30px;
        letter-spacing: 1.5px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .catalog-heading::after {
        width: 60px;
        height: 3px;
    }
    
    .catalog-description,
    .catalog-product-text {
        font-size: 14px;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px 15px;
    }
    
    .product-card {
        height: 280px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-arrow {
        width: 36px;
        height: 36px;
    }
    
    /* About Section */
    .about-section {
        padding: 40px 15px;
    }
    
    .about-heading {
        font-size: 30px;
        letter-spacing: 1.5px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .about-heading::after {
        width: 60px;
        height: 3px;
    }
    
    .about-intro {
        font-size: 15px;
        padding: 18px 20px;
        margin-bottom: 30px;
    }
    
    .about-subheading {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .about-facts-list li {
        padding: 25px 20px;
        font-size: 14px;
    }
    
    .about-facts-list li strong {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .about-facts-list li p {
        font-size: 13px;
    }
    
    .infrastructure-image-wrapper {
        margin-bottom: 30px;
    }
    
    .btn-more-details {
        width: 100%;
        padding: 14px 30px;
        font-size: 13px;
    }
    
    /* Statistics */
    .statistics-section {
        padding: 30px 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
        min-height: 120px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-unit,
    .stat-plus {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    /* Advantages */
    .advantages-section {
        padding: 50px 15px 15px 15px;
    }
    
    .advantages-heading {
        font-size: 30px;
        letter-spacing: 1.5px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .advantages-heading::after {
        width: 60px;
        height: 3px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Technologist Section */
    .technologist-top {
        padding: 40px 15px 30px;
        background-attachment: scroll;
    }
    
    .technologist-top-title {
        font-size: 20px;
    }
    
    .technologist-bottom-title {
        font-size: 32px;
    }
    
    /* Testimonial */
    .testimonial-section {
        padding: 50px 15px;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .testimonial-quote {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .testimonial-name {
        font-size: 20px;
    }
    
    /* Footer */
    .footer-section {
        padding: 40px 15px 30px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-logo-text {
        font-size: 18px;
    }
    
    .footer-phone {
        font-size: 20px;
    }
    
    .footer-email {
        font-size: 14px;
    }
    
    .footer-address {
        font-size: 12px;
    }
}

/* Small Devices (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .navbar {
        padding: 18px 20px;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .catalog-nav-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 52px;
    }
    
    /* About Company Page */
    .page-contact-info {
        margin-right: 20px;
        margin-top: 65px;
    }
    
    .about-hero-heading {
        font-size: 32px;
    }
    
    .about-content-section,
    .features-grid-section,
    .about-advantages-section,
    .about-products-section,
    .history-section {
        padding: 60px 25px;
    }
    
    .about-content-row {
        gap: 35px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .about-products-content {
        grid-template-columns: 1fr;
    }
    
    .history-row {
        grid-template-columns: 1fr;
    }
}

/* Medium Devices (641px - 768px) - Enhanced */
@media (min-width: 641px) and (max-width: 768px) {
    .navbar-container {
        gap: 25px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .hero-headline {
        font-size: 40px;
    }
    
    .catalog-nav {
        padding: 18px 25px;
    }
    
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .statistics-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Company Page */
    .page-contact-info {
        margin-right: 25px;
        margin-top: 65px;
    }
    
    .about-hero-heading {
        font-size: 38px;
    }
    
    .about-content-section,
    .features-grid-section,
    .about-advantages-section,
    .about-products-section,
    .history-section {
        padding: 60px 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .about-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-products-content {
        grid-template-columns: 1fr;
    }
}

/* Large Tablets (769px - 968px) */
@media (min-width: 769px) and (max-width: 968px) {
    .navbar-container {
        gap: 35px;
    }
    
    .nav-link {
        font-size: 12px;
        letter-spacing: 0.6px;
    }
    
    .hero-headline {
        font-size: 44px;
    }
    
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .statistics-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Company Page */
    .about-hero-heading {
        font-size: 48px;
    }
    
    .about-content-section,
    .features-grid-section,
    .about-advantages-section,
    .about-products-section,
    .history-section {
        padding: 70px 35px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-products-content {
        grid-template-columns: 1fr;
    }
    
    .history-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (969px - 1200px) - Enhanced */
@media (min-width: 969px) and (max-width: 1200px) {
    .navbar-container {
        gap: 40px;
    }
    
    .hero-headline {
        font-size: 48px;
    }
    
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Company Page */
    .about-hero-heading {
        font-size: 64px;
    }
    
    .about-content-section,
    .features-grid-section,
    .about-advantages-section,
    .about-products-section,
    .history-section {
        padding: 90px 45px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .about-advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 35px;
    }
    
    .about-products-content {
        gap: 50px;
    }
}

/* Large Desktop (1201px - 1400px) */
@media (min-width: 1201px) and (max-width: 1400px) {
    .navbar-container {
        gap: 45px;
    }
    
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra Large Desktop (1401px+) */
@media (min-width: 1401px) {
    .container,
    .navbar-container,
    .footer-container,
    .statistics-container {
        max-width: 1600px;
    }
    
    /* About Company Page */
    .about-content-wrapper,
    .features-grid-wrapper,
    .about-advantages-wrapper,
    .about-products-wrapper,
    .history-wrapper {
        max-width: 1600px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 350px;
        padding: 30px 20px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .statistics-section {
        padding: 60px 30px;
    }
    
    .statistics-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Company Page */
    .about-hero-section {
        min-height: 50vh;
        margin-top: 0;
        padding-top: 70px;
    }
    
    .about-hero-heading {
        font-size: 32px;
    }
    
    .about-hero-content {
        padding: 0 25px 40px;
    }
    
    .about-content-section,
    .features-grid-section,
    .about-advantages-section,
    .about-products-section,
    .history-section {
        padding: 50px 25px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link {
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .catalog-nav-btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .btn-catalog,
    .btn-technologist,
    .btn-more-details,
    .btn-subscribe,
    .btn-become-partner {
        min-height: 44px;
    }
    
    .social-icon,
    .footer-social-icon {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .nav-link:hover::after {
        width: 0;
    }
    
    .stat-item:hover {
        transform: none;
    }
    
    .feature-block:hover,
    .about-grid-image:hover,
    .about-advantage-card:hover {
        transform: none;
    }
    
    .page-contact-box {
        min-width: 120px;
        min-height: 60px;
    }
    
    .breadcrumbs {
        min-height: 32px;
        padding: 8px 12px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .catalog-nav,
    .footer-section,
    .social-icons,
    .footer-social {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-text,
    .footer-logo-text {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .about-hero-content,
    .about-hero-title,
    .about-hero-subtitle,
    .about-hero-title::after {
        animation: none !important;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Currently using dark theme by default */
    /* Can be expanded if needed */
}

/* ============================================
   ABOUT COMPANY PAGE STYLES
   ============================================ */

/* Page Contact Info Box (Top Right) */
.page-contact-info {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    margin-top: 70px;
    margin-right: 40px;
}

.page-contact-box {
    background-color: #4CAF50;
    border-radius: 4px 4px 8px 0;
    padding: 12px 18px;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-contact-email {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.page-contact-phone {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        radial-gradient(circle at 70% 50%, rgba(205, 28, 24, 0.1) 0%, transparent 50%),
        url('Product catalog-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(205, 28, 24, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 5;
    padding: 0 50px 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    align-self: flex-end;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-heading {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
    max-width: 900px;
    width: 100%;
}

.about-hero-title {
    color: #cd1c18;
    display: block;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 0 30px rgba(205, 28, 24, 0.4),
                 0 0 60px rgba(205, 28, 24, 0.2);
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.about-hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #cd1c18 0%, rgba(205, 28, 24, 0.5) 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(205, 28, 24, 0.6);
    animation: expandLine 1s ease-out 1s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

.about-hero-subtitle {
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5),
                 0 4px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 0.8s ease-out both;
}

.about-hero-subtitle:last-child {
    margin-bottom: 0;
}

.about-hero-subtitle:nth-of-type(1) {
    animation-delay: 0.4s;
}

.about-hero-subtitle:nth-of-type(2) {
    animation-delay: 0.6s;
}

.about-hero-subtitle:nth-of-type(3) {
    animation-delay: 0.8s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Breadcrumbs */
.breadcrumbs {
    position: fixed;
    bottom: 30px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: lowercase;
}

.breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.breadcrumb-link:hover {
    color: #cd1c18;
    opacity: 1;
}

.breadcrumb-separator {
    color: #ffffff;
    opacity: 0.6;
}

.breadcrumb-current {
    color: #cd1c18;
    font-weight: 500;
}

/* Responsive About Company Page */
@media (max-width: 1200px) {
    .page-contact-info {
        margin-right: 30px;
        margin-top: 65px;
    }
    
    .about-hero-section {
        padding-top: 75px;
    }
    
    .about-hero-heading {
        font-size: 58px;
        letter-spacing: 2.5px;
        max-width: 800px;
    }
    
    .about-hero-title {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .about-hero-title::after {
        width: 100px;
    }
    
    .about-hero-subtitle {
        margin-bottom: 8px;
    }
    
    .about-hero-content {
        padding: 0 40px 70px;
    }
    
    .breadcrumbs {
        left: 40px;
        bottom: 25px;
    }
}

@media (max-width: 968px) {
    .action-buttons {
        display: none;
    }
    
    .page-contact-info {
        margin-right: 20px;
        margin-top: 60px;
    }
    
    .page-contact-box {
        padding: 10px 15px;
    }
    
    .page-contact-email,
    .page-contact-phone {
        font-size: 11px;
    }
    
    .about-hero-section {
        min-height: calc(100vh - 70px);
        margin-top: 0;
        padding-top: 70px;
        background-attachment: scroll;
    }
    
    .about-hero-content {
        padding: 0 30px 60px;
    }
    
    .about-hero-heading {
        font-size: 44px;
        letter-spacing: 2px;
        max-width: 100%;
    }
    
    .about-hero-title {
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .about-hero-title::after {
        width: 80px;
    }
    
    .about-hero-subtitle {
        margin-bottom: 5px;
    }
    
    .about-hero-content {
        padding: 0 30px 70px;
    }
    
    .breadcrumbs {
        left: 30px;
        bottom: 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .page-contact-info {
        position: relative;
        margin: 20px 20px 20px auto;
        width: fit-content;
        top: 0;
        right: 0;
    }
    
    .about-hero-section {
        min-height: 70vh;
        margin-top: 0;
        padding-top: 70px;
        background-attachment: scroll;
    }
    
    .about-hero-content {
        padding: 0 25px 50px;
    }
    
    .about-hero-heading {
        font-size: 36px;
        letter-spacing: 1.5px;
        line-height: 1.25;
        max-width: 100%;
    }
    
    .about-hero-title {
        margin-bottom: 14px;
        padding-bottom: 8px;
    }
    
    .about-hero-title::after {
        width: 70px;
    }
    
    .about-hero-subtitle {
        margin-bottom: 4px;
    }
    
    .about-hero-content {
        padding: 0 25px 60px;
    }
    
    .breadcrumbs {
        left: 25px;
        bottom: 15px;
        font-size: 12px;
    }
    
    /* About Content Section Mobile */
    .about-content-row {
        grid-template-columns: 1fr;
    }
    
    .about-content-row:nth-child(2) .about-content-left {
        order: 2;
    }
    
    .about-content-row:nth-child(2) .about-content-right {
        order: 1;
    }
}

@media (max-width: 480px) {
    .page-contact-info {
        margin: 15px 15px 15px auto;
    }
    
    .page-contact-box {
        padding: 8px 12px;
    }
    
    .page-contact-email,
    .page-contact-phone {
        font-size: 10px;
    }
    
    .about-hero-heading {
        font-size: 28px;
        letter-spacing: 1px;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .about-hero-title {
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    .about-hero-title::after {
        width: 60px;
    }
    
    .about-hero-subtitle {
        margin-bottom: 3px;
    }
    
    .about-hero-section {
        min-height: 60vh;
        margin-top: 0;
        padding-top: 70px;
    }
    
    .about-hero-content {
        padding: 0 20px 40px;
    }
    
    .about-hero-heading {
        max-width: 100%;
    }
    
    .breadcrumbs {
        left: 15px;
        bottom: 10px;
        font-size: 11px;
        position: fixed;
        z-index: 100;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 4px;
    }
    
    /* All About Company Sections */
    .about-content-section,
    .features-grid-section,
    .about-advantages-section,
    .about-products-section,
    .history-section {
        padding: 40px 15px;
    }
    
    .footer-section {
        padding: 40px 15px 30px;
    }
    
    .footer-column-heading {
        font-size: 13px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .footer-link {
        font-size: 12px;
    }
}

/* About Content Section */
.about-content-section {
    background-color: #ffffff;
    padding: 100px 50px;
    position: relative;
    z-index: 10;
}

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

.about-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-content-row:last-child {
    margin-bottom: 0;
}

.about-content-left,
.about-content-right {
    display: flex;
    flex-direction: column;
}

.about-content-heading {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 15px;
}

.about-content-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #2c2c2c;
}

.about-content-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0 0 20px 0;
    letter-spacing: 0.2px;
}

.about-content-text-block .about-content-text:last-child {
    margin-bottom: 0;
}

.about-content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

.about-grid-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-grid-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive About Content Section */
@media (max-width: 1200px) {
    .about-content-section {
        padding: 80px 40px;
    }
    
    .about-content-row {
        gap: 50px;
        margin-bottom: 70px;
    }
    
    .about-content-heading {
        font-size: 36px;
    }
    
    .about-content-text {
        font-size: 16px;
    }
    
    .about-grid-image {
        height: 240px;
    }
}

@media (max-width: 968px) {
    .about-content-section {
        padding: 60px 30px;
    }
    
    .about-content-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .about-content-heading {
        font-size: 32px;
        padding-bottom: 12px;
    }
    
    .about-content-heading::after {
        width: 60px;
        height: 2px;
    }
    
    .about-content-text {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .about-image-grid {
        gap: 12px;
    }
    
    .about-grid-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding: 50px 25px;
    }
    
    .about-content-row {
        gap: 35px;
        margin-bottom: 50px;
    }
    
    .about-content-heading {
        font-size: 28px;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
    
    .about-content-heading::after {
        width: 50px;
    }
    
    .about-content-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .about-image-grid {
        gap: 10px;
    }
    
    .about-grid-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .about-content-section {
        padding: 40px 20px;
    }
    
    .about-content-row {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .about-content-heading {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 8px;
        letter-spacing: 1.5px;
    }
    
    .about-content-heading::after {
        width: 40px;
        height: 2px;
    }
    
    .about-content-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-grid-image {
        height: 220px;
    }
}

/* Features Grid Section */
.features-grid-section {
    background-color: #ffffff;
    padding: 100px 50px;
    position: relative;
    z-index: 10;
}

.features-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.feature-block {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px 0;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.2px;
}

.feature-image-block {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

/* Responsive Features Grid Section */
@media (max-width: 1200px) {
    .features-grid-section {
        padding: 80px 40px;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-block {
        padding: 35px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .feature-image {
        min-height: 280px;
    }
}

@media (max-width: 968px) {
    .features-grid-section {
        padding: 60px 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-block {
        padding: 30px;
    }
    
    .feature-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .feature-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .feature-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .features-grid-section {
        padding: 50px 25px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-block {
        padding: 25px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 16px;
        letter-spacing: 1px;
    }
    
    .feature-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .feature-image {
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .features-grid-section {
        padding: 40px 20px;
    }
    
    .features-grid {
        gap: 18px;
    }
    
    .feature-block {
        padding: 20px;
    }
    
    .feature-title {
        font-size: 16px;
        margin-bottom: 14px;
        letter-spacing: 0.8px;
    }
    
    .feature-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .feature-image {
        min-height: 200px;
    }
}

/* About Advantages Section */
.about-advantages-section {
    background-color: #ffffff;
    padding: 100px 50px;
    position: relative;
    z-index: 10;
}

.about-advantages-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.about-advantages-header {
    margin-bottom: 60px;
    max-width: 900px;
}

.about-advantages-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-advantages-heading-part1 {
    color: #2c2c2c;
}

.about-advantages-heading-part2 {
    color: #cd1c18;
}

.about-advantages-intro {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px;
}

.about-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.about-advantage-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-advantage-icon {
    width: 64px;
    height: 64px;
    color: #2c2c2c;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: #2c2c2c;
}

.about-advantage-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.about-advantage-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.2px;
}

/* About Products Section */
.about-products-section {
    background-color: #ffffff;
    padding: 100px 50px;
    position: relative;
    z-index: 10;
}

.about-products-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.about-products-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-products-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-products-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-products-right {
    display: flex;
    flex-direction: column;
}

.about-products-heading {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.about-products-heading-part1 {
    color: #2c2c2c;
}

.about-products-heading-part2 {
    color: #cd1c18;
}

.about-products-heading-part3 {
    color: #cd1c18;
}

.about-products-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.8;
    margin: 0 0 20px 0;
    letter-spacing: 0.2px;
}

.about-products-list {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.8;
    margin: 0 0 30px 0;
    padding-left: 25px;
    letter-spacing: 0.2px;
}

.about-products-list li {
    margin-bottom: 10px;
}

.about-products-list li:last-child {
    margin-bottom: 0;
}

.btn-become-partner {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    align-self: center;
    max-width: 300px;
    width: 100%;
}

.btn-become-partner:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-become-partner:active {
    transform: translateY(0);
}

/* Responsive About Advantages Section */
@media (max-width: 1200px) {
    .about-advantages-section {
        padding: 80px 40px;
    }
    
    .about-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }
    
    .about-advantages-heading {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .about-advantages-section {
        padding: 60px 30px;
    }
    
    .about-advantages-header {
        margin-bottom: 40px;
    }
    
    .about-advantages-heading {
        font-size: 36px;
        letter-spacing: 1.5px;
    }
    
    .about-advantages-intro {
        font-size: 16px;
    }
    
    .about-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .about-advantage-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .about-advantage-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .about-advantage-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-advantages-section {
        padding: 50px 25px;
    }
    
    .about-advantages-header {
        margin-bottom: 35px;
    }
    
    .about-advantages-heading {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .about-advantages-intro {
        font-size: 15px;
    }
    
    .about-advantages-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-advantage-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }
    
    .about-advantage-title {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .about-advantage-description {
        font-size: 14px;
    }
    
    /* Products Section Responsive */
    .about-products-section {
        padding: 50px 25px;
    }
    
    .about-products-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-products-heading {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .about-products-text {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .about-products-list {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .btn-become-partner {
        padding: 12px 35px;
        font-size: 13px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-advantages-section {
        padding: 40px 20px;
    }
    
    .about-advantages-heading {
        font-size: 28px;
    }
    
    .about-advantages-grid {
        gap: 30px;
    }
    
    .about-products-section {
        padding: 40px 20px;
    }
    
    .about-products-heading {
        font-size: 28px;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }
    
    .about-products-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .about-products-list {
        font-size: 14px;
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .btn-become-partner {
        padding: 11px 30px;
        font-size: 12px;
        max-width: 260px;
    }
}

/* History Section */
.history-section {
    background-color: #ffffff;
    padding: 100px 50px;
    position: relative;
    z-index: 10;
}

.history-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.history-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 60px 0;
    line-height: 1.2;
}

.history-heading-part1 {
    color: #cd1c18;
}

.history-heading-part2 {
    color: #2c2c2c;
}

.history-timeline {
    position: relative;
    margin-bottom: 80px;
}

.history-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-bottom: 40px;
}

.history-row:last-of-type {
    margin-bottom: 0;
}

.history-entry {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.history-badge {
    width: 40px;
    height: 40px;
    background-color: #4a4a4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.history-line.horizontal {
    position: absolute;
    top: 20px;
    left: 40px;
    right: -20px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.history-row .history-entry:last-child .history-line.horizontal {
    display: none;
}

.history-content {
    margin-top: 20px;
    width: 100%;
}

.history-year {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #cd1c18;
    margin-bottom: 15px;
    line-height: 1.2;
}

.history-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Vertical connector from row 1 last entry to row 2 first entry */
.history-timeline::before {
    content: '';
    position: absolute;
    left: calc(100% / 3 * 2.5);
    top: 60px;
    width: 2px;
    height: 40px;
    background-color: #e0e0e0;
    z-index: 1;
}

@media (max-width: 968px) {
    .history-timeline::before {
        display: none;
    }
}

/* Additional Responsive Enhancements for About Company Page */
@media (max-width: 640px) {
    .about-hero-section {
        min-height: 50vh;
        margin-top: 0;
        padding-top: 70px;
    }
    
    .about-hero-content {
        padding: 0 20px 35px;
    }
    
    .about-content-image,
    .about-products-image {
        max-height: 300px;
    }
    
    .about-image-grid {
        gap: 10px;
    }
    
    .about-grid-image {
        height: 150px;
    }
}

@media (min-width: 641px) and (max-width: 968px) {
    .about-content-image,
    .about-products-image {
        max-height: 400px;
    }
    
    .about-grid-image {
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .features-grid {
        gap: 28px;
    }
    
    .about-content-row {
        gap: 55px;
    }
    
    .about-products-content {
        gap: 55px;
    }
}

/* Ensure About Company images are responsive */
.about-content-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.about-products-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.feature-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-content-image,
    .about-products-image {
        max-height: 350px;
    }
    
    .feature-image {
        min-height: 200px;
    }
}

.history-slogan {
    text-align: center;
    margin-top: 80px;
}

.history-slogan-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.history-slogan-part1 {
    color: #2c2c2c;
}

.history-slogan-part2 {
    color: #cd1c18;
}

.history-slogan-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.7;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.2px;
}

/* Responsive History Section */
@media (max-width: 1200px) {
    .history-section {
        padding: 80px 40px;
    }
    
    .history-heading {
        font-size: 42px;
    }
    
    .history-row {
        gap: 35px;
    }
    
    .history-year {
        font-size: 28px;
    }
    
    .history-slogan-heading {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .history-section {
        padding: 60px 30px;
    }
    
    .history-heading {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .history-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .history-entry {
        align-items: center;
        text-align: center;
    }
    
    .history-line.horizontal {
        display: none;
    }
    
    .history-vertical-line {
        display: none;
    }
    
    .history-row:first-of-type .history-entry:last-child::after {
        display: none;
    }
    
    .history-year {
        font-size: 26px;
    }
    
    .history-description {
        font-size: 15px;
    }
    
    .history-slogan {
        margin-top: 60px;
    }
    
    .history-slogan-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .history-slogan-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 50px 25px;
    }
    
    .history-heading {
        font-size: 32px;
        margin-bottom: 40px;
        letter-spacing: 1.5px;
    }
    
    .history-row {
        gap: 35px;
        margin-bottom: 50px;
    }
    
    .history-badge {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .history-year {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .history-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .history-slogan {
        margin-top: 50px;
    }
    
    .history-slogan-heading {
        font-size: 32px;
        margin-bottom: 18px;
        letter-spacing: 1.5px;
    }
    
    .history-slogan-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 40px 20px;
    }
    
    .history-heading {
        font-size: 28px;
        margin-bottom: 35px;
        letter-spacing: 1px;
    }
    
    .history-row {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .history-badge {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .history-year {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .history-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .history-slogan {
        margin-top: 40px;
    }
    
    .history-slogan-heading {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .history-slogan-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* News Page Hero Section */
.news-hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)),
        url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.news-contact-info {
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.news-contact-box {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
}

.news-contact-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.news-contact-email {
    background-color: #cd1c18;
}

.news-contact-phone {
    background-color: #4CAF50;
}

.news-banner {
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 40px 50px;
    position: relative;
    z-index: 5;
}

.news-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.news-label {
    font-size: 32px;
    font-weight: 800;
    color: #cd1c18;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 15px;
}

.news-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

/* News Content Section */
.news-content-section {
    background: #ffffff;
    padding: 80px 50px;
    min-height: 600px;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Breadcrumb Navigation */
.news-breadcrumb {
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    color: #000000;
    text-decoration: none;
    text-transform: lowercase;
    transition: opacity 0.2s ease;
}

.breadcrumb-link:hover {
    opacity: 0.7;
}

.breadcrumb-separator {
    color: #000000;
}

.breadcrumb-current {
    color: #cd1c18;
    text-transform: lowercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 0;
}

.news-item {
    background: transparent;
    border: none;
    overflow: visible;
    transition: none;
    display: flex;
    flex-direction: column;
}

.news-item-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    border-radius: 4px;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-item-image img {
    transform: scale(1.05);
}

.news-item-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.5;
    letter-spacing: 0.3px;
    text-align: left;
}

.news-item-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
    letter-spacing: 0.2px;
    text-align: left;
}

.news-item-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 5px;
    margin-bottom: 0;
    text-align: left;
}

.news-item-link {
    display: none;
}

/* Responsive News Page */
@media (max-width: 1200px) {
    .news-hero-section {
        height: 550px;
    }

    .news-contact-info {
        top: 30px;
        right: 40px;
    }

    .news-banner {
        padding: 35px 40px;
    }

    .news-label {
        font-size: 28px;
        margin-right: 12px;
    }

    .news-text {
        font-size: 20px;
    }

    .news-content-section {
        padding: 60px 40px;
    }

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

    .news-item-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .news-hero-section {
        height: 500px;
        background-attachment: scroll;
    }

    .news-contact-info {
        top: 20px;
        right: 20px;
        gap: 10px;
    }

    .news-contact-box {
        padding: 12px 20px;
        font-size: 11px;
    }

    .news-banner {
        padding: 30px 25px;
    }

    .news-banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .news-label {
        font-size: 24px;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .news-text {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 1.5;
    }

    .news-content-section {
        padding: 50px 25px;
    }

    .news-breadcrumb {
        margin-bottom: 40px;
        font-size: 13px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .news-item-image {
        height: 250px;
        margin-bottom: 25px;
    }

    .news-item-content {
        gap: 12px;
    }

    .news-item-title {
        font-size: 16px;
    }

    .news-item-excerpt {
        font-size: 14px;
    }

    .news-item-date {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .news-hero-section {
        height: 450px;
    }

    .news-contact-info {
        top: 15px;
        right: 15px;
    }

    .news-contact-box {
        padding: 10px 16px;
        font-size: 10px;
    }

    .news-banner {
        padding: 25px 20px;
    }

    .news-label {
        font-size: 20px;
    }

    .news-text {
        font-size: 14px;
    }

    .news-content-section {
        padding: 40px 20px;
    }

    .news-breadcrumb {
        margin-bottom: 30px;
        font-size: 12px;
    }

    .news-grid {
        gap: 40px;
    }

    .news-item-image {
        height: 200px;
        margin-bottom: 20px;
    }

    .news-item-content {
        gap: 10px;
    }

    .news-item-title {
        font-size: 15px;
    }

    .news-item-excerpt {
        font-size: 13px;
        line-height: 1.5;
    }

    .news-item-date {
        font-size: 11px;
    }
}

/* Subscribe to News Section */
.news-subscribe-section {
    background-color: #e5e5e5;
    padding: 80px 50px;
    width: 100%;
}

.news-subscribe-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.news-subscribe-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.news-subscribe-orange {
    color: #cd1c18;
}

.news-subscribe-black {
    color: #2c2c2c;
}

.news-subscribe-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.7;
    margin: 0 0 40px 0;
    letter-spacing: 0.3px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.news-subscribe-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.news-btn-subscribe {
    background-color: #ffffff;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.news-btn-subscribe:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.news-subscribe-arrow {
    color: #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-subscribe-arrow svg {
    width: 60px;
    height: 60px;
}

/* Contact Us Section */
.news-contact-section {
    position: relative;
    width: 100%;
    padding: 100px 50px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.news-contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.news-contact-heading {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    text-align: left;
}

.news-contact-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 40px 0;
    letter-spacing: 0.3px;
    text-align: left;
}

.news-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-form-group {
    width: 100%;
}

.news-form-input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2c2c2c;
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.news-form-input::placeholder {
    color: #999999;
}

.news-form-input:focus {
    box-shadow: 0 0 0 3px rgba(205, 28, 24, 0.3);
}

.news-phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.news-phone-flag {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
}

.news-phone-flag svg:first-child {
    width: 20px;
    height: 15px;
}

.news-phone-flag svg:last-child {
    width: 8px;
    height: 8px;
    color: #666666;
}

.news-phone-input {
    padding-left: 50px;
}

.news-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.news-consent-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #cd1c18;
    flex-shrink: 0;
}

.news-consent-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.news-submit-button {
    background-color: #cd1c18;
    border: none;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
    align-self: flex-start;
}

.news-submit-button:hover {
    background-color: #cd1c18;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 28, 24, 0.4);
}

/* Responsive Subscribe and Contact Sections */
@media (max-width: 1200px) {
    .news-subscribe-section {
        padding: 60px 40px;
    }

    .news-subscribe-heading {
        font-size: 40px;
    }

    .news-contact-section {
        padding: 80px 40px;
    }

    .news-contact-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .news-subscribe-section {
        padding: 50px 25px;
    }

    .news-subscribe-heading {
        font-size: 32px;
        letter-spacing: 1.5px;
    }

    .news-subscribe-description {
        font-size: 16px;
    }

    .news-btn-subscribe {
        padding: 14px 35px;
        font-size: 14px;
    }

    .news-subscribe-arrow svg {
        width: 50px;
        height: 50px;
    }

    .news-contact-section {
        padding: 60px 25px;
        background-attachment: scroll;
    }

    .news-contact-heading {
        font-size: 32px;
        letter-spacing: 1.5px;
    }

    .news-contact-description {
        font-size: 16px;
    }

    .news-form-input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .news-phone-flag {
        left: 12px;
    }

    .news-phone-input {
        padding-left: 45px;
    }

    .news-consent-label {
        font-size: 13px;
    }

    .news-submit-button {
        padding: 14px 35px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .news-subscribe-section {
        padding: 40px 20px;
    }

    .news-subscribe-heading {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .news-subscribe-description {
        font-size: 14px;
    }

    .news-contact-section {
        padding: 50px 20px;
    }

    .news-contact-heading {
        font-size: 28px;
    }

    .news-contact-description {
        font-size: 15px;
    }

    .news-form-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .news-consent-checkbox {
        width: 18px;
        height: 18px;
    }

    .news-consent-label {
        font-size: 12px;
    }
}

/* ============================================
   ADDITIONAL RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure containers don't overflow */
.container,
.catalog-content,
.about-content,
.advantages-grid,
.product-cards,
.statistics-container,
.footer-container {
    width: 100%;
    box-sizing: border-box;
}

/* Touch-friendly button sizes for mobile */
@media (max-width: 768px) {
    button,
    .btn-catalog,
    .btn-technologist,
    .btn-catalog-cta-orange,
    .btn-catalog-cta-white,
    .btn-technologist-consultation,
    .btn-more-details,
    .catalog-nav-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
}

/* Improve text readability on small screens */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1, h2, h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Landscape orientation improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 60vh;
    }
    
    .catalog-section,
    .about-section,
    .advantages-section {
        padding: 40px 20px 15px 20px;
    }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
    .navbar {
        padding: 10px 10px;
    }
    
    .logo-image {
        height: 55px;
    }
    
    
    .hero-headline {
        font-size: 24px;
    }
    
    .catalog-heading,
    .about-heading,
    .advantages-heading,
    .certifications-heading {
        font-size: 24px;
    }
    
    .catalog-content,
    .about-section,
    .advantages-section {
        padding: 30px 10px 10px 10px;
    }
    
    .product-cards {
        padding: 0 10px 20px;
        gap: 15px;
    }
    
    .statistics-section {
        padding: 20px 10px;
    }
    
    .stat-item {
        padding: 12px 8px;
        min-height: 100px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-section {
        padding: 30px 10px 20px;
    }
}

/* Large screens - ensure content doesn't stretch too wide */
@media (min-width: 1920px) {
    .container,
    .navbar-container,
    .catalog-content,
    .about-content,
    .advantages-grid,
    .footer-container {
        max-width: 1800px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        radial-gradient(circle at 20% 50%, rgba(205, 28, 24, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 60%),
        url('public/images/cover/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.contact-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 80px 30px;
}

.contact-hero-heading {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 20px;
}

.contact-hero-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #cd1c18 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(205, 28, 24, 0.6);
}

/* Contact Section */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 25%, #1a1a1a 50%, #141414 75%, #0a0a0a 100%);
    padding: 100px 60px;
    min-height: 600px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Map Wrapper */
.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(205, 28, 24, 0.1);
}

.contact-map iframe,
.contact-map video,
.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    border-radius: 12px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
    width: 100%;
}

.contact-form-container {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%),
        rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(205, 28, 24, 0.2);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(205, 28, 24, 0.08);
}

.contact-form-heading {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #cd1c18 0%, rgba(205, 28, 24, 0.5) 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(205, 28, 24, 0.4);
}

.contact-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0 0 35px 0;
    letter-spacing: 0.3px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-input,
.form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(205, 28, 24, 0.3);
    border-radius: 8px;
    padding: 14px 18px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(205, 28, 24, 0.6);
    box-shadow: 0 0 15px rgba(205, 28, 24, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.contact-submit-btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #cd1c18 0%, #a01512 100%);
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(205, 28, 24, 0.3),
        0 0 20px rgba(205, 28, 24, 0.1);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #e02520 0%, #cd1c18 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(205, 28, 24, 0.4),
        0 0 30px rgba(205, 28, 24, 0.2);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Contact Section */
@media (max-width: 1200px) {
    .contact-section {
        padding: 80px 40px;
    }
    
    .contact-container {
        gap: 50px;
    }
    
    .contact-hero-heading {
        font-size: 52px;
    }
    
    .contact-form-container {
        padding: 40px 35px;
    }
}

@media (max-width: 968px) {
    .contact-section {
        padding: 60px 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-map-wrapper {
        min-height: 400px;
    }
    
    .contact-map,
    .contact-map iframe,
    .contact-map video,
    .contact-map img {
        min-height: 400px;
    }
    
    .contact-hero-heading {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .contact-hero-heading::after {
        width: 100px;
    }
    
    .contact-form-heading {
        font-size: 28px;
    }
    
    .contact-form-container {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 300px;
        padding-top: 60px;
        background-attachment: scroll;
    }
    
    .contact-hero-content {
        padding: 60px 20px;
    }
    
    .contact-hero-heading {
        font-size: 32px;
        letter-spacing: 1.5px;
        padding-bottom: 15px;
    }
    
    .contact-hero-heading::after {
        width: 80px;
        height: 3px;
    }
    
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-map-wrapper {
        min-height: 350px;
    }
    
    .contact-map,
    .contact-map iframe,
    .contact-map video,
    .contact-map img {
        min-height: 350px;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .contact-form-heading {
        font-size: 24px;
    }
    
    .contact-form-subtitle {
        font-size: 14px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 15px;
        padding: 12px 16px;
    }
    
    .contact-submit-btn {
        font-size: 14px;
        padding: 14px 30px;
    }
}

/* ============================================
   ENHANCED ABOUT US PAGE STYLES
   ============================================ */

/* Fact Icon Wrapper */
.fact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fact-icon {
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(205, 28, 24, 0.3));
}

/* Mission & Vision Cards */
.about-mission-vision-card {
    padding: 20px;
}

.mission-vision-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.05);
    border-color: rgba(205, 28, 24, 0.5) !important;
    box-shadow: 0 0 20px rgba(205, 28, 24, 0.3);
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 40px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Value Card */
.value-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(205, 28, 24, 0.2);
    transition: all 0.3s ease;
}

/* Responsive styles for About Us page */
@media (max-width: 1200px) {
    .about-mission-vision-card {
        padding: 15px;
    }
    
    .value-card {
        padding: 30px;
    }
    
    .about-hero-heading {
        font-size: 56px;
    }
    
    .mission-vision-grid {
        gap: 40px;
    }
    
    .values-grid {
        gap: 30px;
    }
}

@media (max-width: 968px) {
    /* Mission & Vision - Stack on mobile */
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Values - Stack on mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-heading {
        font-size: 42px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 20px;
    }
    
    .value-card {
        padding: 25px !important;
    }
    
    .mission-vision-icon {
        padding: 20px !important;
    }
    
    .mission-vision-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .fact-icon {
        font-size: 36px;
    }
}

