/* Import fonts from main site */
@import url('https://fonts.googleapis.com/css2?family=Bagel+Fat+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dekko&display=swap');

/* Root variables matching main site */
:root {
    --dark: #141e29;
    --secondary: #394e6e;
    --accent: #f2b705;
    --bg-color: #e4efff;
    --text-light: #ffffff;
    --text-dark: #141e29;
    --gradient: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(57, 78, 110, 0.2);
}

/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

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

/* Scrollbar styling matching main site */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* Body styling */
body {
    font-family: "Dekko", cursive;
    background: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== OFFER BAR ===== */
.offer-bar {
    background: var(--dark);
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    transition: none;
}

.offer-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.offer-group {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

.offer-group span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Dekko", cursive;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.offer-bar:hover .offer-marquee { animation-play-state: paused; }

/* ===== DESKTOP NAVBAR ===== */
.desktop-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 4px 24px;
  border-radius: 40px;
  margin: 16px auto;
  max-width: 1200px;
  height: 80px;              /* ✅ FIXED */
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  overflow: hidden;          /* ✅ IMPORTANT */
}

.desktop-navbar.scrolled {
    top: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.nav-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    justify-content: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    font-family: "Dekko", cursive;
}

.logo-desktop { display: block; }

.logo-desktop a { text-decoration: none; }

.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
  position: relative;
  top: 20%;
}

.back-home-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Dekko", cursive;
    transition: all 0.3s;
}

.back-home-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ===== MOBILE HEADER ===== */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-radius: 0 0 30px 30px;
    box-shadow: var(--shadow);
    transition: none;
}

.mobile-logo a { text-decoration: none; }

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

.mobile-logo .logo-img {
    height: 60px;
    transition: all 0.3s ease;
}

.bigger-logo .logo-img { height: 80px; }

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    padding: 0;
    transition: all 0.3s;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.products-icon-btn {
    display: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 100px;
    right: 20px;
    width: 200px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    border: 1px solid rgba(57, 78, 110, 0.1);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.mobile-menu a {
    text-decoration: none;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid rgba(57, 78, 110, 0.1);
    font-family: "Dekko", cursive;
    text-align: left;
    transition: all 0.3s;
    position: relative;
}

.mobile-menu a:hover { color: var(--secondary); }

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.mobile-menu a:hover::before { width: 100%; }

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

.mobile-home-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark) !important;
}

/* ===== MAIN CONTENT WRAPPER ===== */
.main-content-wrapper {
    width: 100%;
    min-height: 100vh;
    padding-top: 140px;
}

/* ===== CONTACT HERO SECTION ===== */
.contact-hero {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Dekko", cursive;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Bagel Fat One", system-ui;
    color: var(--dark);
}

.hero-title span {
    color: var(--secondary);
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    font-family: "Dekko", cursive;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== MAIN CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ===== QUICK CONTACT CARDS ===== */
.quick-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #b69b66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
    transition: all 0.3s;
}

.contact-card:hover .card-icon {
    background: var(--secondary);
    color: white;
}

.contact-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: "Bagel Fat One", system-ui;
}

.contact-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-family: "Dekko", cursive;
}

.card-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-family: "Dekko", cursive;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.card-link:hover { border-bottom-color: var(--secondary); }

/* ===== CONTACT BOX ===== */
.contact-box {
    background: white;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-bottom: 60px;
}

/* Left side - Form */
.container-left {
    padding: 50px;
    background: white;
}

.form-header { margin-bottom: 30px; }

.form-header h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: "Bagel Fat One", system-ui;
}

.form-header p {
    font-size: 16px;
    color: #666;
    font-family: "Dekko", cursive;
}

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

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

.input-group.full-width { grid-column: 1 / -1; }

.input-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    font-family: "Dekko", cursive;
}

.input-group label i {
    color: var(--secondary);
    font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: "Dekko", cursive;
    transition: all 0.3s;
    background: #f9f9f9;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(57, 78, 110, 0.1);
}

.input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23394e6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

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

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.form-footer button {
    position: relative;
    padding: 16px 32px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Dekko", cursive;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    overflow: hidden;
}

.form-footer button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(57, 78, 110, 0.3);
}

.form-footer button .btn-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.form-footer button:hover .btn-icon { transform: translateX(5px); }

.form-note {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Dekko", cursive;
}

.form-note i { color: var(--secondary); }

/* Spinner for loading state */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Right side - Contact Info */
.container-right {
    background: #394e6e;
    color: white;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.right-content {
    position: relative;
    z-index: 2;
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.small-logo {
    width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
}

.since-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-family: "Bagel Fat One", system-ui;
}

.container-right h3 {
    font-size: 28px;
    margin-bottom: 30px;
    font-family: "Bagel Fat One", system-ui;
}

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

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.detail-item:hover .detail-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.detail-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
    font-family: "Dekko", cursive;
}

.detail-text p,
.detail-text a {
    font-size: 18px;
    line-height: 1.4;
    color: white;
    text-decoration: none;
    font-family: "Dekko", cursive;
}

.detail-text a:hover { text-decoration: underline; }

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(37, 211, 102, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 5px;
    transition: all 0.3s;
}

.whatsapp-link:hover {
    background: #25D366;
    text-decoration: none !important;
}

/* Social Links */
.social-links h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: "Bagel Fat One", system-ui;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-5px);
}

/* ===== MAP SECTION ===== */
.map-section { margin-bottom: 60px; }

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: "Bagel Fat One", system-ui;
}

.map-header h2 span { color: var(--secondary); }

.map-header p {
    font-size: 18px;
    color: #666;
    font-family: "Dekko", cursive;
}

.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    max-width: 300px;
}

.map-info-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.map-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-color);
}

.map-logo {
    width: 50px;
    height: auto;
}

.map-info-header h4 {
    font-size: 18px;
    color: var(--dark);
    font-family: "Bagel Fat One", system-ui;
}

.map-info-header p {
    font-size: 14px;
    color: var(--secondary);
    font-family: "Dekko", cursive;
}

.map-info-details { margin-bottom: 20px; }

.map-info-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    font-family: "Dekko", cursive;
}

.map-info-details i {
    color: var(--secondary);
    width: 20px;
}

.map-direction-btn {
    display: block;
    background: var(--dark);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: "Dekko", cursive;
    transition: all 0.3s;
}

.map-direction-btn i { margin-right: 8px; }

.map-direction-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ===== FAQ SECTION ===== */
.faq-section { margin-top: 60px; }

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    font-family: "Bagel Fat One", system-ui;
    color: var(--dark);
}

.faq-section h2 span { color: var(--secondary); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 18px;
    color: var(--dark);
    font-family: "Dekko", cursive;
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-answer p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Dekko", cursive;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 20px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer-logo {
    height: 220px;
    width: auto;
    margin-top: -75px;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-left h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    font-family: "Bagel Fat One", system-ui;
    color: var(--secondary);
    margin-top: -50px;
}

.footer-left h2 span { color: var(--bg-color); }

.footer-left p {
    font-family: "Dekko", cursive;
    color: var(--bg-color);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 600;
    font-family: "Dekko", cursive;
}

.footer-links a {
    display: block;
    color: var(--bg-color);
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
    font-size: 15px;
    font-family: "Dekko", cursive;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--secondary);
    margin-top: 40px;
    font-family: "Dekko", cursive;
}

.abdul-link {
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.abdul-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: var(--shadow-hover);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.toast-notification.show { transform: translateX(0); }

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon { font-size: 24px; }
.toast-icon.success { color: #28a745; }
.toast-icon.error { color: #dc3545; }

.toast-message {
    font-size: 16px;
    color: var(--dark);
    font-family: "Dekko", cursive;
}

/* ===== RESPONSIVE DESIGN ===== */
@media only screen and (max-width: 1366px) {
    .desktop-navbar { width: 95%; }
    .hero-title { font-size: 48px; }
}

@media only screen and (max-width: 1024px) {
    .offer-bar { display: none; }
    .desktop-navbar { display: none; }
    .mobile-header { display: flex; }
    .main-content-wrapper { padding-top: 80px; }
    .hero-title { font-size: 42px; }
    .quick-contact-cards { grid-template-columns: repeat(2, 1fr); }
    .contact-box { grid-template-columns: 1fr; }
    .container-right { order: -1; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .mobile-logo .logo-img { height: 70px; }
    .bigger-logo .logo-img { height: 90px; }
}

@media only screen and (max-width: 767px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .quick-contact-cards { grid-template-columns: 1fr; gap: 20px; }
    .container-left { padding: 30px 20px; }
    .container-right { padding: 30px 20px; }
    .input-row { grid-template-columns: 1fr; gap: 0; }
    .form-footer { flex-direction: column; gap: 15px; align-items: flex-start; }
    .form-footer button { width: 100%; justify-content: center; }
    .map-container { height: 400px; }
    .map-overlay {
  right: 60px;
  width: 250px;
  padding: -2px;
  font-size: 14px;
  line-height: 1.2;
}
    .map-info-card { padding: 15px; }
    .footer-logo { height: 150px; margin-left: 90px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .mobile-logo .logo-img { height: 60px; }
    .bigger-logo .logo-img { height: 80px; }
}

@media only screen and (min-width: 414px) and (max-width: 430px) {
    .mobile-logo .logo-img { height: 60px; }
    .bigger-logo .logo-img { height: 80px; }
}

@media only screen and (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .contact-card { padding: 30px 20px; }
    .card-icon { width: 60px; height: 60px; font-size: 24px; }
    .map-container { height: 350px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-header {
        height: 90px;
        min-height: 90px;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: visible;
    }

    .products-icon-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1.8px solid #394e6e;
        border-radius: 50%;
        color: #ffffff;
        text-decoration: none;
        background: #394e6e;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        z-index: 2;
    }

    .products-icon-btn i {
        font-size: 16px;
    }

    .mobile-logo {
        flex-shrink: 0;
        margin-left: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .mobile-logo .logo-img {
        height: 122px;
        width: auto;
        max-height: none;
        flex-shrink: 0;
        object-fit: contain;
    }

    .bigger-logo .logo-img {
        height: 138px;
        width: auto;
        transform: none;
        max-height: none;
        flex-shrink: 0;
        object-fit: contain;
    }

    .mobile-menu-btn,
    .advanced-menu-btn {
        width: 42px;
        height: 42px;
        border: 1.8px solid #394e6e;
        border-radius: 50%;
        background: #394e6e;
        color: #ffffff;
        padding: 0;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        z-index: 2;
    }

    .menu-icon,
    .advanced-menu-icon {
        width: 24px;
        gap: 5px;
    }

    .menu-icon span,
    .advanced-menu-icon span {
        height: 2.5px;
        background: #ffffff;
    }

    .mobile-menu,
    .advanced-mobile-menu {
        top: 80px;
        right: 15px;
        width: 180px;
    }
}

@media (max-width: 768px) {
    .mobile-header {
        height: 90px;
        min-height: 90px;
        padding: 0 15px;
        box-sizing: border-box;
        overflow: visible;
    }

    .products-icon-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1.8px solid #394e6e;
        border-radius: 50%;
        color: #ffffff;
        text-decoration: none;
        background: #394e6e;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        z-index: 2;
    }

    .products-icon-btn i {
        font-size: 16px;
    }

    .mobile-logo {
        flex-shrink: 0;
        margin-left: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .mobile-logo .logo-img {
        height: 122px;
        width: auto;
        max-height: none;
        flex-shrink: 0;
        object-fit: contain;
    }

    .bigger-logo .logo-img {
        height: 138px;
        width: auto;
        transform: none;
        max-height: none;
        flex-shrink: 0;
        object-fit: contain;
    }

    .mobile-menu-btn,
    .advanced-menu-btn {
        width: 42px;
        height: 42px;
        border: 1.8px solid #394e6e;
        border-radius: 50%;
        background: #394e6e;
        color: #ffffff;
        padding: 0;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        z-index: 2;
    }

    .menu-icon,
    .advanced-menu-icon {
        width: 24px;
        gap: 5px;
    }

    .menu-icon span,
    .advanced-menu-icon span {
        height: 2.5px;
        background: #ffffff;
    }

    .mobile-menu,
    .advanced-mobile-menu {
        top: 80px;
        right: 15px;
        width: 180px;
    }
}
