/* CSS Dosyası - styles.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header Styles */
.header {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover,
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover .navbar,
.header.scrolled .navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Burger Button */
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-line {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover .burger-line,
.header.scrolled .burger-line {
    background: #333;
}

.burger-btn.active .burger-line {
    background: #333;
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 150px;
    filter: brightness(0) invert(1);
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover .logo-img,
.header.scrolled .logo-img {
    filter: none;
}

/* Navbar Icons */
.navbar-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.country-selector {
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover .country-selector,
.header.scrolled .country-selector {
    color: #333;
}

.icon-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover .icon-link,
.header.scrolled .icon-link {
    color: #333;
}

.icon-link:hover {
    color: #215020;
}

/* Menu Bar (Sabit Menü) */
.menu-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header:hover .menu-bar,
.header.scrolled .menu-bar {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-list {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 2rem;
}

.menu-link {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.header:hover .menu-link,
.header.scrolled .menu-link {
    color: #333;
}

.menu-link:hover {
    color: #215020;
}

.sale-link {
    color: #e74c3c !important;
    font-weight: 600;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

#accessories-dropdown .dropdown-description {
    min-height: 300px;
}

.dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid;
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    min-height: fit-content;
}

.dropdown-nav {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 3rem;
    max-height: 70vh;
    overflow-y: auto;
    position: sticky;
    top: 0;
}

.dropdown-nav-list {
    list-style: none;
    padding-right: 1rem;
}

.dropdown-nav-list::-webkit-scrollbar {
    width: 6px;
}

.dropdown-nav-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.dropdown-nav-list::-webkit-scrollbar-thumb {
    background: rgba(33, 80, 32, 0.3);
    border-radius: 3px;
}

.dropdown-nav-list::-webkit-scrollbar-thumb:hover {
    background: rgba(33, 80, 32, 0.5);
}

.dropdown-nav-list li {
    margin-bottom: 0.5rem;
}

.dropdown-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.8rem 1rem;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-nav-link:hover,
.dropdown-nav-link.active {
    background: rgba(33, 80, 32, 0.05);
    color: #215020;
    transform: translateX(8px);
}

.dropdown-nav-link:hover::before,
.dropdown-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #215020;
    border-radius: 0 3px 3px 0;
}

.dropdown-description {
    position: relative;
    min-height: 200px;
    padding-left: 2rem;
}

.description-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 2rem;
    right: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.description-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.description-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #215020;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.description-content h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #215020;
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: 0.3px;
}

.description-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    max-width: 600px;
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #215020;
    font-style: italic;
    margin: 1.5rem 0;
    padding: 0.8rem 1rem;
    background: rgba(33, 80, 32, 0.05);
    border-left: 3px solid #215020;
    border-radius: 0 4px 4px 0;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #215020;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: rgba(33, 80, 32, 0.08);
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.feature-list {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
}

.feature-item {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-item strong {
    color: #215020;
    font-weight: 600;
}

/* Megamenu Overlay */
.megamenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.megamenu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Megamenu (RH benzeri tam ekran) */
.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.megamenu.active {
    transform: translateY(0);
}

.megamenu-close-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 3rem;
    color: #333;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.megamenu-close-btn:hover {
    color: #215020;
}

.megamenu-content {
    padding: 4rem 2rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: 3rem;
    flex: 1;
    margin-top: 2rem;
    overflow: hidden;
    align-items: start;
}

.megamenu-category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.megamenu-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-info {
    flex: 1;
}

.category-tag {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.category-subtitle {
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    margin: 1.2rem 0 0.6rem 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-links {
    list-style: none;
    margin-bottom: 1rem;
}

.category-links li {
    margin-bottom: 0.4rem;
}

.category-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.category-links a:hover {
    color: #215020;
}

/* Megamenu Footer */
.megamenu-footer {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #215020;
}

/* ========================================
   MOBILE MENU SYSTEM STYLES
   ======================================== */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 1600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 2rem 1.5rem 1rem 1.5rem;
    border-bottom: 2px solid rgba(33, 80, 32, 0.1);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(33, 80, 32, 0.1);
    color: #215020;
    transform: rotate(90deg);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mobile-menu-logo img {
    height: 60px;
    width: auto;
}

.mobile-menu-title {
    text-align: center;
    font-size: 1.1rem;
    color: #215020;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 0 0 2rem 0;
}

/* Mobile Menu Categories */
.mobile-category {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-category-header {
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-category-header:hover {
    background: rgba(33, 80, 32, 0.05);
    color: #215020;
}

.mobile-category-header.active {
    background: rgba(33, 80, 32, 0.08);
    color: #215020;
    border-left: 3px solid #215020;
}

.mobile-category-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-category-header.active .mobile-category-icon {
    transform: rotate(180deg);
}

/* Mobile Dropdown Content */
.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(33, 80, 32, 0.02);
}

.mobile-dropdown-content.active {
    max-height: 600px;
}

.mobile-dropdown-list {
    list-style: none;
    padding: 0.5rem 0;
}

.mobile-dropdown-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.8rem 2.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-dropdown-link:hover,
.mobile-dropdown-link:active {
    background: rgba(33, 80, 32, 0.08);
    color: #215020;
    padding-left: 3rem;
}

.mobile-dropdown-link:hover::before,
.mobile-dropdown-link:active::before {
    content: '→';
    position: absolute;
    left: 2rem;
    color: #215020;
    font-weight: 600;
}

/* Simple Menu Items (Non-dropdown) */
.mobile-simple-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-simple-link:hover {
    background: rgba(33, 80, 32, 0.05);
    color: #215020;
    border-left: 3px solid #215020;
}

.mobile-simple-link.current {
    background: rgba(33, 80, 32, 0.1);
    color: #215020;
    font-weight: 600;
    border-left: 4px solid #215020;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 2rem 1.5rem;
    border-top: 2px solid rgba(33, 80, 32, 0.1);
    margin-top: 2rem;
    text-align: center;
}

.mobile-contact-info {
    margin-bottom: 1.5rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #666;
}

.mobile-contact-icon {
    color: #215020;
    font-size: 1rem;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(33, 80, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #215020;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: #215020;
    color: white;
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    position: relative;
}

.hero {
    height: 100vh;
    background-image: url('../img/ashivabg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Body Scroll Lock when Mobile Menu Active */
body.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Mobile Menu Loading Animation */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu.loading {
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1a3d1a 0%, #215020 100%);
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative Pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 75%,
    transparent 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sol Kolon - Logo ve Slogan */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-slogan {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Orta Kolon - Şartlar ve Koşullar */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-legal-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-legal-links a:hover::before {
    opacity: 1;
}

/* Sağ Kolon - İletişim Bilgileri */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.7);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: white;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.footer-copyright .brand-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 2px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet - Large */
@media (max-width: 1024px) {
    /* Dropdown Menu */
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dropdown-nav {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .dropdown-description {
        padding-left: 0;
    }

    .description-content {
        left: 0;
    }

    /* Megamenu */
    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
    }

    .megamenu-category img {
        height: 150px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-legal-links {
        align-items: center;
    }

    .footer-legal-links a {
        padding-left: 0;
    }

    .footer-legal-links a:hover {
        padding-left: 15px;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Hide Desktop Menu */
    .menu-bar {
        display: none !important;
    }

    .megamenu {
        display: none !important;
    }
}

/* Tablet - Medium */
@media (max-width: 768px) {
    /* Navbar */
    .navbar-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 60px;
        max-width: 120px;
    }

    /* Menu */
    .menu-container {
        padding: 0 1rem;
    }

    .menu-list {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }

    .menu-link {
        font-size: 0.8rem;
    }

    /* Dropdown */
    .dropdown-content {
        padding: 2rem 1rem;
    }

    .dropdown-nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .description-content h3 {
        font-size: 1.3rem;
    }

    .description-content p {
        font-size: 0.9rem;
    }

    /* Megamenu */
    .megamenu-content {
        padding: 3rem 1rem 2rem 1rem;
    }

    .megamenu-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 2rem;
    }

    .megamenu-close-btn {
        top: 1rem;
        left: 1rem;
        font-size: 2rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 0.9rem;
    }

    /* Navbar Icons */
    .navbar-icons {
        gap: 1rem;
    }

    .country-selector {
        font-size: 0.8rem;
    }
}

/* Mobile - Large */
@media (max-width: 640px) {
    /* Footer */
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-slogan {
        font-size: 1.1rem;
    }

    .contact-value {
        font-size: 0.95rem;
    }

    .footer-logo {
        width: 120px;
    }
}

/* Mobile - Small */
@media (max-width: 480px) {
    /* Mobile Menu */
    .mobile-menu {
        width: 95%;
        max-width: none;
    }

    .mobile-menu-header {
        padding: 1.5rem 1rem 0.8rem 1rem;
    }

    .mobile-menu-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.8rem;
    }

    .mobile-category-header {
        padding: 1rem 1rem;
        font-size: 0.9rem;
    }

    .mobile-dropdown-link {
        padding: 0.7rem 2rem;
        font-size: 0.85rem;
    }

    .mobile-simple-link {
        padding: 1rem 1rem;
        font-size: 0.9rem;
    }

    /* Megamenu */
    .megamenu-category img {
        height: 120px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }

    /* Footer Links */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Logo */
    .logo-img {
        height: 50px;
        max-width: 100px;
    }
}

/* Desktop Only - Hide Mobile Menu */
@media (min-width: 1025px) {
    .mobile-menu-overlay,
    .mobile-menu {
        display: none !important;
    }
}