/* Universal Styles */
:root {
    --vuki-pink: #e5b0d6; /* Softer, lighter pink */
    --vuki-teal: #a0e0d4; /* Softer, lighter teal */
    --vuki-violet: #a0b5e8; /* Softer, lighter violet */
    --vuki-gradient: linear-gradient(90deg, var(--vuki-pink) 0%, var(--vuki-teal) 50%, var(--vuki-violet) 100%);
    --vuki-faded-purple: rgba(160, 181, 232, 0.15); /* Updated faded tone */
    --footer-background-color: #1f2a4a; /* Deep blue/purple from Fatih Kalem footer */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-image: url('/assets/images/backgrounds/background.png');
    background-repeat: repeat-y;
    background-position: top center;
    background-size: 100% auto;
    background-attachment: fixed;
    z-index: -1;
    pointer-events: none;
}

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

/* Top Bar */
.top-bar {
    background-color: transparent;
    padding: 10px 0;
    font-size: 0.9em;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.top-bar .container {
    display: flex;
    justify-content: space-between; /* Space between language and social */
    align-items: center;
    padding: 0 20px; /* Add some padding to the top bar container */
}

.language-selector {
    order: 1; /* Position to the left */
    display: flex; /* Ensure horizontal alignment */
    align-items: center;
}

.social-links {
    order: 2; /* Position to the right */
    display: flex; /* Ensure horizontal alignment */
    align-items: center;
}

.language-selector .lang-button {
    background-color: transparent; /* No background */
    border: none; /* No border */
    border-radius: 50%;
    width: 40px; /* Increased size */
    height: 40px; /* Increased size */
    font-size: 1.8em; /* Larger font size for flag emojis */
    cursor: pointer;
    margin-right: 10px; /* Margin to separate flags */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Remove padding */
}

.language-selector .lang-button.active,
.language-selector .lang-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 0 8px rgba(107, 136, 224, 0.7); /* Adjusted shadow with new vibrant violet */
}

.social-links img {
    height: 35px; /* Bigger social media icons */
    width: 35px; /* Ensure square aspect ratio */
    margin-left: 10px; /* Space between social icons */
    vertical-align: middle;
}

/* Header */
header {
    background-color: transparent;
    padding: 15px 0;
    border-bottom: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 100;
}

header .main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: var(--vuki-gradient); /* Restore gradient background */
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 101;
}

header .logo-main img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
    /* Remove the frame and background */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); /* Just add subtle shadow to make it visible */
    transition: all 0.3s ease;
}

header .logo-main img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

header .main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header .main-nav ul li {
    display: inline-block;
    margin: 0 15px;
    position: relative;
}

header .main-nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header .main-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

header .logo-main img {
    background-color: transparent;
    /* Logo should be PNG with transparent background */
    /* If logo still has white background, remove these filters */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Dropdown for Kurumsal (Main Nav) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 9999; /* Very high z-index to ensure it's always on top */
    border-radius: 8px;
    padding: 10px 0;
    left: 0;
    top: 100%;
    margin-top: 5px;
}

.dropdown-content a {
    color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: normal !important;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Add hover delay for better UX */
.dropdown-content {
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

/* Keep dropdown open when hovering over content */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

/* Hero Section */
.hero {
    padding: 0;
    background: transparent;
    position: relative;
    width: 100%;
    height: 100vh; /* Changed to 100vh to take full screen height */
    overflow: hidden;
    margin: 0;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 1s ease-in-out;
}

.hero-banner-img {
    opacity: 0;
}

.hero-banner-img:first-child {
    opacity: 1;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0; /* No margin needed as hero is relative */
}

.statistics h2 {
    color: var(--vuki-violet);
    font-size: 2.5em;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    background: var(--vuki-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1em;
    font-weight: 500;
}

.section-subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.quality-content.reverse {
    grid-template-columns: 1fr 1fr; /* Ensures consistent grid layout */
}

.quality-content.reverse .quality-text {
    order: 2;
}

.quality-content.reverse .quality-image {
    order: 1;
}

.quality-text h2 {
    color: var(--vuki-violet);
    font-size: 2.5em;
    margin-bottom: 30px;
}

.quality-text p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.quality-text h3 {
    color: var(--vuki-pink);
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.quality-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.quality-features li {
    color: #555;
    font-size: 1.1em;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.quality-features li:last-child {
    border-bottom: none;
}

.quality-image {
    text-align: center;
}

.quality-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* General Section Styling */
.products, .about-roadmap {
    padding: 60px 0;
    text-align: center;
}

.products h2, .about-roadmap h2 {
    color: var(--vuki-violet);
    font-size: 2.5em;
    margin-bottom: 40px;
}

.new-products {
    background-color: #ffffff;
}

.new-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.new-product-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.new-product-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.new-product-item h3 {
    color: var(--vuki-pink);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.new-product-item p {
    color: #666;
    font-size: 1em;
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.instagram-feed h2 {
    color: var(--vuki-violet);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.instagram-embed-container {
    max-width: 1200px;
    margin: 40px auto;
}

.instagram-profile {
    margin-bottom: 30px;
}

.instagram-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s ease;
}

.instagram-profile-link:hover {
    color: var(--vuki-pink);
}

.instagram-profile-icon {
    width: 30px;
    height: 30px;
}

.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.instagram-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.instagram-item.placeholder {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

/* Custom Instagram Post Styling */
.instagram-item blockquote {
    margin: 0 !important;
    width: 100% !important;
}

/* Hide unwanted Instagram elements */
.instagram-item blockquote + p,
.instagram-item blockquote div div:last-child,
.instagram-item blockquote div div:nth-last-child(2),
.instagram-item blockquote div div:nth-last-child(3),
.instagram-item blockquote div > p {
    display: none !important;
}

/* Keep only the image visible */
.instagram-item blockquote a div:nth-child(2) {
    padding-bottom: 10% !important;
}

/* Hide view on Instagram text */
.instagram-item blockquote div div div[style*="color:#3897f0"] {
    display: none !important;
}

/* Hide profile details */
.instagram-item blockquote a div:first-child {
    display: none !important;
}

/* Simplify post appearance */
.instagram-item blockquote div {
    padding: 0 !important;
}

.instagram-placeholder {
    text-align: center;
    color: #999;
}

.instagram-placeholder p {
    font-size: 1.2em;
    margin-bottom: 10px;
    display: block !important; /* Override the hiding for placeholders */
}

.instagram-placeholder small {
    font-size: 0.9em;
}

.instagram-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: var(--vuki-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.05);
}

/* Product Section Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.product-tab-button {
    background-color: #eee;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    transition: all 0.3s ease;
}

.product-tab-button.active,
.product-tab-button:hover {
    background-color: var(--vuki-pink);
    color: #fff;
}

.product-category {
    display: none;
}

.product-category.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    gap: 30px;
}

/* Product Grid */
.product-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Clickable product styles */
.product-item[style*="cursor: pointer"] {
    transition: all 0.3s ease;
    position: relative;
}

.product-item[style*="cursor: pointer"]:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.product-item[style*="cursor: pointer"]:active {
    transform: translateY(-3px);
}

.product-item img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    background: transparent; /* Remove white background - images should be PNG */
}

/* Fix for corrupted gift item images */
#hediyelik .product-item img {
    object-fit: contain;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
}

.product-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-item h3 {
    color: var(--vuki-pink);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.product-item p {
    color: #666;
    font-size: 1em;
}

/* Roadmap / Dünden Bugüne Section */
.about-roadmap {
    background-color: var(--vuki-faded-purple);
    padding: 50px 0; /* Reduced top and bottom padding */
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
}

.timeline-line {
    position: absolute;
    width: 4px;
    background-color: var(--vuki-violet);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px; /* Reduced margin between timeline items */
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--vuki-violet);
    border-radius: 50%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border: 3px solid #fff;
}

.timeline-year {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--vuki-pink);
    width: 45%;
    text-align: right;
    padding-right: 30px;
    position: relative;
    top: 5px;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 30px;
    padding-right: 0;
}

.timeline-text {
    width: 45%;
    text-align: left;
    padding-left: 30px;
    font-size: 0.9em; /* Smaller font for more compact text */
    color: #555;
    max-height: 120px; /* Limit the height */
    overflow-y: auto; /* Add scrolling if needed */
}

.timeline-item:nth-child(even) .timeline-text {
    text-align: right;
    padding-right: 30px;
    padding-left: 0;
}

.timeline-product-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: absolute;
    top: 0;
    background: transparent; /* No white background - images should be PNG */
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) .timeline-product-img {
    left: calc(50% + 50px); /* Adjust position */
}

.timeline-item:nth-child(even) .timeline-product-img {
    right: calc(50% + 50px); /* Adjust position */
}

/* Roadmap Floating Items - Only in Dünden Bugüne section */
@keyframes roadmapFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
    100% { transform: translateY(0px); }
}

.about-roadmap {
    position: relative; /* Make section a positioning context */
    overflow: hidden; /* Keep floating items within section boundaries */
}

.roadmap-floating-item {
    position: absolute;
    z-index: 5; /* Above timeline but below any overlays */
    animation: roadmapFloat 4s ease-in-out infinite;
}

.roadmap-floating-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: transparent; /* No white background - images should be PNG */
    opacity: 1; /* Always visible on desktop */
    transition: none; /* No opacity transition for these */
}

/* Left side floating items */
.roadmap-float-left-1 {
    left: 5%;
    top: 30%;
    animation: roadmapFloat 5s ease-in-out infinite;
    animation-delay: 0s;
}

.roadmap-float-left-2 {
    left: 3%;
    top: 60%;
    animation: roadmapFloat 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Right side floating items */
.roadmap-float-right-1 {
    right: 5%;
    top: 25%;
    animation: roadmapFloat 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.roadmap-float-right-2 {
    right: 3%;
    top: 65%;
    animation: roadmapFloat 5.5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Contact Section */
.contact {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    color: var(--vuki-violet);
    font-size: 2.5em;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h3,
.contact-form-section h3 {
    color: var(--vuki-violet);
    font-size: 1.8em;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item h4 {
    color: var(--vuki-pink);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.contact-item p {
    color: #555;
    font-size: 1em;
    line-height: 1.8;
    margin: 8px 0;
}

.whatsapp-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: none !important;
}

.whatsapp-contact > div:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-contact img {
    height: 40px;
    width: 40px;
}

.whatsapp-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: scale(1.05);
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vuki-pink);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--vuki-gradient);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.02);
}

/* Footer */
footer {
    background-color: var(--footer-background-color); /* Use new deep blue/purple for footer */
    color: #ffffff;
    text-align: center;
    padding: 40px 0 20px 0;
}

footer > .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns */
    text-align: left;
    gap: 30px; /* Space between columns */
    margin-bottom: 30px;
}

.footer-bottom-bar {
    grid-column: 1 / -1; /* Span all columns */
}

footer h3 {
    color: #ffffff; /* White titles */
    font-size: 1.2em;
    margin-bottom: 15px;
}

footer h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer h3 a:hover {
    color: var(--vuki-pink);
}

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

footer ul li a {
    text-decoration: none;
    color: #ffffff; /* White links */
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--vuki-pink); /* Hover effect using vibrant pink */
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 20px;
}

.footer-bottom-bar p {
    margin: 0;
    font-size: 0.9em;
}

.footer-logo {
    height: 40px; /* Adjust as needed for the VUKI logo */
    background: transparent; /* No filter - show logo as is */
}

.footer-button-contact {
    background-color: transparent;
    border: 2px dashed #ffffff; /* Dashed white border */
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-button-contact:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials img {
    height: 25px;
    width: 25px;
    object-fit: contain;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .language-selector {
        order: unset; /* Reset order for mobile */
        margin: 0 auto; /* Center on mobile */
    }

    /* Hide social media icons from top bar on mobile */
    .social-links {
        display: none;
    }

    header .main-header-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px 10px;
        margin: 10px;
        margin-top: 25px; /* More space from top bar */
        position: relative;
        z-index: 50; /* Lower than top bar */
        backdrop-filter: blur(15px);
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    }

    header .main-nav {
        width: 100%;
        text-align: center;
    }

    header .main-nav ul {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
    }

    header .main-nav ul li {
        margin: 3px;
        flex: 0 0 auto;
    }

    header .main-nav ul li a {
        padding: 8px 12px;
        border-radius: 15px;
        background: rgba(255,255,255,0.1);
        color: white;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    header .main-nav ul li a:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-1px);
    }

    /* Mobile dropdown */
    .dropdown {
        position: relative;
    }

    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-radius: 10px;
        padding: 10px 0;
        min-width: 200px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-top: 5px;
    }

    .dropdown-content a {
        color: #333 !important;
        padding: 8px 20px;
        display: block;
        font-size: 0.85rem;
        transition: all 0.3s ease;
    }

    .dropdown-content a:hover {
        background: #f8f9fa;
        color: #667eea !important;
    }

    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

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

    .hero-images {
        height: 60vh;
        min-height: 400px;
    }

    /* Remove gap between banner and VUKI family */
    .statistics {
        margin-top: -20px;
        padding-top: 40px;
    }

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

    .product-item {
        width: 90%;
    }

    .roadmap-timeline {
        padding-top: 30px;
    }

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
    }

    /* Fix roadmap years - position top left without frame */
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 50px;
        padding-left: 30px;
        position: relative;
    }

    .timeline-year {
        position: absolute;
        top: -5px;
        left: 0;
        z-index: 10;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-weight: bold;
        font-size: 1rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    .timeline-text {
        margin-top: 25px;
        padding: 15px 0;
        padding-left: 0;
        line-height: 1.6;
        font-size: 0.9rem;
    }

    /* Move timeline line to avoid conflict */
    .timeline-line {
        left: 15px;
        transform: none;
        width: 2px;
    }

    .timeline-dot {
        left: 11px;
        transform: none;
        width: 10px;
        height: 10px;
        top: 5px;
    }

    .timeline-year, .timeline-text {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .timeline-product-img {
        position: static;
        margin-top: 15px;
        width: 80px;
        height: 80px;
    }

    .roadmap-floating-item {
        display: none; /* Hide floating items on mobile to avoid clutter */
    }

    /* Statistics Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    /* Quality Section Mobile - Centered Image, Text Below */
    .quality-section {
        padding: 50px 20px;
    }

    .quality-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
        align-items: center;
    }

    .quality-content.reverse .quality-text,
    .quality-content .quality-text {
        order: 2; /* Text always goes to bottom on mobile */
        width: 100%;
        text-align: center;
    }

    .quality-content.reverse .quality-image,
    .quality-content .quality-image {
        order: 1; /* Image always goes to top on mobile */
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }

    .quality-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
        color: #333;
    }

    .quality-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: justify;
        max-width: 100%;
    }

    .quality-text h3 {
        font-size: 1.3rem;
        margin: 25px 0 15px 0;
        color: #667eea;
        text-align: center;
    }

    .quality-features {
        text-align: left;
        max-width: 100%;
        margin: 0;
        padding: 0 20px;
    }

    .quality-features li {
        margin-bottom: 10px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .quality-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    /* New Products Mobile */
    .new-products-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Products Section - Card System */
    .products .container {
        padding: 0 10px;
    }

    .product-category {
        position: relative;
        overflow: hidden;
    }

    /* Mobile Product Cards Container */
    .mobile-products-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        background: #f8f9fa;
        padding: 20px 0;
        margin: 20px 0;
        display: block;
    }

    .mobile-products-container {
        display: flex;
        transition: transform 0.3s ease;
        width: fit-content;
        margin-left: 20px;
    }

    .product-category .product-item {
        width: calc(100vw - 60px);
        min-width: calc(100vw - 60px);
        background: white;
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        flex-shrink: 0;
        margin-right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    .product-category .product-item:first-child {
        margin-left: 0;
    }

    .product-category .product-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .product-category .product-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #333;
    }

    .product-category .product-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #666;
    }

    /* Mobile Navigation Buttons */
    .mobile-nav-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding: 0 30px;
    }

    .mobile-nav-btn {
        background: var(--vuki-gradient);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .mobile-nav-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
        opacity: 0.6;
    }

    .mobile-nav-btn:active {
        transform: scale(0.95);
    }

    /* Add touch feedback */
    .mobile-products-container,
    .mobile-instagram-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Improve card readability */
    .product-category .product-item h3 {
        font-weight: 600;
        line-height: 1.3;
    }

    /* Add loading animation for better UX */
    @keyframes mobileCardSlide {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-products-wrapper,
    .mobile-instagram-wrapper {
        animation: mobileCardSlide 0.5s ease-out;
    }

    .mobile-nav-info {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Mobile Instagram Section */
    .instagram-posts-grid {
        display: none !important; /* Hide desktop grid */
    }

    .mobile-instagram-wrapper {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        background: #f8f9fa;
        padding: 20px 0;
        margin: 20px 0;
    }

    .mobile-instagram-container {
        display: flex;
        transition: transform 0.3s ease;
        width: fit-content;
        margin-left: 20px;
    }

    .mobile-instagram-card {
        width: calc(100vw - 60px);
        min-width: calc(100vw - 60px);
        background: white;
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        flex-shrink: 0;
        margin-right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    .mobile-instagram-card:first-child {
        margin-left: 0;
    }

    .mobile-instagram-card blockquote {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    /* Contact Form Mobile - Complete Fix */
    .contact {
        padding: 40px 15px;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .contact .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
        width: 100%;
    }

    .contact-info-section,
    .contact-form-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .submit-button {
        width: 100%;
        box-sizing: border-box;
    }

    /* Fix contact info items */
    .contact-item {
        width: 100%;
        box-sizing: border-box;
        padding: 15px;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Fix WhatsApp contact overflow */
    .whatsapp-contact {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .whatsapp-contact > div {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        flex-wrap: wrap;
        width: 100%;
    }

    .whatsapp-contact img {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }

    .whatsapp-contact p {
        margin: 0;
        flex: 1;
        word-wrap: break-word;
        min-width: 0;
    }

    .whatsapp-button {
        width: 100%;
        text-align: center;
        padding: 12px 15px;
        box-sizing: border-box;
        word-wrap: break-word;
        font-size: 0.9rem;
        display: block;
        text-decoration: none;
        border-radius: 8px;
    }

    /* Better spacing for mobile sections */
    .products {
        padding: 40px 0;
    }

    .instagram-feed {
        padding: 40px 0;
    }

    /* Product tabs mobile */
    .product-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .product-tab-button {
        padding: 10px 15px;
        font-size: 0.9rem;
        border-radius: 20px;
        white-space: nowrap;
    }

    /* Section titles mobile */
    .section-title,
    .products h2,
    .instagram-feed h2 {
        font-size: 1.8rem;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    /* Instagram profile mobile */
    .instagram-profile {
        text-align: center;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .instagram-profile-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
    }

    .instagram-profile-icon {
        width: 30px;
        height: 30px;
    }

    /* Instagram Feed Mobile */
    .instagram-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .instagram-item.placeholder {
        min-height: 300px;
    }

    /* Contact Section Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    footer .container {
        grid-template-columns: 1fr; /* Single column for footer on mobile */
        text-align: center;
        gap: 20px;
    }

    footer h3 {
        margin-top: 20px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-bar p,
    .footer-button-contact {
        width: 100%;
    }

    .footer-button-contact {
        padding: 10px 1px; /* 10px vertical, 1px horizontal */
        width: 90%; /* 90% width as requested */
    }

    .footer-socials {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    footer .footer-socials img {
        height: 30px;
        width: 30px;
        transition: all 0.3s ease;
        border-radius: 6px;
        padding: 4px;
        background: rgba(255,255,255,0.1);
    }

    footer .footer-socials img:hover {
        transform: scale(1.1);
        background: rgba(255,255,255,0.2);
    }
}

/* ===== MOBILE NAVIGATION SYSTEM ===== */
/* Hide mobile nav on desktop */
.mobile-nav-container,
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 768px) {
    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Show mobile nav */
    .mobile-nav-container {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        background: var(--vuki-gradient);
        border-radius: 25px;
        margin: 10px 15px;
        position: relative;
        z-index: 1000;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
    
    /* Hamburger Button */
    .hamburger-btn {
        background: transparent;
        border: none;
        cursor: pointer;
        width: 35px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 5px 0;
        z-index: 1001;
    }
    
    .hamburger-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Logo - Centered */
    .mobile-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mobile-logo img {
        height: 40px;
        max-width: 120px;
        object-fit: contain;
    }
    
    /* B2B Button */
    .mobile-b2b-btn {
        background: white;
        color: #667eea;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .mobile-b2b-btn:hover {
        background: #f0f0f0;
        transform: scale(1.05);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Mobile Menu - Dropdown style */
    .mobile-menu {
        display: block;
        position: absolute;
        top: 70px;
        left: 15px;
        right: 15px;
        width: auto;
        max-height: 0;
        background: white;
        z-index: 999;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        overflow: hidden;
        border-radius: 15px;
        opacity: 0;
    }
    
    .mobile-menu.active {
        max-height: 500px;
        opacity: 1;
    }
    
    .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .mobile-menu > ul > li {
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu > ul > li > a,
    .mobile-accordion-btn {
        display: block;
        padding: 18px 25px;
        color: #333;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }
    
    .mobile-menu > ul > li > a:hover,
    .mobile-accordion-btn:hover {
        background: #f8f9fa;
        color: #667eea;
    }
    
    /* Accordion Arrow */
    .accordion-arrow {
        float: right;
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }
    
    .mobile-accordion.active .accordion-arrow {
        transform: rotate(180deg);
    }
    
    /* Submenu */
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f8f9fa;
    }
    
    .mobile-accordion.active .mobile-submenu {
        max-height: 300px;
    }
    
    .mobile-submenu li a {
        display: block;
        padding: 15px 25px 15px 40px;
        color: #555;
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-submenu li:last-child a {
        border-bottom: none;
    }
    
    .mobile-submenu li a:hover {
        background: #eee;
        color: #667eea;
    }
}

@media (max-width: 480px) {
    header .logo-main img {
        height: 50px;
    }

    header .main-nav ul li {
        margin: 0 5px;
        font-size: 0.9em;
    }


    .product-item {
        padding: 15px;
    }

    .product-item h3 {
        font-size: 1.2em;
    }

    .floating-animated-icon img {
        width: 60px;
        height: 60px;
    }
}
