/* İletişim Sayfası için Özel CSS - Eski Stilleri Koruyan */

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    padding: 0;
}

/* Top Bar */
.top-bar {
    background: #2a2a2a;
    color: white;
    font-size: 0.8rem;
    padding: 6px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.top-bar-item:hover {
    opacity: 1;
}

.top-bar-item i {
    color: #ec1c24;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

.top-bar-item span {
    font-weight: 400;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.social-link:hover {
    background: #ec1c24;
    transform: translateY(-2px);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 38px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo h2 {
    color: #ec1c24;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #ec1c24;
}

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

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

/* Force opaque background for active dropdown - ENHANCED */
.dropdown.active .dropdown-menu,
.dropdown.active .dropdown-menu *,
.dropdown.active .dropdown-menu li,
.dropdown.active .dropdown-menu a {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Additional active state styles */
.dropdown.active .dropdown-menu {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile override - remove ALL transforms */
@media (max-width: 768px) {
    .dropdown-menu,
    .dropdown-menu *,
    .dropdown.active .dropdown-menu,
    .dropdown.active .dropdown-menu *,
    .dropdown.active .dropdown-menu li,
    .dropdown.active .dropdown-menu a,
    .navbar .nav-menu .dropdown.active .dropdown-menu,
    .navbar .nav-menu .dropdown.active .dropdown-menu *,
    .navbar .nav-menu .dropdown.active .dropdown-menu li,
    .navbar .nav-menu .dropdown.active .dropdown-menu a {
        transform: none !important;
    }
}

/* Force solid background for active dropdown on all elements */
.dropdown.active .dropdown-menu,
.dropdown.active .dropdown-menu *,
.dropdown.active .dropdown-menu li,
.dropdown.active .dropdown-menu a {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Most specific selector to override any other CSS - ULTIMATE FIX */
.navbar .nav-menu .dropdown.active .dropdown-menu,
.navbar .nav-menu .dropdown.active .dropdown-menu *,
.navbar .nav-menu .dropdown.active .dropdown-menu li,
.navbar .nav-menu .dropdown.active .dropdown-menu a,
.dropdown.active .dropdown-menu,
.dropdown.active .dropdown-menu *,
.dropdown.active .dropdown-menu li,
.dropdown.active .dropdown-menu a {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Desktop specific active dropdown styles - ENHANCED */
@media (min-width: 769px) {
    .dropdown.active .dropdown-menu {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    .dropdown.active .dropdown-menu *,
    .dropdown.active .dropdown-menu li,
    .dropdown.active .dropdown-menu a {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* Ultimate override for desktop active dropdown */
@media (min-width: 769px) {
    .navbar .nav-menu .dropdown.active .dropdown-menu,
    .navbar .nav-menu .dropdown.active .dropdown-menu *,
    .navbar .nav-menu .dropdown.active .dropdown-menu li,
    .navbar .nav-menu .dropdown.active .dropdown-menu a,
    .dropdown.active .dropdown-menu,
    .dropdown.active .dropdown-menu *,
    .dropdown.active .dropdown-menu li,
    .dropdown.active .dropdown-menu a {
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    background-color: #ffffff;
    min-width: 560px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001;
    padding: 1rem 0;
    margin-top: 10px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.dropdown-menu li {
    list-style: none;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.dropdown-menu li:nth-child(2n) {
    border-right: none;
}

.dropdown-menu li:nth-child(n+13) {
    border-bottom: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    min-height: 60px;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa !important;
    background-color: #f8f9fa !important;
    color: #ec1c24;
    transform: translateX(5px);
}

.dropdown-menu i {
    width: 16px;
    color: #ec1c24;
    font-size: 0.9rem;
}

.dropdown-menu a:hover i {
    color: #ec1c24;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2a2a2a;
    margin: 3px 0;
    transition: 0.3s;
}

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

.contact-hero.with-navbar {
    padding-top: 188px;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

.contact-main {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Contact Info Cards */
/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Address Cards */
.address-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Center the third address card (factory) */
.address-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 800px;
    min-height: 120px;
}

.address-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #ec1c24;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.address-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f5f5f5;
}

.address-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon i {
    font-size: 1.5rem;
    color: white;
}

.address-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.address-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-item i {
    font-size: 1.1rem;
    color: #ec1c24;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.address-item span {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    min-height: 120px;
    justify-content: center;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.4rem;
    color: white;
}

.contact-info-card .fa-whatsapp {
    color: white;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Contact Content Wrapper */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 2rem;
    text-align: center;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec1c24;
    background: white;
    box-shadow: 0 0 0 3px rgba(236, 28, 36, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ec1c24;
    border-color: #ec1c24;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.privacy-link {
    color: #ec1c24;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #ec1c24, #d1171f);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(236, 28, 36, 0.3);
}

.submit-btn i {
    font-size: 1rem;
}

/* Map Section Large */
.map-section-large {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.map-container-large {
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.map-container-large iframe {
    border-radius: 0;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
    display: block;
    margin: 0;
    padding: 0;
}

.map-container-large:hover iframe {
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #ec1c24;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}

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

.footer-section h3 {
    color: #ec1c24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #ec1c24;
}

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

.products-column ul {
    list-style: none;
    padding: 0;
}

.products-column ul li {
    margin-bottom: 0.5rem;
}

.products-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.products-column ul li a:hover {
    color: #ec1c24;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #ec1c24;
    margin-top: 0.1rem;
    width: 14px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-item span {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-media-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-section h4 {
    color: #ec1c24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link-footer:hover {
    transform: translateY(-2px);
    background: #ec1c24;
    color: white;
    box-shadow: 0 4px 12px rgba(236, 28, 36, 0.3);
}

.social-link-footer.facebook:hover {
    background: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link-footer.twitter:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link-footer.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.social-link-footer.youtube:hover {
    background: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.megasav-link {
    color: #d4983b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.megasav-link:hover {
    color: #c48830;
    text-decoration: underline;
}

/* Active nav link */
.nav-link.active {
    color: #ec1c24;
}

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

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .map-container-large {
        height: 500px;
    }
}

/* Mobile Responsive Design - Enhanced */
@media (max-width: 768px) {
    /* Top Bar Mobile - Hidden */
    .top-bar {
        display: none;
    }
    
    /* Navigation Mobile - Adjusted for no top bar */
    .navbar {
        top: 0;
        padding: 0.8rem 0;
    }
    
    .navbar.scrolled {
        top: 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 52px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar.scrolled .nav-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        justify-content: center;
        color: #2a2a2a;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active {
        color: #2a2a2a !important;
    }
    
    /* Dropdown Mobile */
    .dropdown-menu {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0;
        border-radius: 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        left: 0 !important;
        top: auto !important;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 1000px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 10001;
        display: block !important;
        grid-template-columns: none !important;
        transform: none !important;
        left: 0 !important;
        position: static !important;
        top: auto !important;
        width: 100% !important;
        overflow: visible !important;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        border-right: none !important;
        border-bottom: 1px solid #e9ecef !important;
        display: block !important;
        width: 100% !important;
    }
    
    .dropdown-menu li:nth-child(2n) {
        border-right: none !important;
    }
    
    .dropdown-menu li:nth-child(n+13) {
        border-bottom: 1px solid #e9ecef !important;
    }
    
    .dropdown-menu a {
        padding: 12px 20px !important;
        border: none !important;
        text-align: left !important;
        margin: 0 !important;
        border-radius: 0 !important;
        font-size: 1rem !important;
        min-height: auto !important;
        display: flex !important;
        width: 100% !important;
        color: #2a2a2a !important;
        font-weight: 500 !important;
    }
    
    .dropdown-menu a:hover {
        transform: none;
        background: #e9ecef;
    }
    
    /* Main Content - Adjusted for no top bar */
    .main-content {
        margin-top: 70px;
    }
    
    .page-header {
        margin-top: 70px;
    }
    
    .hero-section {
        margin-top: 70px;
    }
    
    /* Contact Hero Section Mobile */
    .contact-hero {
        padding: 3rem 0;
        text-align: center;
        background: linear-gradient(135deg, #2a2a2a 0%, #ec1c24 100%);
        color: white;
        margin-top: 70px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .contact-hero p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.95;
        line-height: 1.6;
    }
    
    /* Contact Main Section Mobile */
    .contact-main {
        padding: 2rem 0 0 0;
        background: #f8f9fa;
    }
    
    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Remove extra gap after map section on mobile */
    .contact-layout > *:last-child {
        margin-bottom: 0;
    }
    
    /* Map section spacing */
    .contact-layout .map-section-large {
        margin-top: 0;
        margin-bottom: 2rem;
    }
    
    /* Contact Info Section Mobile */
    .contact-info-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Address Cards Mobile */
    .address-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .address-card {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .address-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .address-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .address-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ec1c24 0%, #c41820 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }
    
    .address-header h3 {
        font-size: 1.2rem;
        color: #2a2a2a;
        font-weight: 600;
        margin: 0;
    }
    
    .address-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .address-item {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .address-item:last-child {
        margin-bottom: 0;
    }
    
    .address-item i {
        color: #ec1c24;
        font-size: 1rem;
        margin-top: 0.2rem;
        min-width: 16px;
    }
    
    .address-item span {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
    }
    
    /* Contact Info Grid Mobile */
    .contact-info-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-card {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .contact-info-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ec1c24 0%, #c41820 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        color: #2a2a2a;
        margin-bottom: 0.3rem;
        font-weight: 600;
    }
    
    .contact-details p {
        font-size: 1rem;
        color: #555;
        margin: 0;
        font-weight: 500;
    }
    
    /* Map Section Mobile */
    .map-section-large {
        margin: 0;
        padding: 0;
        background: transparent;
    }
    
    .map-container-large {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 0;
        height: 450px;
    }
    
    .map-container-large iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    /* Footer Mobile - Only copyright visible */
    .footer {
        padding: 20px 0 15px;
        background: #2a2a2a;
        margin-top: 0;
    }
    
    .footer-content {
        display: none;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 15px 0;
        border-top: none;
        color: #999;
        font-size: 0.85rem;
        margin: 0;
    }
    
    .footer-bottom p {
        margin: 0;
        padding: 0 20px;
    }
    
    .megasav-link {
        color: #d4983b;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .megasav-link:hover {
        color: #c48830;
        text-decoration: underline;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Top Bar Mobile - Hidden */
    .top-bar {
        display: none;
    }
    
    /* Navigation Mobile - Adjusted for no top bar */
    .navbar {
        top: 0;
        padding: 0.6rem 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 46px;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .navbar.scrolled .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.7rem 2.5rem;
        font-size: 0.95rem;
    }
    
    /* Main Content - Adjusted for no top bar */
    .main-content {
        margin-top: 60px;
    }
    
    .page-header {
        margin-top: 60px;
    }
    
    .hero-section {
        margin-top: 60px;
    }
    
    /* Contact Hero Section Mobile - Extra Small */
    .contact-hero {
        padding: 2rem 0;
        margin-top: 60px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Contact Main Section Mobile - Extra Small */
    .contact-main {
        padding: 1.5rem 0 0 0;
    }
    
    .contact-layout {
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    /* Address Cards Mobile - Extra Small */
    .address-cards {
        gap: 1rem;
    }
    
    .address-card {
        padding: 1.2rem;
    }
    
    .address-header {
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .address-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .address-header h3 {
        font-size: 1.1rem;
    }
    
    .address-item {
        gap: 0.6rem;
        margin-bottom: 0.6rem;
        padding: 0.4rem 0;
    }
    
    .address-item i {
        font-size: 0.9rem;
        margin-top: 0.1rem;
        min-width: 14px;
    }
    
    .address-item span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Contact Info Grid Mobile - Extra Small */
    .contact-info-grid {
        gap: 0.8rem;
    }
    
    .contact-info-card {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    /* Map Section Mobile - Extra Small */
    .map-section-large {
        margin: 0;
        padding: 0;
        background: transparent;
    }
    
    .map-container-large {
        margin: 0;
        padding: 0;
        height: 250px;
    }
    
    .map-container-large iframe {
        height: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    /* Footer Mobile - Only copyright visible */
    .footer {
        padding: 15px 0 10px;
        margin-top: 0;
    }
    
    .footer-bottom {
        padding: 10px 0;
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        padding: 0 15px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover::after {
        width: 0;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        background: #ffffff !important;
        z-index: 10001;
    }
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-left: 1rem;
    z-index: 1000;
}

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

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
}

.language-btn:hover {
    border-color: #ec1c24;
    box-shadow: 0 4px 12px rgba(236, 28, 36, 0.2);
    transform: translateY(-1px);
}

.language-btn.active {
    border-color: #ec1c24;
    background: #ec1c24;
    color: white;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.language-btn:hover .flag-icon {
    transform: scale(1.1);
}

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

.language-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    margin-top: 5px;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #2a2a2a;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
    color: #ec1c24;
    transform: translateX(5px);
}

.language-option .flag-icon {
    width: 18px;
    height: 18px;
}

.language-option span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Language Switcher Mobile */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0.5rem;
    }

    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .flag-icon {
        width: 20px;
        height: 20px;
    }

    .language-menu {
        min-width: 140px;
        right: -10px;
    }

    .language-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .language-option .flag-icon {
        width: 16px;
        height: 16px;
    }
}
