/* ============================================================
   styles.php - DMTech Ltd. Fire Alarm Systems
   Version: 1785767695   Generated: 2026-08-03 14:34:55   ============================================================ */

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: #ffffff;
    padding: 0;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    height: 45px;
    width: auto;
}

.site-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #C11B17;
    letter-spacing: -0.3px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation > ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.main-navigation > ul > li {
    position: relative;
    padding: 0 18px;
}

.main-navigation > ul > li > a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #222;
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.main-navigation > ul > li > a:hover,
.main-navigation > ul > li > a.active {
    color: #C11B17;
    border-bottom-color: #C11B17;
}

.dropdown-arrow {
    font-size: 0.6rem;
    margin-left: 4px;
    opacity: 0.6;
    transition: transform 0.3s;
}

.main-navigation > ul > li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ============================================================
   DROPDOWN MENU
   ============================================================ */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #ffffff;
    min-width: 240px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 100;
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
    padding: 0;
    position: relative;
}

.dropdown-menu a {
    padding: 10px 24px;
    font-size: 0.92rem;
    font-weight: 400;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: #fdf0f0;
    color: #C11B17;
}

/* ============================================================
   SUB-DROPDOWN
   ============================================================ */
.sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-5px);
}

.sub-dropdown.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu li:hover .sub-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px 8px 12px;
    background: #f5f7fa;
    border: 1px solid #e0e5ec;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.25s ease;
    min-width: 100px;
    justify-content: center;
}

.lang-toggle:hover {
    background: #C11B17;
    color: #fff;
    border-color: #C11B17;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(193, 27, 23, 0.20);
}

.lang-toggle .lang-flag {
    font-size: 1.2rem;
    line-height: 1;
    margin-right: 2px;
}

.lang-toggle .lang-code {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.lang-toggle .lang-name {
    font-weight: 500;
    font-size: 0.85rem;
}

.lang-toggle .dropdown-arrow {
    font-size: 0.6rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.lang-toggle:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 16px;
    padding: 8px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    list-style: none;
    margin: 0;
    overflow: hidden;
    animation: langDropdownFade 0.3s ease;
}

.lang-dropdown-menu.show {
    display: block;
}

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

.lang-dropdown-menu li {
    display: block;
    padding: 0;
    margin: 0;
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.92rem;
    color: #333;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.lang-dropdown-menu a:hover {
    background: #fdf0f0;
    color: #C11B17;
}

.lang-dropdown-menu a .lang-flag {
    font-size: 1.4rem;
    line-height: 1;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.lang-dropdown-menu a .lang-name-full {
    font-weight: 500;
    flex: 1;
}

.lang-dropdown-menu a .lang-code-small {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    background: #f5f7fa;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.lang-dropdown-menu a .lang-check {
    color: #C11B17;
    font-size: 1rem;
    margin-left: auto;
}

.lang-dropdown-menu a.active-lang {
    background: #fdf0f0;
    color: #C11B17;
    font-weight: 600;
}

.lang-dropdown-menu a.active-lang .lang-code-small {
    background: #C11B17;
    color: #fff;
}

.lang-dropdown-menu a.active-lang .lang-check {
    color: #C11B17;
}

.lang-dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* ============================================================
   MOBILE TOGGLE
   ============================================================ */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #C11B17;
    cursor: pointer;
    padding: 8px 12px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 450px;
    max-height: 750px;
    overflow: hidden;
    margin-bottom: 50px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 50px 60px;
    border-radius: 20px;
}

.slide-content.light {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.slide-content.dark {
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    backdrop-filter: blur(3px);
}

.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.slide-btn {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    background: #C11B17;
    color: #fff;
    transition: all 0.3s;
    border: 2px solid #C11B17;
}

.slide-btn:hover {
    background: transparent;
    color: #C11B17;
}

.slide-btn.light-btn {
    background: #fff;
    color: #C11B17;
    border-color: #fff;
}

.slide-btn.light-btn:hover {
    background: transparent;
    color: #fff;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 5;
}

.slider-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-dots span.active {
    background: #C11B17;
    border-color: #C11B17;
    transform: scale(1.2);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #C11B17;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 30px 0 60px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    cursor: default;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(193, 27, 23, 0.10);
    border-bottom-color: #C11B17;
}

.product-card img {
    max-width: 100%;
    height: 110px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    color: #8a1310;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.product-card .learn-more {
    color: #C11B17;
    font-weight: 600;
}

.product-card .learn-more i {
    transition: transform 0.25s;
}

.product-card .learn-more:hover i {
    transform: translateX(6px);
}

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.stories-section {
    background: #fdf0f0;
    padding: 60px 0;
    border-radius: 30px;
    margin: 40px 0;
}

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

.story-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #C11B17;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.story-card .quote {
    font-size: 1.1rem;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
}

.story-card .author {
    font-weight: 600;
    color: #C11B17;
}

.story-card .position {
    font-size: 0.9rem;
    color: #777;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 60px 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-item {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-bottom-color: #C11B17;
}

.service-item i {
    font-size: 2rem;
    color: #C11B17;
    margin-bottom: 15px;
}

.service-item h4 {
    color: #8a1310;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-item p {
    font-size: 0.95rem;
    color: #555;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: #C11B17;
    padding: 50px 30px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
}

.stat-number .plus {
    font-size: 2rem;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    background: #C11B17;
    padding: 30px 0;
    color: #fff;
}

.page-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb .separator {
    opacity: 0.5;
}

.breadcrumb .current {
    font-weight: 600;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 60px 0;
}

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

.contact-info h2 {
    font-size: 1.8rem;
    color: #C11B17;
    margin-bottom: 10px;
}

.contact-info .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-detail i {
    width: 45px;
    height: 45px;
    background: #fdf0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C11B17;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail .label {
    font-weight: 600;
    color: #8a1310;
    font-size: 0.95rem;
}

.contact-detail .value {
    color: #555;
    font-size: 0.95rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 10px;
}

.map-container iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: #C11B17;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C11B17;
    background: #fff;
}

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

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

.submit-btn {
    background: #C11B17;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #8a1310;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 27, 23, 0.25);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-success,
.form-errors {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.form-errors {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.form-success i,
.form-errors i {
    margin-right: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #2a2a2a;
    color: #fff;
    margin-top: 60px;
}

.footer-top-strip {
    background: #8a1310;
    padding: 20px 0;
    text-align: center;
    position: relative;
    font-size: 1.1rem;
}

.footer-top-strip i {
    margin-right: 12px;
    color: #f5c2c0;
}

.footer-top-strip a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.footer-top-strip::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #8a1310;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 30px 40px;
    padding: 60px 0 40px;
}

.footer-grid h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #f5c2c0;
    font-weight: 600;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 9px;
}

.footer-grid a {
    color: #ccc;
    opacity: 0.85;
    font-weight: 400;
    font-size: 0.92rem;
    transition: opacity 0.2s, color 0.2s;
}

.footer-grid a:hover {
    opacity: 1;
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.footer-contact i {
    width: 20px;
    color: #f5c2c0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: background 0.25s, transform 0.25s;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: #C11B17;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom .developer {
    margin-top: 5px;
    font-size: 0.85rem;
}

.footer-bottom .developer a {
    color: #f5c2c0;
}

/* ============================================================
   RTL SUPPORT
   ============================================================ */
[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 20px;
}

[dir="rtl"] .lang-dropdown-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .lang-toggle {
    flex-direction: row-reverse;
    padding: 8px 12px 8px 16px;
}

[dir="rtl"] .lang-toggle .lang-flag {
    margin-right: 0;
    margin-left: 2px;
}

[dir="rtl"] .lang-toggle .dropdown-arrow {
    margin-left: 0;
    margin-right: 2px;
}

[dir="rtl"] .lang-dropdown-menu a .lang-check {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .lang-dropdown-menu a .lang-flag {
    margin-right: 0;
    margin-left: 2px;
}

[dir="rtl"] .dropdown-arrow {
    margin-left: 0;
    margin-right: 4px;
}

[dir="rtl"] .sub-dropdown {
    left: auto;
    right: 100%;
}

[dir="rtl"] .dropdown-menu li:hover .sub-dropdown {
    left: auto;
    right: 100%;
}

[dir="rtl"] .sub-dropdown a i {
    transform: rotate(180deg);
}

[dir="rtl"] .slide-btn:hover {
    background: transparent;
    color: #C11B17;
}

[dir="rtl"] .product-card .learn-more i {
    transform: rotate(180deg);
}

[dir="rtl"] .product-card .learn-more:hover i {
    transform: rotate(180deg) translateX(6px);
}

[dir="rtl"] .breadcrumb .separator i {
    transform: rotate(180deg);
}

[dir="rtl"] .footer-top-strip i {
    margin-right: 0;
    margin-left: 12px;
}

[dir="rtl"] .contact-detail {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-detail i {
    margin-right: 0;
    margin-left: 18px;
}

[dir="rtl"] .footer-contact li {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-contact i {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .form-success i,
[dir="rtl"] .form-errors i {
    margin-right: 0;
    margin-left: 8px;
}

[dir="rtl"] .story-card {
    border-left: none;
    border-right: 4px solid #C11B17;
}

[dir="rtl"] .stats-grid .stat-item {
    direction: ltr;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        width: 100%;
        padding: 15px 0 10px;
    }

    .main-navigation.open {
        display: block;
    }

    .main-navigation > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-navigation > ul > li {
        width: 100%;
        padding: 0;
    }

    .main-navigation > ul > li > a {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border: none;
        background: #f8fafc;
        padding: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        transition: none;
    }

    .dropdown-menu.show {
        display: block;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu a {
        padding: 10px 30px;
    }

    .sub-dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        border: none;
        background: #f0f4f9;
        padding: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        transition: none;
        transform: none;
    }

    .sub-dropdown.show {
        display: block;
        transform: none;
    }

    .sub-dropdown a {
        padding: 8px 45px;
    }

    .dropdown-menu li:hover .sub-dropdown {
        display: none;
    }

    .dropdown-menu li.active .sub-dropdown {
        display: block;
    }

    .language-switcher {
        margin: 10px 0 0;
        width: 100%;
    }

    [dir="rtl"] .language-switcher {
        margin: 10px 0 0;
    }

    .lang-dropdown {
        width: 100%;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    .lang-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 12px;
        margin-top: 5px;
        border: 1px solid #e0e5ec;
        animation: none;
    }

    .lang-dropdown-menu a {
        padding: 12px 18px;
    }

    [dir="rtl"] .lang-toggle {
        padding: 10px 16px;
    }

    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content {
        padding: 30px 25px;
    }

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

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

    .page-header-content {
        flex-direction: column;
        text-align: center;
    }

    [dir="rtl"] .sub-dropdown {
        right: auto;
        left: auto;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 25px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .slide-content h2 {
        font-size: 1.4rem;
    }

    .slide-content {
        padding: 20px 15px;
    }

    .site-title {
        font-size: 1.1rem;
    }

    .header-inner {
        padding: 8px 0;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-form {
        padding: 20px 15px;
    }

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

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

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

    .slide-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .stats-grid .stat-item {
        padding: 5px;
    }

    .footer-top-strip {
        font-size: 0.95rem;
        padding: 15px 10px;
    }

    .footer-top-strip::after {
        border-left-width: 15px;
        border-right-width: 15px;
        border-top-width: 15px;
        bottom: -15px;
    }

    .map-container iframe {
        height: 200px;
    }

    .lang-toggle .lang-name {
        display: none;
    }

    .lang-toggle {
        min-width: auto;
        padding: 8px 14px;
    }

    .lang-dropdown-menu {
        min-width: auto;
    }

    .lang-dropdown-menu a .lang-name-full {
        font-size: 0.85rem;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .site-header {
        position: static;
        box-shadow: none;
    }

    .nav-toggle,
    .language-switcher,
    .slider-dots {
        display: none !important;
    }

    .hero-slider {
        height: auto;
        min-height: auto;
        max-height: none;
        margin-bottom: 20px;
    }

    .slide {
        position: static;
        opacity: 1 !important;
        padding: 20px 0;
        display: block !important;
    }

    .slide:not(:first-child) {
        page-break-before: always;
    }

    .slide-bg {
        display: none;
    }

    .slide-content {
        background: #fff !important;
        color: #333 !important;
        box-shadow: none !important;
        padding: 20px;
    }

    .slide-content.dark {
        background: #fff !important;
        color: #333 !important;
    }

    .slide-btn {
        display: inline-block;
        background: #C11B17 !important;
        color: #fff !important;
    }

    .site-footer {
        margin-top: 20px;
    }

    .footer-top-strip::after {
        display: none;
    }

    .social-icons {
        display: none;
    }
}
