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

/* Response Message Styles */
.response-message {
    margin-top: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.response-message.success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: 1px solid #27ae60;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.response-message.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 1px solid #c0392b;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
}

.header-top {
    background: #2c3e50;
    font-size: 14px;
}

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

.header-contact {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.contact-item i {
    color: #2ECC71;
}

.header-social {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2ECC71;
}

/* Language Selector Dropdown Styles - Native Implementation */
.language-selector {
    margin-left: 20px;
    position: relative;
}

/* Hide mobile language selector on desktop */
.language-selector-mobile {
    display: none;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: none;
    border: none;
    border-radius: 0;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.btn-language:hover {
    background: none;
    border: none;
    color: #2ECC71;
    transform: translateY(-2px);
}

.btn-language:focus {
    outline: none;
    box-shadow: none;
    background: none;
    border: none;
    color: #2ECC71;
}

.btn-language .flag-icon {
    font-size: 18px;
    line-height: 1;
}

.btn-language .lang-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Dropdown arrow indicator */
.btn-language::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

.btn-language.active::after {
    transform: rotate(180deg);
}

/* Native dropdown menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: none;
    border: none;
    border-radius: 0;
    padding: 8px 0;
    min-width: 180px;
    box-shadow: none;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: rgba(44, 62, 80, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.dropdown-menu li {
    list-style: none;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: white;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    box-shadow: none;
}

.lang-option:hover {
    background: none;
    color: #2ECC71;
    box-shadow: none;
}

.lang-option.active {
    background: none;
    color: #2ECC71;
    box-shadow: none;
}

.lang-option.active .lang-name {
    color: white;
}

.lang-option .flag-icon {
    font-size: 20px;
}

.lang-option .lang-name {
    font-weight: 500;
    color: inherit;
}

/* RTL Support for Arabic */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .header-top .container {
    flex-direction: row-reverse;
}

body.rtl .header-contact {
    flex-direction: row-reverse;
}

body.rtl .header-social {
    flex-direction: row-reverse;
}

body.rtl .language-selector {
    margin-left: 0;
    margin-right: 20px;
}

body.rtl .navbar .container {
    flex-direction: row-reverse;
}

body.rtl .nav-actions {
    flex-direction: row-reverse;
}

body.rtl .hero-content {
    flex-direction: row-reverse;
}

body.rtl .features-content {
    flex-direction: row-reverse;
}

body.rtl .footer-content {
    flex-direction: row-reverse;
}

body.rtl .contact-item {
    flex-direction: row-reverse;
}

body.rtl .testimonial-header {
    flex-direction: row-reverse;
}

body.rtl .whatsapp-btn span {
    flex-direction: row-reverse;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    background: rgba(44, 62, 80, 0.95);
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.iron-symbol {
    position: relative;
    width: 100%;
    height: 100%;
}

.diamond-top, .diamond-bottom {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.diamond-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.diamond-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.lightning {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.lightning::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #2ECC71;
    top: 0;
}

.lightning::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #2ECC71;
    bottom: 0;
}

.logo-text {
    color: white;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    display: block;
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 8px 0 !important;
    position: relative;
    transition: color 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
}

.nav-link:hover,
.nav-link.active {
    color: #2ECC71 !important;
}

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

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

/* WhatsApp Button */
.whatsapp-btn {
    background: #2ECC71 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
}

.whatsapp-btn:hover {
    background: #27AE60 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

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

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

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

/* Mobile Menu */
.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

/* Product Showcase Slider */
.product-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.product-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.hero-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-indicators .indicator.active {
    background-color: var(--primary-color);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-1, .shape-2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    transform: rotate(45deg);
    border-radius: 20px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 60%;
    transform: rotate(-30deg);
    border-radius: 20px;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    background: white;
    color: #2c3e50;
}

.hero-image {
    text-align: center;
    position: relative;
}

.product-showcase {
    position: relative;
    display: inline-block;
}

.product-box {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-icon i {
    color: white;
    font-size: 24px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    font-weight: 500;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.equipment-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.equipment-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.equipment-item:first-child {
    grid-column: 1 / -1;
}

.equipment-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #1D2D3C;
}

.reaction-emojis {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.emoji {
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.emoji:hover {
    transform: scale(1.2);
}

.view-more-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
    width: 120px;
}

.view-more-btn:hover {
    background: #34495e;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: transparent;
}

/* Enhanced section header for products */
.products .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.products .section-icon {
    width: 50px;
    height: 50px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 20px;
}

.products .section-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #7f8c8d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: #2c3e50;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.25);
}

.product-image {
    height: 280px;
    overflow: hidden;
    background: #34495e;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 30px 25px;
    color: white;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.product-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #bdc3c7;
    flex-grow: 1;
}

.product-btn {
    background: white;
    color: #2c3e50;
    border: none;
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-decoration: none;
    margin-top: auto;
}

.product-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Products Section Specific Typography */
.products-section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
    text-align: center;
    line-height: 1.3;
}

.products-section-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ecf0f1;
    text-align: center;
    flex-grow: 1;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #ecf0f1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

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

.team-image {
    height: 300px;
    overflow: hidden;
}

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

.team-info {
    padding: 20px;
    background: #2c3e50;
    text-align: center;
}

.team-name {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #ecf0f1;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.testimonial-info span {
    font-size: 14px;
    color: #7f8c8d;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #f39c12;
    font-size: 14px;
}

@media (max-width: 768px) {
    .testimonial-rating {
        display: flex;
        justify-content: center;
    }
}

.testimonial-text {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    background: #2c3e50;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
}

.submit-btn {
    background: #2ECC71;
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #27AE60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

/* Footer */
.footer-partners {
    background: #3498db;
    padding: 30px 0;
}

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

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 150px;
}

.partner-logo.iron-logo .logo {
    transform: scale(0.8);
}

.esab-logo {
    background: #f1c40f;
    color: #2c3e50;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
}

.footer-main {
    background: #868D94;
    padding: 50px 0 30px;
}

.egle-footer {
    background-image: url('../images/egle.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 300px auto;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    color: white;
    margin: 20px 0;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: #3498db;
    transform: translateY(-2px);
}

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

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

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

.footer-links a:hover {
    color: white;
}

.footer-contact .contact-item {
    margin-bottom: 15px;
    color: white;
}

.footer-contact .contact-item i {
    color: white;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer .logo, .footer-social, .contact-item {
        justify-content: center;
    }


}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        margin-left: 5px;
    }

    /* Mobile Language Selector - Show mobile version, hide desktop version */
    .language-selector {
        display: none !important;
    }

    .navbar .container {
        position: relative;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .nav-brand {
        order: 1;
        flex: 0 0 auto;
    }

    .language-selector-mobile {
        display: flex !important;
        order: 2;
        flex: 0 0 auto;
        margin: 0 auto;
        position: relative;
    }

    .nav-actions {
        order: 3;
        flex: 0 0 auto;
    }

    .language-selector-mobile .btn-language {
        padding: 8px 12px;
        min-width: 50px;
    }

    .language-selector-mobile .btn-language .flag-icon {
        font-size: 18px;
    }

    .language-selector-mobile .dropdown-menu {
        min-width: 200px;
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        background: none !important;
        margin-top: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }

    .language-selector-mobile .dropdown-menu.show {
        transform: translateX(-50%) translateY(0) !important;
        opacity: 1 !important;
        background: rgba(44, 62, 80, 0.95) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    }

    .language-selector-mobile .lang-option {
        padding: 12px 16px;
        font-size: 15px;
        color: white !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .language-selector-mobile .lang-option:hover {
        background: none !important;
        color: #2ECC71 !important;
        box-shadow: none !important;
    }

    .language-selector-mobile .lang-option.active {
        background: none !important;
        color: #2ECC71 !important;
        box-shadow: none !important;
    }

    .language-selector-mobile .lang-option.active .lang-name {
        color: white !important;
    }

    .language-selector-mobile .lang-option .flag-icon {
        font-size: 22px;
    }

    .language-selector-mobile .lang-option .lang-name {
        color: inherit;
    }

    body.rtl .language-selector-mobile {
        margin: 0 auto;
    }

    body.rtl .language-selector-mobile .dropdown-menu {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    body.rtl .language-selector-mobile .dropdown-menu.show {
        transform: translateX(-50%) translateY(0) !important;
    }

    .hero-title {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .partners-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 28px;
    }

    .contact-title {
        font-size: 36px;
    }

    .whatsapp-btn span span {
        display: none;
    }
}

/* Smooth Scrolling and Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: white;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

.about-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.about-section-subtitle {
    font-size: 24px;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 60px;
}

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

/* Updated styles for the feature list and image */
.about-features-list,
.about-image {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-features-list {
    justify-content: space-between;
}

.about-image {
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* Remove margin from last feature item to ensure proper height calculation */
.about-feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 24px;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

.our-values {
    padding: 100px 0;
    background: #2c3e50;
    text-align: center;
}

.values-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: white;
    font-size: 24px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info {
    padding: 80px 0;
    background: #868D944D;
}

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

.input-contact {
    border-radius: 0 !important;
    border: solid 2px #1D2D3C !important;
}

.contact-card {
    background: #EBEBEB;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    color: white;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.whatsapp-contact-btn {
    background: #2ECC71;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-contact-btn:hover {
    background: #27AE60;
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 100px 0;
    background: #868D944D;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-page-form {
    max-width: none;
}

.contact-page-form .form-group {
    margin-bottom: 25px;
}

.contact-page-form label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-map {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-title,
    .contact-title {
        font-size: 36px;
    }

    .about-section-title,
    .values-title {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 15px;
    }
}

/* ================== PRODUCTS PAGE STYLES ================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb span {
    color: #27ae60;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.page-header-decoration {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.1;
}

.page-header-decoration i {
    font-size: 8rem;
    color: white;
}

/* Products Listing */
.products-listing {
    background: #f8f9fa;
}

.products-grid-listing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}


.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
    margin: 20px;
    border-radius: 10px;
    background: transparent !important;
    padding: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.product-pricing {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.product-specs {
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-detail-btn {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-detail-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.product-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}


.product-pricing {
    margin-bottom: 1.5rem;
}


.product-specs {
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-detail-btn {
    background: #2c3e50;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-detail-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* ================== PRODUCT DETAIL PAGE STYLES ================== */

.product-detail {
    background: #e8e8e8;
}

.product-detail-content {
    background: #EBEBEB;
    padding: 2rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.product-detail-image {
    position: relative;
}

.product-gallery {
    position: relative;
}

.main-product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.main-product-image-xl {
    width: 100%;
    height: 670px;
    border-radius: 10px;
    margin-bottom: 1rem;
    object-fit: contain;
    background: #87B4D163;
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    background: #4685C833;
    padding: 0.3rem;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: #0984e3;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
}

.gallery-prev, .gallery-next {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-size: 2rem;
    color: #1D2D3C;
}

.gallery-prev:hover, .gallery-next:hover {
    background: rgba(29, 45, 60, 0.23);
}

.product-detail-info {
    color: #1D2D3C;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1D2D3C;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.product-pricing-detail {
    backdrop-filter: blur(10px);
    color: #1D2D3C;
    margin-bottom: 1rem;
    line-height: 1.4;
    border-bottom: 2px dashed #1D2D3C;
    border-top: 2px dashed #1D2D3C;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.price-info, .order-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.order-info {
    margin-bottom: 0;
}

.price-label, .order-label {
    font-weight: 500;
    color: #1D2D3C;
}

.price-value, .order-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1D2D3C;
}

.product-specifications {
    margin-bottom: 2rem;
}

.product-specifications h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1D2D3C;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.spec-grid {
    display: grid;
    gap: 0.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #1D2D3C;
    padding: 0.3rem 0;
}

.spec-label {
    font-weight: 500;
}

.spec-value {
    font-weight: 400;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.contact-supplier-btn, .whatsapp-product-btn {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-supplier-btn {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

.contact-supplier-btn:hover {
    background: rgba(44, 62, 80, 1);
    transform: translateY(-2px);
}

.whatsapp-product-btn {
    background: #25d366;
    color: white;
}

.whatsapp-product-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Product Characteristics */
.product-characteristics {
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.characteristics-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.characteristics-list {
    list-style: none;
    padding: 0;
}

.characteristics-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
}

.characteristics-list li:last-child {
    border-bottom: none;
}

.characteristics-list li strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Product Description Table */
.product-description {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: white;
}

.description-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.description-icon {
    width: 40px;
    height: 40px;
    background: #2c3e50;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.description-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.info-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    text-align: center;
}

.info-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-row {
    display: contents;
}

.info-label, .info-value {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.info-label {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

.info-value {
    background: #ecf0f1;
    color: #2c3e50;
}

.info-row:last-child .info-label,
.info-row:last-child .info-value {
    border-bottom: none;
}

.info-table-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-table-container .info-table {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .info-table-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Similar Products */
.similar-products {
    background: transparent !important;
    padding: 3rem 2rem;
    border-radius: 15px;
}

.similar-products-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.similar-products-icon {
    width: 40px;
    height: 40px;
    background: #2c3e50;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.similar-products-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.similar-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.similar-product-card {
    background: #34495e;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: white;
    position: relative;
}

.similar-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.similar-product-image {
    height: 200px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.similar-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.similar-product-info {
    padding: 1.5rem;
    position: relative;
}

.similar-product-name {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    position: absolute;
    bottom: 80px;
    left: 1.5rem;
    right: 1.5rem;
}

.similar-product-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.4;
    position: absolute;
    bottom: 50px;
    left: 1.5rem;
    right: 1.5rem;
}

.similar-product-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 1.5rem;
    right: 1.5rem;
}

.similar-product-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

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

@media (max-width: 1024px) {
    .header-top {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .product-item {
        flex-direction: column;
        background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    }

    .product-image {
        flex: none;
        height: 200px;
        margin: 20px auto;
        max-width: 250px;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-table {
        grid-template-columns: 1fr;
    }

    .similar-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-contact {
        display: none;
    }

    .header-social {
        display: none;
    }

    .whatsapp-btn span span {
        display: none;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-header-decoration {
        display: none;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .product-detail-title {
        font-size: 1.4rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .characteristics-list li {
        font-size: 0.9rem;
    }

    .similar-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .features {
        padding: 50px 0;
    }

    .products {
        padding: 50px 0;
    }

    .team {
        padding: 50px 0;
    }

    .testimonials {
        padding: 50px 0;
    }

    .contact {
        padding: 50px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .products-listing, .product-detail {
        padding: 40px 0;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .product-detail-info, .product-detail-image {
        padding: 1.5rem;
    }

    .product-characteristics, .product-description, .similar-products {
        padding: 2rem 1.5rem;
    }

    .main-product-image {
        height: 250px;
    }

    .main-product-image-xl {
        height: 250px;
        object-fit: contain;
    }
}

/* ================== PRODUCTS PAGE STYLES ================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #27ae60;
}

.breadcrumb span {
    color: #27ae60;
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.page-header-decoration {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.1;
}

.page-header-decoration i {
    font-size: 8rem;
    color: white;
}


.product-item {
    background: white;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease;
}

/* Specific background colors for each product item */
.products-grid-listing .product-item:nth-child(1) {
    background-color: rgba(49, 119, 165, 0.10);
}

.products-grid-listing .product-item:nth-child(2) {
    background-color: rgba(49, 119, 165, 0.20);
}

.products-grid-listing .product-item:nth-child(3) {
    background-color: rgba(49, 119, 165, 0.30);
}

.products-grid-listing .product-item:nth-child(4) {
    background-color: rgba(49, 119, 165, 0.40);
}

.products-grid-listing .product-item:nth-child(5) {
    background-color: rgba(49, 119, 165, 0.50);
}

.products-grid-listing .product-item:nth-child(6) {
    background-color: rgba(49, 119, 165, 0.60);
}

.products-grid-listing .product-item:nth-child(7) {
    background-color: rgba(49, 119, 165, 0.70);
}

.products-grid-listing .product-item:nth-child(8) {
    background-color: rgba(49, 119, 165, 0.80);
}

.products-grid-listing .product-item:nth-child(9) {
    background-color: rgba(49, 119, 165, 0.90);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    flex: 0 0 300px;
    height: 100%;
    overflow: hidden;
    margin: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1D2D3C;
    margin-bottom: 1rem;
    line-height: 1.4;
    border-bottom: 2px dashed #1D2D3C;
    padding-bottom: 1rem;
}

.product-pricing {
    margin-bottom: 1rem;
    border-bottom: 2px dashed #1D2D3C;
    padding-bottom: 1rem;
}

.price-range {
    display: block;
    font-size: 1rem;
    font-weight: 200;
    color: #000000;
    margin-bottom: 0.5rem;
}

.custom-dt {
    font-weight: bold;
}

.min-order {
    display: block;
    font-size: 0.9rem;
    color: #000000;
    font-weight: 200;
}

.product-specs {
    margin-bottom: 1.5rem;
    flex: 1;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 200;
    color: #000000;
}

.spec-row span {
    background: transparent;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 1rem;
}

.product-detail-btn {
    background: #2c3e50;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-detail-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #ecf0f1;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.testimonial-info span {
    font-size: 14px;
    color: #7f8c8d;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #f39c12;
    font-size: 14px;
}

.testimonial-text {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* Footer */
.footer-partners {
    background: #3498db;
    padding: 30px 0;
}

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

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 150px;
}

.partner-logo.iron-logo .logo {
    transform: scale(0.8);
}


.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    color: white;
    margin: 20px 0;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: #3498db;
    transform: translateY(-2px);
}

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

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

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

.footer-links a:hover {
    color: white;
}

.footer-contact .contact-item {
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .contact-item i {
    color: white;
    width: 20px;
}

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

@media (max-width: 1024px) {
    .header-top {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .product-item {
        flex-direction: column;
    }

    .product-image {
        flex: none;
        height: 200px;
        margin: 20px auto;
        max-width: 250px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-contact {
        display: none;
    }

    .header-social {
        display: none;
    }

    .whatsapp-btn span span {
        display: none;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-header-decoration {
        display: none;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .partners-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .products-listing {
        padding: 0;
    }

    .testimonials {
        padding: 50px 0;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,5 80,20 Q95,50 80,80 Q50,95 20,80 Q5,50 20,20" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: contain;
}

.blog-hero .hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2ECC71;
}

.breadcrumb span {
    color: #bdc3c7;
}

.blog-content {
    background: #f8f9fa;
}

.blog-layout {
    gap: 60px;
    align-items: start;
}

.blog-post {
    background: #EBEBEB;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 600px;
}

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

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.post-meta i {
    color: #2ECC71;
    font-size: 24px;
}

.post-meta h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.post-content p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.comment-section {
    background: rgba(52, 152, 219, 0.1);
    padding: 30px;
    border-radius: 12px;
    height: 670px;
}

.comment-prompt {
    margin-bottom: 30px;
}

.comment-prompt p {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
}

.comment-subtitle {
    color: #2c3e50;
    font-weight: 600;
    font-size: 18px;
}

.comment-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ECC71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

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

.submit-btn {
    background: #2ECC71;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: start;
}

.submit-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.blog-sidebar {
    background: white;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    top: 100px;
    height: 670px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f2f6;
}

.sidebar-title i {
    color: #2ECC71;
}

.latest-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latest-post {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f2f6;
}

.latest-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

p.text-ling-slo {
    line-height: 2.8;
    padding: 20px;
}

.post-thumb {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #87B4D14D;
    padding: 10px;
}

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

.post-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.post-info h4 {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.post-date {
    color: #7f8c8d;
    font-size: 13px;
}

/* Partners Styles */
.partners-hero {
    background: #868D94;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-title-container {
    margin-bottom: 30px;
}

.partners-hero .hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 10px 20px;
    border: 2px solid #3498db;
    border-radius: 8px;
    display: inline-block;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.stat-number {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.stat-text {
    color: white;
    font-size: 14px;
}

.hero-description h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description p {
    color: #bdc3c7;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2c3e50;
    color: white;
    border: 2px solid #2c3e50;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

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

.eagle-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.partners-content {
    background: white;
    height: 600px;
}

.partners-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #1E5F8C 100%);
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.partners-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    height: 80px;
}

.partner-logo-special {
    background: none !important;
    box-shadow: none !important;
}

.partner-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.partner-logo img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(1);
}

/* Partnaire page specific - 3 column grid layout */
.partners-main .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Footer partners - horizontal layout */
.footer-partners .partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    background: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.footer-partners .partner-logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    height: 70px;
}

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

.partner-logo-suffix {
    height: 160px !important;
}

.cta-card {
    background: #2c3e50;
    color: white;
    padding: 40px;
    text-align: center;
    height: 600px;
}

.cta-card h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #2ECC71;
    transform: translateX(5px);
}

.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials .section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
}

.testimonials .section-title i {
    color: #2ECC71;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-info h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #f39c12;
    font-size: 12px;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.blog-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Blog and Partners Mobile Styles */
@media (max-width: 1024px) {

    .nav-actions {
        display: flex;
        align-items: center;
    }

    .whatsapp-btn {
        margin-right: 20px;
    }

    .blog-layout, .partners-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-main {
        display: block;
    }

    .blog-post {
        display: block;
        height: auto;
    }

    .blog-sidebar, .partners-sidebar {
        position: static;
        height: auto;
        order: 2;
    }

    .partners-main {
        order: 1;
    }

    /* Ensure proper spacing and prevent conflicts */
    .partners-content {
        padding: 60px 0;
        height: auto;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Enhanced testimonials section spacing */
    .testimonials {
        margin-top: 40px;
        clear: both;
    }

    /* Partners page hero mobile improvements */
    .partners-hero-content {
        padding: 20px 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .blog-hero .hero-title, .partners-hero .hero-title {
        font-size: 2.5rem;
    }

    .partners-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 30px 0;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .comment-section {
        padding: 20px;
        height: auto;
    }

    .partners-grid {
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    /* Partnaire page - 2 columns on tablet */
    .partners-main .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    /* Mobile responsive for partners */
    .partners-grid {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }

    .partner-logo {
        width: 100%;
        max-width: 280px;
        height: 70px;
        padding: 15px 20px;
        margin: 0 auto;
    }

    /* Partnaire page mobile - single column */
    .partners-main .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }

    .partners-main .partner-logo {
        width: 100%;
        height: 80px !important;
        padding: 15px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .partners-main .partner-logo:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .hero-description h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-description p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Partners sidebar mobile */
    .partners-sidebar {
        margin-top: 30px;
        padding: 0 20px;
    }

    /* Enhanced CTA card styling for better mobile experience */
    .cta-card {
        color: white;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
        border: none;
    }

    .cta-card h3 {
        color: white;
    }

    .cta-card {
        padding: 25px;
        text-align: center;
    }

    .cta-card h3 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .cta-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        min-height: 50px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .cta-link:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Testimonials mobile improvements */
    .testimonials {
        padding: 50px 0;
        margin-top: 30px;
        position: relative;
        z-index: 1;
    }

    .testimonials .section-title {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .testimonial-logo {
        align-self: center;
        width: 50px;
        height: 50px;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-text {
        text-align: center;
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .partners-hero {
        padding: 40px 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .hero-description h2 {
        font-size: 1.5rem;
    }

    .hero-description p {
        font-size: 15px;
    }

    .partners-main .partners-grid {
        max-width: 280px;
        gap: 15px;
    }

    .partners-main .partner-logo {
        height: 70px !important;
        padding: 12px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-actions .btn {
        max-width: 250px;
        padding: 14px 20px;
        font-size: 15px;
    }

    .cta-card {
        padding: 20px 15px;
        margin: 0 10px;
        height: 180px;
    }

    .testimonial-info .rating {
        display: flex;
        justify-content: center;
    }

    .cta-card h3 {
        font-size: 16px;
        line-height: 1.4;
    }

    .cta-link {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .testimonial-card {
        padding: 20px 15px;
        margin: 0 10px 15px 10px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background: white;
    }

    .testimonials .section-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    /* Enhanced mobile spacing */
    .partners-sidebar {
        padding: 0 15px;
        margin-top: 25px;
    }

    .testimonials {
        padding: 40px 0;
        margin-top: 25px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
    background-image: url('../images/egle.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.8);
    z-index: 1;
}

.faq-container {
    max-width: 1800px;
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #D9D9D9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #D9D9D9;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-number {
    color: #374151;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    min-width: 20px;
}

.faq-question h3 {
    color: #374151;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #6b7280;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.faq-toggle:hover {
    color: #374151;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #e5e7eb;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px 59px;
}

.faq-answer p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
}

.faq-contact-text {
    color: #374151;
    font-size: 16px;
    margin-bottom: 30px;
}

.faq-contact-link {
    color: #374151;
    text-decoration: underline;
    font-weight: 600;
}

.faq-contact-link:hover {
    color: #1f2937;
}

.faq-contact-btn {
    display: inline-block;
    background: #374151;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.faq-contact-btn:hover {
    background: #1f2937;
    color: white;
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px 45px;
    }

    .faq-contact-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}