/* Reset & Basic Styles */
html {
    scroll-behavior: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* Header Styles */
.site-header {
    position: absolute; /* Not fixed initially, so it scrolls away */
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background: transparent;
    color: #fff;
    transition: background-color 0.3s, color 0.3s, transform 0.3s ease-out;
    will-change: transform;
    /* Ensure no margin/padding interference */
    margin: 0;
    padding: 0;
}

.header-container {
    width: 96%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Side: Logo + Menu */
.header-left {
    display: flex;
    align-items: center;
    gap: 80px; /* Spacer between Logo and Menu */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 27px; /* Adjusted based on user request */
    display: block;
}

/* Default: Show White, Hide Color */
.logo-white {
    display: block !important;
}

.logo-color {
    display: none !important;
}

.main-menu ul {
    display: flex;
    gap: 40px; /* Adjusted spacing to 40px */
}

.main-menu a {
    font-size: 14px;
    font-weight: 400;
    color: #fff; /* Default white on banner */
    position: relative;
    padding-bottom: 5px; /* Space for the indicator */
}

.main-menu a.active {
    font-weight: 600; /* Bold for active item */
}

.main-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Position below text */
    left: 50%;
    transform: translateX(-50%);
    width: 20px; /* Small white bar width */
    height: 3px; /* Small white bar height */
    background-color: #fff; /* White color */
    border-radius: 2px;
}

/* Scrolled / Fixed State overrides for active item */
.site-header.scrolled-fixed .main-menu a.active::after {
    background-color: #333; /* Black bar when scrolled */
}

/* Right Side: Language + Auth */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px; /* Adjusted to 25px */
}

.lang-switch {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; /* Full centering */
    width: 24px;
    height: 24px;
    position: relative; /* Added for dropdown positioning */
}

/* Language Dropdown (Reusing styles concept from user-dropdown) */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: -10px; /* Slight offset to align nicely */
    margin-top: 15px; /* Spacing from icon */
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 120px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1001;
}

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

.lang-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 18px; /* Align with icon center approximately */
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.04);
}

.lang-dropdown ul li {
    display: block;
}

.lang-dropdown ul li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 14px;
    transition: background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.lang-dropdown ul li a:hover {
    background: #f5f5f5;
    color: #000;
}

.lang-dropdown ul li a.active {
    background: #f0f0f0;
    font-weight: 600;
    color: #000;
}

.icon-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.icon-white, .icon-black {
    display: flex; /* Ensure SVG is centered inside */
    align-items: center;
    justify-content: center;
}

/* Default: Show White Icon, Hide Black Icon */
.icon-white {
    display: flex;
    width: 100%;
    height: 100%;
}

.icon-black {
    display: none;
    width: 100%;
    height: 100%;
}

/* Auth Area */
.auth-area .btn-auth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.user-nickname {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-right: 8px;
}

.site-header.scrolled-fixed .user-nickname {
    color: #333;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 160px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1001;
}

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

/* Dropdown triangle/arrow (optional, but good for UX) */
.user-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.04);
}

.user-dropdown ul li {
    display: block;
}

.user-dropdown ul li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    transition: background 0.2s;
}

.user-dropdown ul li a:hover {
    background: #f5f5f5;
    color: #000;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
    background: #000;
}

.banner-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out; /* Configurable speed in JS logic usually overrides or matches this */
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: block; /* For <a> tags */
    text-decoration: none; /* For <a> tags */
}

.banner-media-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */ /* Removed: now set via inline style from PHP */
    pointer-events: none;
}

.banner-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 4%; /* Match header margin roughly */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none; /* Let clicks pass through to link if needed, but slide is link */
    z-index: 2;
}

.banner-top-text {
    /* margin-top: 150px; */
    color: #fff;
    text-align: left;
    margin: auto 0;
    padding: 40px;
}

.banner-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 0px;
    /* Animation removed */
}

.banner-subtitle {
    font-size: 22px;
    font-weight: 400;
    /* Animation removed */
}

.banner-bottom-text {
    margin-bottom: 120px;
    color: #fff;
    font-size: 1rem;
    /* Animation removed */
}

/* @keyframes fadeInUp removed as it is no longer used */

/* Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none; /* Allow clicks on buttons only */
    z-index: 3;
}

.slider-controls button {
    background: transparent; /* No background */
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: auto;
    opacity: 0.6; /* Slight transparency by default */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: transparent;
    opacity: 1;
    transform: scale(1.1); /* Slight zoom on hover */
}

.slider-controls button svg {
    width: 50px; /* Adjust size via CSS if needed, though SVG has attributes */
    height: 50px;
}

/* Mobile styles moved to end */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    width: 22px;
    height: 16px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1002; /* Above overlay */
    position: relative;
}

.mobile-menu-btn .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.site-header.scrolled-fixed .mobile-menu-btn .line {
    background-color: #333;
}

/* Hamburger Animation to X */
.mobile-menu-btn.active .line-1 {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .line-2 {
    opacity: 0;
}

.mobile-menu-btn.active .line-3 {
    transform: translateY(-7px) rotate(-45deg);
}

/* Force black color when menu is open (because overlay is white) */
.mobile-menu-btn.active .line {
    background-color: #333 !important;
}

/* Mobile Menu Open State - Force Color Logo */
.site-header.mobile-menu-open .logo-white {
    display: none !important;
}

.site-header.mobile-menu-open .logo-color {
    display: block !important;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1001; /* Behind header content (if header z-index is higher? No, header is 1000) */
    /* Wait, if header is 1000, and this is INSIDE header, it's part of header stack. 
       If I want it to cover the screen, fixed is fine.
       If I want logo/btn to be visible, they must be higher z-index than this overlay.
       Logo/Btn are siblings or cousins.
       I need to ensure Logo and Btn have z-index > overlay.
    */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Ensure Logo and Btn are above overlay */
.logo, .header-right {
    position: relative;
    z-index: 1002; 
}

/* Fix: If overlay is white, we need Logo and Btn to turn black */
/* We can handle this with a class on the header or specific styles when active */

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    text-align: center;
    width: 100%;
}

.mobile-menu-list li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active .mobile-menu-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for list items */
.mobile-nav-overlay.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-overlay.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.6s; }

.mobile-menu-list a {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding: 10px 0; /* Add some padding for touch target */
}

.mobile-menu-list a.active {
    color: #000;
    font-weight: 700;
}

.mobile-menu-list a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s;
    margin: 5px auto 0;
}

.mobile-menu-list a:hover::after,
.mobile-menu-list a.active::after {
    width: 100%;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #fff;
}

.content-section {
    padding: 60px 0;
}

.container {
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Scrolled / Fixed State */
.site-header.scrolled-fixed {
    position: fixed;
    top: 0;
    background: #fff;
    color: #333;
    box-shadow: none; /* Removed shadow */
    border-bottom: 1px solid #f5f5f5; /* Added bottom border */
    animation: slideDown 0.3s ease-in-out forwards;
}

.site-header.is-hiding {
    position: fixed;
    top: 0;
    background: #fff;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    animation: fadeOut 0.3s ease-in-out forwards;
    pointer-events: none;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(0); }
}

/* Header transitioning animation for banner slide switch */
.site-header.header-transitioning {
    transform: translateY(-100%);
    will-change: transform;
    backface-visibility: hidden;
}

/* Scrollbar hiding */
::-webkit-scrollbar { 
     width: 0px; 
} 
::-webkit-scrollbar-thumb { 
     width: 0px; 
     background: #888; 
} 
::-webkit-scrollbar-track { 
     width: 0px; 
     background: #f1f1f1; 
}

.site-header.scrolled-fixed .logo-white {
    display: none !important;
}

.site-header.scrolled-fixed .logo-color {
    display: block !important;
}

.site-header.scrolled-fixed .main-menu a {
    color: #333;
}

.site-header.scrolled-fixed .icon-white {
    display: none;
}

.site-header.scrolled-fixed .icon-black {
    display: flex; /* Changed from block to flex to maintain centering */
}

/* Product Showcase Section */
.products-section {
    padding: 80px 0; /* Increased padding */
    background-color: #fff;
}

.section-title {
    font-size: 32px; /* Increased back slightly */
    font-weight: 600;
    margin-bottom: 80px; /* Updated margin */
    margin-top: 10px; /* Added margin */
    color: #333;
    letter-spacing: -0.5px;
    text-align: center;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Increased gap between items */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.product-item {
    display: flex;
    height: 380px;
    width: 100%;
}

.product-left {
    flex: 0 0 55%; /* Updated to 55% */
    background-color: #F5F5F5;
    padding: 50px; /* Increased padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    border-radius: 15px; /* Added border-radius */
}

.product-right {
    flex: 0 0 45%; /* Updated to 45% to balance */
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* New Wrapper Layout */
.product-content-wrapper {
    display: flex;
    gap: 25px; /* Gap between icon and text column */
    width: 100%;
    height: 100%; /* Ensure full height to center if needed, but flex column justifies content */
    align-items: flex-start; /* Align icon to top */
}

.product-info-group {
    display: flex;
    flex-direction: column;
    flex: 1; /* Take remaining width */
    height: 100%; /* Fill height to distribute space if needed */
}

.product-header-group {
    margin-bottom: 20px;
}

.product-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #ddd; 
    border-radius: 12px;
    overflow: hidden;
    margin-top: 5px; /* Slight offset to align visual baseline with title */
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-size: 20px; /* Updated size */
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin-bottom: 8px;
}

.product-date {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.product-desc {
    font-size: 15px; /* Slightly larger */
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    /* No flex-grow needed if we just want spacing */
}

.product-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #0152D9; /* User requested Blue */
    text-decoration: none;
    transition: opacity 0.3s;
    margin-top: auto; /* Push to bottom of container */
}

.product-link-btn:hover {
    opacity: 0.8;
}

.product-link-btn .arrow {
    transition: transform 0.3s;
}

.product-link-btn:hover .arrow {
    transform: translateX(4px);
}

.product-image-wrapper {
    width: 100%;
    height: 100%;
    padding: 20px 0px 20px 30px; /* Updated padding */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-large {
    width: 100%;
    height: auto; /* Allow height to adjust based on aspect ratio */
    aspect-ratio: 1728 / 997; /* Enforce aspect ratio */
    object-fit: cover; 
    border-radius: 8px; /* Updated border-radius */
    border: 1px solid #eee; /* Added border */
}

/* Passion Section */
.passion-section {
    background-color: #FAFAFA;
    padding: 80px 0;
    width: 100%;
}

.passion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.passion-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.passion-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.passion-col-title {
    font-size: 18px; /* Updated size */
    font-weight: 400; /* Updated weight */
    color: #333;
    margin-bottom: 50px; /* Updated margin */
}

.passion-image {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.passion-bottom-text {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 40px;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    background-color: #fff;
    padding: 80px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Updated gap */
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    /* border: 1px solid #eee; Removed border */
    border-radius: 8px;
    padding: 20px; /* Updated padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* transition: transform 0.3s, box-shadow 0.3s; Removed transition */
    background-color: #333; /* Placeholder for background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 260px; /* Fixed height */
    color: #fff; /* White text */
}

/* Removed hover effects */
/* .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
} */

.service-half {
    width: calc(50% - 7.5px); /* Adjusted for 15px gap */
}

.service-third {
    width: calc(33.333% - 10px); /* Adjusted for 15px gap (30px total gap / 3) */
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff; /* White text */
    margin-bottom: 20px;
}

.service-spacer {
    flex-grow: 1;
    min-height: 20px;
}

.service-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8); /* White transparent text */
    margin: 0;
}

.service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align to bottom */
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff; /* White text */
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap; /* Prevent wrapping */
}

.service-link-btn:hover {
    opacity: 0.8;
}

.service-link-btn .arrow {
    transition: transform 0.3s;
}

.service-link-btn:hover .arrow {
    transform: translateX(4px);
}

/* News Section */
.news-section {
    background-color: #FAFAFA;
    padding: 80px 0 150px;
}

.news-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #eee;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.news-title {
    font-size: 16px; /* Updated size */
    font-weight: 400; /* Updated weight */
    color: #333;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s;
}

.news-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-link:hover .news-title {
    color: #0152D9; /* Blue on hover */
}

/* Footer Styles */
.site-footer {
    background-color: #fff;
    padding: 80px 0 0px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.footer-main {
    width: 95%;
    max-width: none;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    gap: 80px;
}

.footer-left-col {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* min-height: 400px;  */
    padding-bottom: 15px;
}

.footer-logo {
    height: 26px;
    width: auto;
    filter: grayscale(100%);
}

.footer-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 80px;
}

.footer-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 220px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-menu-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

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

.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-menu-list a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-menu-list a:hover {
    color: #000;
}

.footer-legal-info {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 12px;
}

.footer-legal-info a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-legal-info a:hover {
    color: #000;
}

.separator {
    margin: 0 8px;
    color: #ddd;
}

.footer-bottom-divider {
    width: 100%;
    height: 1px;
    background-color: #eee;
    margin-bottom: 10px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    font-size: 12px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

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

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
        padding: 0; /* Remove horizontal padding as container handles width */
        width: 92%; /* Match header width */
    }

    .footer-left-col {
        min-height: auto;
        gap: 20px;
        padding-bottom: 0;
        flex: 0 0 auto;
    }

    .footer-right-col {
        padding-right: 0;
    }

    .footer-lang-selector {
        display: none;
    }

    .footer-menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px; /* Row gap 40px, Col gap 20px */
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-legal-info {
        text-align: left;
        margin-top: 0;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }
}

/* Mobile Media Query - Must be last to override base styles */
@media (max-width: 768px) {
    .header-container {
        width: 92%; /* User request */
    }

    .slider-controls {
        display: none;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }

    .banner-bottom-text {
        margin-bottom: 20px;
        color: #fff;
        font-size: 12px;
   }

    /* Mobile Header Adjustments */
    .header-left {
        gap: 0;
    }

    .banner-slider {
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
    background: #000;
}

    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .site-header {
        height: 60px;
    }
    
    .banner-top-text {
        margin-top: 70px;
        padding: 0px;
        margin: auto 0;
    }

    .user-nickname {
        display: none;
    }

    /* Product Section Mobile */
    .products-section {
        padding: 40px 0;
    }

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

    .products-list {
        gap: 40px;
    }

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

    .product-left {
        padding: 30px;
        /* Natural order: Text first */
    }

    .product-right {
        height: 250px;
    }
    
    .product-date {
        margin-left: 0; /* Reset indentation on mobile for simpler layout */
        margin-top: 0;
        margin-bottom: 15px;
    }
    
    .product-header {
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .product-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }
    
    .product-name {
        font-size: 20px;
    }

    /* Passion Section Mobile */
    .passion-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .passion-col {
        width: 100%;
    }

    .passion-image {
        padding: 0 20px; /* Added padding for mobile */
    }

    /* Services Section Mobile */
    .service-half,
    .service-third {
        width: 100%;
    }
    
    .services-grid {
        gap: 15px; /* Updated mobile gap */
    }

    /* News Section Mobile */
    .news-grid {
        flex-direction: column;
        gap: 40px;
    }
}

