/* Simple, clean CSS for Cartabianca */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #111111;
    line-height: 1.6;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure all containers are visible */
#Wrapper,
#Content,
.content_wrapper,
.sections_group,
.entry-content,
.section,
.mcb-section,
.section_wrapper,
.mcb-section-inner,
.wrap,
.mcb-wrap,
.mcb-wrap-inner,
.column,
.mcb-column {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

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

/* =====================================================
   HEADER STYLES - Dark blue with white text
   ===================================================== */
.main-header {
    background-color: #070b29 !important;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex: 0 0 auto;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #FF6600;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lang-link.active,
.lang-link:hover {
    opacity: 1;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Orange Shop Online Button */
.shop-online-btn {
    background-color: #FF6600;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.shop-online-btn:hover {
    background-color: #e55a00;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* Responsive Header */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu li a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .shop-online-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Hero Section */
.hero-section {
    background-color: #F5F5F5;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 4em;
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #666666;
    font-weight: 400;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Hero boxes placeholder */
.hero-boxes-placeholder {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    justify-content: center;
    perspective: 1000px;
}

.hero-box {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border-radius: 8px;
    padding: 30px 25px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
}

.hero-box.box-1 {
    width: 220px;
    height: 240px;
    transform: rotate(-8deg);
}

.hero-box.box-2 {
    width: 200px;
    height: 220px;
    transform: rotate(5deg);
}

.box-lid {
    position: absolute;
    top: -30px;
    left: -10px;
    right: -10px;
    height: 50px;
    background: linear-gradient(145deg, #d4a855, #b8903d);
    border-radius: 4px;
    transform: rotateX(-20deg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.box-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    justify-content: center;
}

.box-logo {
    color: #FF6600;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    font-family: Arial, sans-serif;
}

.box-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 120px;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background-color: #E74C3C; }
.dot-blue { background-color: #3498DB; }
.dot-green { background-color: #2ECC71; }
.dot-yellow { background-color: #F39C12; }
.dot-orange { background-color: #FF6600; }

/* Hero responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
}

/* Section spacing */
.section {
    padding: 60px 0;
    clear: both;
}

/* Remove bottom margin/padding before footer */
.section:last-of-type,
.custom-bag-section {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Why Cartabianca Section */
.why-cartabianca-section {
    background-color: #070b29;
    padding: 80px 0;
    color: #FFFFFF;
    clear: both;
}

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

.why-title {
    text-align: center;
    margin-bottom: 60px;
}

.why-title h2 {
    font-size: 2.5em;
    font-weight: 400;
    margin: 0;
}

.title-light {
    color: #FFFFFF;
    display: block;
    margin-bottom: 10px;
}

.title-brand {
    color: #FF6600;
    font-weight: 700;
    display: block;
}

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

.why-feature {
    text-align: center;
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    height: 90px;
    align-items: center;
}

.feature-icon img {
    width: auto;
    height: 80px;
    max-width: 90px;
}

.feature-icon svg {
    width: 80px;
    height: 80px;
}

.feature-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #FFFFFF;
}

.feature-description {
    font-size: 1em;
    line-height: 1.8;
    color: #CCCCCC;
}

/* Why Cartabianca responsive */
@media (max-width: 992px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-title h2 {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .why-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Features Grid (About Page) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

.feature-item {
    text-align: center;
}

.feature-item .feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    height: 90px;
    align-items: center;
}

.feature-item .feature-icon img {
    width: auto;
    height: 80px;
    max-width: 90px;
}

.feature-item .feature-title {
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item .feature-text {
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

/* Typography */
.main-h3 {
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.main-h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.main-text-alt {
    font-size: 1em;
    line-height: 1.8;
}

/* Client logos section */
.clients-container {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin: 40px 0;
    align-items: center;
    justify-items: center;
}

.clients-wrapper.column {
    display: block !important;
    text-align: center;
    width: 100%;
}

.clients-wrapper {
    text-align: center;
    width: 100%;
}

.clients-image {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.clients-image img {
    max-width: 100%;
    height: auto;
    display: block !important;
}

/* Product grid */
.one-third {
    width: 33.33%;
    float: left;
    padding: 20px;
    box-sizing: border-box;
}

.column_image {
    margin-bottom: 30px;
}

.column_image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.image_frame,
.image_item {
    display: block;
    width: 100%;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FF6600;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #FF8800;
}

.button_align {
    text-align: center;
    margin: 20px 0;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Features section with background */
.home-section-5 {
    background-color: #333333;
    padding: 80px 0;
    background-image: url('https://www.cartabianca.gr/wp-content/uploads/2020/05/PaperBag.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

.details-box {
    width: 33.33%;
    float: left;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}

.details-box .column_image {
    text-align: center;
}

.details-box img {
    max-width: 120px;
    margin: 0 auto 20px;
    display: block;
}

.details-box .main-h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.details-box .main-text-alt {
    color: #FFFFFF;
}

/* Custom paper bag section */
.home-section-6 {
    display: flex;
    flex-wrap: wrap;
    clear: both;
}

.two-third {
    width: 66.66%;
    float: left;
    padding: 50px;
    background-color: #F5F5F5;
    box-sizing: border-box;
    background-image: url('https://www.cartabianca.gr/wp-content/uploads/2020/05/PaperBag.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}

.two-third .column_visual {
    margin-bottom: 20px;
}

.two-third .main-text-alt p {
    margin-bottom: 15px;
}

.home-section-6 .one-third {
    width: 33.33%;
    float: left;
    background-image: url('https://www.cartabianca.gr/wp-content/uploads/2020/06/PHOTO_girls-small.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

/* Colors */
.white {
    color: #FFFFFF;
}

.black {
    color: #111111;
}

.orange-button {
    background-color: #FF6600;
}

/* Footer Styles */
.main-footer {
    background-color: #070b29;
    color: #FFFFFF;
    padding: 60px 0 40px;
    position: relative;
    margin-top: 0;
}

.footer-orange-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #FF6600;
}

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

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo-image {
    height: auto;
    width: 180px;
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
}

/* International Leading Packaging tagline - matches original #media_image-3 */
.footer-tagline-image {
    width: 80%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    color: #FFFFFF;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: #FF6600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    color: #CCCCCC;
    font-size: 13px;
    line-height: 1.7;
}

.footer-text p {
    margin: 4px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
    border-radius: 0;
    font-size: 13px;
}

.newsletter-input::placeholder {
    color: #888888;
}

.newsletter-button {
    padding: 10px 25px;
    background-color: #070b29;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    width: fit-content;
}

.newsletter-button:hover {
    background-color: #FF6600;
    border-color: #FF6600;
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: #AAAAAA;
    line-height: 1.5;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #2a3542;
}

.social-icon {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FF6600;
}

/* Custom Bag Section */
.custom-bag-section {
    clear: both;
    margin: 0;
    padding: 0;
}

.custom-bag-container {
    display: flex;
    min-height: 500px;
}

.custom-bag-content {
    flex: 2;
    background-color: #F5F5F5;
    padding: 60px 80px;
    position: relative;
    display: flex;
    align-items: center;
}

.orange-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #FF6600;
}

.custom-bag-text {
    max-width: 600px;
}

.custom-bag-text .small-title {
    font-size: 1.1em;
    color: #666666;
    margin-bottom: 15px;
}

.custom-bag-text .main-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 30px;
    line-height: 1.3;
}

.custom-bag-text .description {
    font-size: 1em;
    line-height: 1.8;
    color: #444444;
}

.custom-bag-text .description p {
    margin-bottom: 15px;
}

.custom-bag-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.custom-bag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom Bag responsive */
@media (max-width: 992px) {
    .custom-bag-container {
        flex-direction: column;
    }
    
    .custom-bag-content {
        padding: 40px;
    }
    
    .custom-bag-text .main-title {
        font-size: 2em;
    }
    
    .custom-bag-image {
        min-height: 400px;
    }
}

/* Footer responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        font-size: 2.5em;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .one-third,
    .two-third,
    .details-box {
        width: 100%;
        float: none;
    }
    
    .clients-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .home-section-6 .one-third {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .clients-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Image frames */
.image_frame,
.image_wrapper {
    display: block;
    width: 100%;
}

.image_wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ensure visibility of all images */
img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* About Page Styles */
.about-hero-section {
    background-color: #070b29;
    background-image: linear-gradient(to right, #070b29 0%, rgba(7, 11, 41, 0.7) 50%, rgba(7, 11, 41, 0.3) 100%), url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero-section .container {
    width: 100%;
}

.about-hero-content {
    color: #FFFFFF;
    padding-left: 5%;
    position: relative;
}

.about-hero-content .hero-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #FF6600;
}

.about-hero-subtitle {
    color: #FF6600;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-style: italic;
}

.about-hero-title {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 20px 0;
    background-color: #F5F5F5;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.breadcrumb a {
    color: #111111;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb .separator {
    color: #FF6600;
}

.breadcrumb .current {
    color: #FF6600;
    font-weight: 600;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    position: relative;
}

.about-intro {
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.about-intro .orange-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #FF6600;
}

.section-title-large {
    font-size: 2.8em;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.about-subtitle {
    margin-bottom: 40px;
    padding-left: 20px;
}

.about-subtitle .section-subtitle {
    color: #FF6600;
    font-size: 1.2em;
    margin: 10px 0 0 0;
    font-weight: 500;
}

.section-subtitle {
    color: #FF6600;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 30px;
}

.about-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-left: 20px;
}

.text-column p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444444;
    font-size: 15px;
}

.text-column p em {
    font-style: italic;
}

/* About Company Section */
.about-company-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

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

.company-text h3 {
    font-size: 2em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 25px;
}

.company-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444444;
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quality Materials Section */
.quality-materials-section {
    padding: 100px 0;
    background-color: #070b29;
    color: #FFFFFF;
}

.quality-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-subtitle-italic {
    color: #FF6600;
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 10px;
}

.section-title-white {
    color: #FFFFFF;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 25px;
}

.quality-description {
    line-height: 1.8;
    color: #CCCCCC;
    font-size: 15px;
}

/* Why Cartabianca Section on About Page */
.why-cartabianca-section.about-why {
    background-color: #070b29;
    padding: 100px 0;
}

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

.section-title-orange {
    color: #FF6600;
    font-size: 3em;
    font-weight: 700;
    margin: 0;
}

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.facilities-header {
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
}

.facilities-header .orange-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #FF6600;
}

/* Facilities Gallery Grid */
.facilities-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.large img {
    height: 100%;
    min-height: 420px;
}

.facilities-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .about-text-columns,
    .about-company-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-title {
        font-size: 2em;
    }
    
    .section-title,
    .section-title-large,
    .section-title-white {
        font-size: 2em;
    }
    
    .section-title-orange {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 280px;
    }
    
    .about-hero-title {
        font-size: 1.8em;
    }
    
    .about-content-section {
        padding: 50px 0;
    }
    
    .about-text-columns {
        padding-left: 0;
    }
    
    .facilities-image img {
        max-width: 100%;
    }
    
    .facilities-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item.large img {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .facilities-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-item img,
    .gallery-item.large img {
        height: 180px;
        min-height: 180px;
    }
}

/* Products Page Styles */
/* Hero section with dark blue gradient */
.products-hero-section#Subheader {
    background-color: #070b29 !important; /* Dark navy blue */
    background-image: linear-gradient(to right, #070b29 0%, rgba(7, 11, 41, 0.7) 50%, rgba(7, 11, 41, 0.3) 100%), url('../images/products-hero-banner.jpg') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    min-height: 280px !important;
    height: 20vw;
    max-height: 400px;
    position: relative;
    display: flex !important;
    align-items: center;
    color: #FFFFFF !important;
    padding: 0;
    margin: 0;
}

.products-hero-section#Subheader .container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.products-hero-content.sub-det {
    width: 90%;
    padding-top: 20px;
    padding-left: 3%;
    text-align: left;
}

/* Subtitle: "Δημιουργήστε την δική σας ξεχωριστή τσάντα!" */
.products-hero-subtitle.times.main-h4.white {
    font-size: 1.2em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 400;
    font-style: italic;
    font-family: "Lora", Georgia, serif;
    letter-spacing: 1px;
}

/* Title: "Ενημερωθείτε για την μεγάλη ποικιλία υλικών" */
.products-hero-title.main-h3.font-700.white {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    letter-spacing: 0;
}

/* Responsive adjustments for products hero */
@media (max-width: 1024px) {
    .products-hero-section#Subheader {
        min-height: 220px;
    }
    
    .products-hero-title.main-h3.font-700.white {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .products-hero-section#Subheader {
        height: auto;
        min-height: 180px;
        padding: 40px 0;
    }
    
    .products-hero-content.sub-det {
        width: 95%;
        padding-left: 2.5%;
    }
    
    .products-hero-title.main-h3.font-700.white {
        font-size: 1.6em;
    }
    
    .products-hero-subtitle.times.main-h4.white {
        font-size: 1em;
    }
}

@media (max-width: 479px) {
    .products-hero-section#Subheader {
        min-height: 150px;
    }
    
    .products-hero-title.main-h3.font-700.white {
        font-size: 1.3em;
    }
    
    .products-hero-subtitle.times.main-h4.white {
        font-size: 0.9em;
    }
}

/* Products Content Section */
.products-content-section {
    padding: 80px 0;
}

.products-intro {
    text-align: center;
    margin-bottom: 40px;
}

.products-intro .section-subtitle {
    color: #FF6600;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.products-intro .section-title {
    font-size: 3em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 30px;
}

.products-description {
    max-width: 900px;
    margin: 0 auto;
}

.products-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444444;
    font-size: 1.1em;
}

/* Products Categories Section */
.products-categories-section {
    padding: 60px 0 100px;
    background-color: #F5F5F5;
}

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

.category-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.category-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.category-item h3 {
    padding: 20px;
    font-size: 1.3em;
    font-weight: 600;
    color: #111111;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .products-hero-title {
        font-size: 2em;
    }
    
    .products-intro .section-title {
        font-size: 2em;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   CLIENTS PAGE STYLES
   ===================================================== */

/* Hero Section - Dark blue background with overlay image */
.clients-hero-section {
    background-color: #070b29; /* Dark navy blue */
    background-image: url('../images/clients-hero.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Dark blue overlay for better text readability */
.clients-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 11, 41, 0.95) 0%, rgba(7, 11, 41, 0.7) 70%, transparent 100%);
    z-index: 1;
}

.clients-hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.clients-hero-content {
    display: flex;
    align-items: flex-start;
    padding: 60px 0;
}

/* Orange accent bar on left */
.hero-accent-bar {
    width: 6px;
    height: 100px;
    background-color: #FF6600;
    margin-right: 25px;
    flex-shrink: 0;
}

.hero-text {
    color: #FFFFFF;
}

.clients-hero-title {
    font-size: 2.8em;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.clients-hero-subtitle {
    font-size: 1.2em;
    font-weight: 400;
    margin: 0;
    font-style: italic;
    font-family: "Lora", Georgia, serif;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Title */
.clients-title-section {
    padding: 60px 0 30px 0;
    text-align: center;
}

.section-main-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

/* Client Logos Grid */
.clients-logos-section {
    padding: 30px 0 80px 0;
    background-color: #FFFFFF;
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.client-logo-item:hover {
    transform: scale(1.05);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustments for clients page */
@media (max-width: 1024px) {
    .clients-logos-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px 30px;
    }
    
    .clients-hero-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .clients-hero-section {
        min-height: 280px;
    }
    
    .clients-hero-overlay {
        width: 100%;
        background: rgba(7, 11, 41, 0.85);
    }
    
    .clients-hero-title {
        font-size: 1.8em;
    }
    
    .clients-hero-subtitle {
        font-size: 1em;
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .section-main-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .clients-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .clients-hero-content {
        padding: 40px 0;
    }
    
    .hero-accent-bar {
        height: 80px;
        margin-right: 15px;
    }
    
    .clients-hero-title {
        font-size: 1.5em;
    }
    
    .client-logo-item img {
        max-height: 60px;
    }
}

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

/* Hero Section - Dark blue background */
.contact-hero-section {
    background-color: #070b29;
    background-image: url('../images/products-hero-banner.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 11, 41, 0.95) 0%, rgba(7, 11, 41, 0.7) 70%, transparent 100%);
    z-index: 1;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.contact-hero-content {
    display: flex;
    align-items: flex-start;
    padding: 60px 0;
}

.contact-hero-content .hero-accent-bar {
    width: 6px;
    height: 120px;
    background-color: #FF6600;
    margin-right: 25px;
    flex-shrink: 0;
}

.contact-hero-content .hero-text {
    color: #FFFFFF;
}

.contact-hero-content .hero-label {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #FFFFFF;
}

.contact-hero-content .hero-address {
    font-size: 1.1em;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    margin: 0;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px 0;
}

.form-header p {
    font-size: 1em;
    color: #666666;
    margin: 0;
}

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

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6600;
    z-index: 1;
}

.textarea-icon .input-icon {
    top: 20px;
    transform: none;
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 1em;
    color: #333333;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: #FF6600;
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
    color: #999999;
}

.communication-options {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #EEEEEE;
}

.option-label {
    display: block;
    font-size: 0.95em;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    margin-right: 8px;
    accent-color: #FF6600;
}

.radio-option span {
    font-size: 0.95em;
    color: #555555;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.submit-btn {
    background-color: #FF6600;
    color: #FFFFFF;
    padding: 15px 50px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #e55a00;
}

/* Map Section */
.contact-map-section {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 280px;
    }
    
    .contact-hero-overlay {
        width: 100%;
        background: rgba(7, 11, 41, 0.85);
    }
    
    .contact-hero-content .hero-label {
        font-size: 1.2em;
    }
    
    .contact-hero-content .hero-address {
        font-size: 1em;
    }
    
    .contact-title {
        font-size: 2em;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .communication-options .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-content {
        padding: 40px 0;
    }
    
    .contact-hero-content .hero-accent-bar {
        height: 80px;
        margin-right: 15px;
    }
    
    .contact-title {
        font-size: 1.6em;
    }
    
    .form-header h2 {
        font-size: 1.4em;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px 30px;
    }
}
