/* ============================================================
   0a. GLOBAL RESET, TYPOGRAPHY, THEME & BUTTON SYSTEM
   ============================================================ */
/* ---------------------------------------------
1. Clean Base & Reset
--------------------------------------------- 
*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Common resets usually handled by Bootstrap, keeping only essential overrides */
ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

a:hover {
  text-decoration: none; 
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* Accessibility: Reduce motion if user requested */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------------------------------------------
2. Typography (Headings)
--------------------------------------------- 
*/
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #2a2a2a;
}

h1 { font-size: 40px; font-weight: 800; line-height: 1.2; letter-spacing: -1px; }
h2 { font-size: 32px; font-weight: 700; color: #03a4ed; line-height: 1.3; }
h3 { font-size: 26px; font-weight: 600; color: #fe3f40; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 17px; font-weight: 500; color: #444; }
h6 { font-size: 15px; font-weight: 500; text-transform: uppercase; color: #666; }

p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.small-text { font-size: 13px; color: #777; }
.highlight { color: #03a4ed; font-weight: 500; }

/* Selection Color */
::selection { background: #03a4ed; color: #fff; }
::-moz-selection { background: #03a4ed; color: #fff; }

/* ---------------------------------------------
3. Kidillus Global Theme & Background
--------------------------------------------- 
*/
body {
  /* Pattern Overlay + Gradient */
  background: #f7f8fa;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: soft-light;
  font-family: 'inter', sans-serif;
  color: #1e293b;
  overflow-x: hidden;
  margin: 0;
}

/* Floating Shapes Animation */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: float 10s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none; /* Mouse clicks pass through */
}

.bg-shape.blue { background: #3b82f6; width: 250px; height: 250px; top: 10%; left: 5%; }
.bg-shape.teal { background: #06b6d4; width: 300px; height: 300px; top: 60%; right: 8%; animation-delay: 3s; }
.bg-shape.light { background: #93c5fd; width: 150px; height: 150px; top: 75%; left: 30%; animation-delay: 5s; }

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(-40px); }
}

/* Layout Helpers */
main, section, .container {
  position: relative;
  z-index: 2;
  font-family: 'Inter', sans-serif;
}

.btn-start-brief {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
    white-space: nowrap;
    transition: all 0.2s;
}
.btn-start-brief:hover {
    border-color: #b38bff;
    color: #b38bff;
}
@media (max-width: 991px) {
    .btn-start-brief { display: none; }
}

.page-section { margin-top: 120px; }

/* Section Headings */
.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  position: relative;
  z-index: 2;
  line-height: 44px;
}
.section-heading h2 em { font-style: normal; color: #03a4ed; }
.section-heading h2 span { color: #fe3f40; }

/* =========================================
   🚀 GLOBAL BUTTON SYSTEM (FINAL)
   ========================================= */

/* 1. Base Button Structure (Sab buttons ke liye common) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    line-height: 1;
}

/* 2. Primary Gradient Button (Main Call to Action) */
.btn-main {
    background: linear-gradient(90deg, #00d4ff 0%, #b38bff 50%, #ff9bd7 100%);
    background-size: 200% auto;
    color: #ffffff !important;
    padding: 14px 35px;
    border-radius: 50px; /* Pill Shape */
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(3, 164, 237, 0.3);
}

.btn-main:hover {
    background-position: right center; /* Gradient Move Effect */
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(179, 139, 255, 0.4);
    color: #ffffff !important;
}

/* 3. Secondary/Outline Button (For less important actions) */
.btn-outline {
    background: transparent;
    border: 2px solid rgba(3, 164, 237, 0.3);
    color: #03a4ed !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
}

.btn-outline:hover {
    border-color: #03a4ed;
    background: rgba(3, 164, 237, 0.05);
    transform: translateY(-3px);
    color: #00d4ff !important;
}

/* 4. Small Button (Header Login, Table Buttons ke liye) */
.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 30px;
}

/* 5. Full Width (Mobile ke liye) */
.btn-block {
    width: 100%;
    display: flex;
}

/* 6. Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px; /* Thoda chhota padding mobile par */
        font-size: 15px;
    }
    
    /* Agar aap chahte hain mobile pe sare buttons full width ho jayein to ye uncomment karein: */
    /* .btn-main, .btn-outline {
        width: 100%;
    } 
    */
}
/* Mobile Fixes */
@media (max-width: 991px) {
  .mobile-top-fix { margin-top: 30px; margin-bottom: 0px; }
  .mobile-bottom-fix { margin-bottom: 30px; }
  .mobile-bottom-fix-big { margin-bottom: 60px; }
}

/* ---------------------------------------------
4. Preloader
--------------------------------------------- 
*/
.js-preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #fe3f40;
    border-radius: 50%;
    transform: translateX(0);
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #fe3f40;
    border-radius: 50%;
}

@keyframes dot {
    50% { transform: translateX(96px); }
}

@keyframes dots {
    50% { transform: translateX(-31px); }
}


/* ============================================================
   0b. SITE HEADER — reset/typography redeclared here (as in the
       original file) + header, nav, dropdowns, mobile menu
   ============================================================ */

/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'inter', sans-serif;
}

:root {
  --primary: #03a4ed;
  --secondary: #0f172a;
  --accent: #06b6d4;

  --dark: #0f172a;
  --light: #ffffff;

  --text-main: #334155;
  --text-light: #64748b;

  --border: #e2e8f0;
  --surface: #ffffff;

  --success: #10b981;

  --primary-gradient: linear-gradient(90deg, #03a4ed, #06b6d4);
}
body { margin:0; font-family: var(--font-main); background: var(--light); color: var(--dark); }
.kp-container { max-width: 1450px; margin: 0 auto; padding: 0 24px; 

    font-family: 'Inter', sans-serif;
  color: #1e293b;
  margin: 0;
  overflow-x: hidden;
}


/* Common Resets */
ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #2a2a2a;
}

h1 { font-size: 48px; font-weight: 800; line-height: 1.2; letter-spacing: -1px; }
h2 { font-size: 36px; font-weight: 700; color: #03a4ed; line-height: 1.3; }
h3 { font-size: 28px; font-weight: 600; color: #fe3f40; }
h4 { font-size: 22px; font-weight: 600; }
h5 { font-size: 18px; font-weight: 500; color: #444; }
h6 { font-size: 16px; font-weight: 500; text-transform: uppercase; color: #666; }

p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.small-text { font-size: 13px; color: #777; }
.highlight { color: #03a4ed; font-weight: 500; }

::selection { background: #03a4ed; color: #fff; }
::-moz-selection { background: #03a4ed; color: #fff; }

/* header */

.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: top 0.3s ease;
    height: 80px;
    min-height: 80px;
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* PWA Installed Mode Fix */
html.pwa-installed header {
    border-bottom: none !important;
    box-shadow: none !important;
}

/* =========================================
   LOCK HEADER FONT (PREVENT OVERRIDING)
========================================= */
.header-area, 
.nav-menu li a, 
.sub-menu li a, 
.logo h4,
.user-pill span,
.btn-quote {
    font-family: 'Inter', sans-serif !important;
}

/* FontAwesome Icons Fix */
.header-area i.fa-solid, 
.header-area i.fa-regular, 
.header-area i.fa-brands,
.header-area i.fa {
    font-family: "Font Awesome 6 Free" !important;
}
/* ==========================================================================
   3. NAVIGATION (MAIN NAV & MENU)
   ========================================================================== */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 30px;
}

/* Logo Styles */
.logo h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #03a4ed;
    cursor: pointer;
}

.logo h4 span {
    color: #fe3f40;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    padding: 0;
    /* Alignment: Push to Right */
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: 30px;
}
/* Mouse hover par submenu dikhane ke liye */
.nav-menu .has-sub:hover .sub-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-menu li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    color: #2a2a2a;
    transition: .3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fe3f40;
}

/* ==========================================================================
   4. HERO & UTILITY CLASSES
   ========================================================================== */
.hero-title {
    font-weight: 700;
    line-height: 1.3;
    font-size: 42px;
}

.hero-subtitle h2 {
    color: white;
}

.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.stats-bar div {
    transition: transform .3s ease;
}

.stats-bar div:hover {
    transform: translateY(-6px);
}

.stats-bar div strong {
    font-weight: 700;
}

/* ==========================================================================
   5. BUTTONS (LOGIN & MAIN)
   ========================================================================== */



/* ==========================================================================
   6. PROFILE SECTION & USER PILL
   ========================================================================== */
.profile-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* Premium Profile Pill */
.user-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 5px 18px 5px 5px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.user-pill:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.user-pill img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-pill span {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    letter-spacing: -0.2px;
}

/* Fixed Avatar Circle */
.profile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   7. ICONS (INBOX & NOTIFICATIONS)
   ========================================================================== */
.inboxIcon,
.notifBellWrap {
    position: relative;
    width: 12px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 8px;
    transition: background-color 0.2s ease;
}

.inboxIcon:hover,
.notifBellWrap:hover {
    background-color: #f1f5f9;
}

.inboxIcon i,
.notifBellWrap i {
    font-size: 20px;
    color: #5f6368;
}

/* Red Counter Badge */
.topChatCount,
.notif-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff4040;
    color: #ffffff;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* ==========================================================================
   8. DROPDOWNS (GENERAL, AVATAR, INBOX, NOTIF)
   ========================================================================== */

/* ✅ ADDED: Unified styling for all dropdowns (As requested) */
.avatarMenu, 
.notif-dropdown, 
.chat-dropdown, 
.inbox-dropdown,
#inboxDropdown {
    position: absolute; 
    top: 60px; 
    right: 0;
    background: #ffffff; /* used hex for safety instead of var(--white) */
    border: 1px solid #e5e7eb; /* used hex for safety instead of var(--border) */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* used hex for safety */
    display: none; 
    flex-direction: column;
    overflow: hidden; 
    z-index: 2000;
}

/* Specific Sizes */
.avatarMenu { 
    width: 200px; 
    padding: 6px 0; 
}

.notif-dropdown, 
.chat-dropdown, 
.inbox-dropdown,
#inboxDropdown { 
    width: 340px; 
    max-height: 450px; 
    overflow-y: auto; 
}

/* Show Class (Essential for JS toggle) */
.show {
    display: flex !important;
}

/* Dropdown Menu Items (Avatar Menu Links) */
#avatarMenu a,
.avatarMenu a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400 !important;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f1f1;
}

#avatarMenu a i {
    font-size: 16px;
    color: #9ca3af;
    width: 20px;
    text-align: center;
}

#avatarMenu a:hover,
.avatarMenu a:hover {
    background: #f9fafb;
    color: #03a4ed;
    padding-left: 24px;
}

#avatarMenu a:hover i {
    color: #03a4ed;
}

/* Logout Button Special Styling */
#avatarMenu a[href*="logout"] {
    margin-top: 5px;
    border-top: 1px solid #f3f4f6;
    color: #ef4444;
}

#avatarMenu a[href*="logout"] i {
    color: #ef4444;
}

#avatarMenu a[href*="logout"]:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* Header inside Dropdowns */
.notif-header {
    padding: 14px 18px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    font-weight: 700;
    color: #202124;
}

/* ==========================================================================
   9. NOTIFICATION LIST & CONTENT (SCROLLING)
   ========================================================================== */
.chat-content, 
.notif-content,
.notif-list,
#webInboxList,
#webNotifList {
    /* Limit height inside the dropdown */
    max-height: 400px !important; 
    overflow-y: auto !important;
    overflow-x: hidden;
    background: #fff;
    padding: 0;
    scroll-behavior: smooth;
    display: block;
}

/* Scrollbar Styling */
.notif-list::-webkit-scrollbar,
#webInboxList::-webkit-scrollbar,
#webNotifList::-webkit-scrollbar,
.chat-content::-webkit-scrollbar, 
.notif-content::-webkit-scrollbar,
.notif-dropdown::-webkit-scrollbar {
    width: 5px;
}

.notif-list::-webkit-scrollbar-thumb,
#webInboxList::-webkit-scrollbar-thumb,
#webNotifList::-webkit-scrollbar-thumb,
.chat-content::-webkit-scrollbar-thumb, 
.notif-content::-webkit-scrollbar-thumb,
.notif-dropdown::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.notif-list::-webkit-scrollbar-track,
.chat-content::-webkit-scrollbar-track, 
.notif-content::-webkit-scrollbar-track,
.notif-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

/* Notif Item */
.notif-item {
    padding: 15px 18px;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notif-item:hover {
    background-color: #f8f9fa;
}

/* Unread Indicator */
.notif-item.unread::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 20px;
    width: 8px;
    height: 8px;
    background-color: #1a73e8;
    border-radius: 50%;
}

.notif-item.unread {
    background-color: #f8fbff;
    padding-left: 24px;
}

.notif-item.unread strong {
    color: #202124;
    font-weight: 700;
}

.notif-item strong {
    font-size: 14px;
    color: #3c4043;
    margin-bottom: 2px;
}

.notif-item p {
    font-size: 13px;
    color: #5f6368;
    margin: 0;
    line-height: 1.4;
}

.notif-item small {
    font-size: 11px;
    color: #9aa0a6;
    margin-top: 4px;
    display: block;
}

.notif-footer {
    padding: 12px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    cursor: pointer;
}

.notif-footer:hover {
    background-color: #f8f9fa;
    text-decoration: underline;
}

.notif-empty {
    padding: 40px 20px;
    text-align: center;
    color: #5f6368;
    font-size: 14px;
}

/* ==========================================================================
   10. SUB-MENUS & DROPDOWNS (FIXED: Vertical List)
   ========================================================================== */
.has-sub {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.submenu-toggle {
    cursor: pointer;
    padding: 20px;
    font-size: 14px;
}

.sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    min-width: 270px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    border-radius: 10px;
    padding: 8px 0;
    z-index: 9999;
    /* ✅ Fix: Ensure vertical stacking */
    flex-direction: column;
}

.sub-menu.show {
    display: block; /* Flex hata kar Block kar diya */
}

/* ✅ Fix: List items ek line me ek hi dikhenge */
.sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
}

.sub-menu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    width: 100%; /* Full width clickable area */
    box-sizing: border-box; /* Padding ke sath width calculate karega */
}

.sub-menu a:hover {
    background: #f5f5f5;
    color: #03a4ed; /* Hover par blue color */
}

.submenu-toggle i {
    transition: transform 0.25s ease;
}

/* When Dropdown Open */
.has-sub.open .submenu-toggle i {
    transform: rotate(180deg);
}
/* ==========================================================================
   11. FLOATING OFFER & ANIMATIONS
   ========================================================================== */
#floatingOffer {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: transparent !important;
    padding: 0;
    width: auto;
    border: none;
    box-shadow: none;
    display: none;
    z-index: 999999;
    animation: floatIn .5s ease;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.offer-character-floating {
    position: absolute;
    top: -120px;
    right: 50%;
    transform: translateX(50%);
    width: 140px;
    z-index: 1000000;
    pointer-events: none;
    animation: bounce 2.5s infinite ease-in-out;
}

.offerContentBox {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    width: 350px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    margin-top: 70px;
    position: relative;
    pointer-events: auto;
}

.offerContentBox .close-offer {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #444;
}

.offer-timer {
    background: #ffecec;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #d10000;
    text-align: center;
    margin-bottom: 10px;
}

#floatingOffer h4 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

#floatingOffer p {
    font-size: 15px;
    margin: 0 0 10px;
    line-height: 1.4;
    color: #444;
}

#floatingOffer .btn-claim {
    background: #00ff8c;
    color: #000;
    width: 100%;
    padding: 10px;
    font-weight: 700;
    display: inline-block;
    border-radius: 8px;
    text-align: center;
    margin-top: 5px;
    transition: 0.2s;
    border: none;
}

#floatingOffer .btn-claim:hover {
    background: #00e57d;
    transform: translateY(-2px);
}

.offer-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 10px 0 12px 0;
    white-space: pre-line;
}

.offer-text br {
    margin-bottom: 6px;
    display: block;
}

.offer-text b,
.offer-text strong {
    font-weight: 700;
    color: #000;
}

.btn-claim {
    transition: 0.25s ease;
}

.btn-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.12);
}

/* Keyframes */
@keyframes softPulse {
    0% { box-shadow: 0 0 6px rgba(3, 164, 237, 0.25); }
    50% { box-shadow: 0 0 18px rgba(3, 164, 237, 0.45); }
    100% { box-shadow: 0 0 6px rgba(3, 164, 237, 0.25); }
}

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

@keyframes fadeInScale {
    from { opacity: 0; transform: translateY(-6px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(50%) translateY(0); }
    50% { transform: translateX(50%) translateY(-12px); }
}

/* ==========================================================================
   12. 100% PROFESSIONAL MOBILE MENU (Seamless & Clean)
   ========================================================================== */

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #1e293b; /* Premium Dark Blue-Gray */
    padding: 5px;
    transition: transform 0.2s;
}
.menu-toggle:active {
    transform: scale(0.9);
}

    /* 1. Header Container reset */
    .header-area {
        height: auto !important; /* Fixed height hata diya */
        min-height: auto !important;
        flex-direction: column !important;
        padding: 0 !important;
    }
    
    .main-nav {
        flex-direction: column !important;
        padding: 0 !important;
        width: 100%;
        background: #fff;
    }

    /* 2. Top Row (Logo + User + Hamburger) */
    .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1450px;       /* Content ko jyada failne se rokega */
    margin: 0 auto;          /* ✅ IMPORTANT: Isse content center me rahega */
    border-bottom: 1px solid #f0f0f0;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px 10px; /* Top, Left/Right, Bottom Spacing */
}

    /* 3. Bottom Row (Menu) */
/* ✅ NORMAL STATE (Jab Menu Dikh Raha Hai) */
.header-bottom {
    /* --- Layout Settings --- */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto; /* Center align */
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #f0f0f0;
    
    /* --- Animation & Dropdown Settings --- */
    transition: all 0.3s ease-in-out; /* Smooth slide */
    max-height: 80px; /* Menu ki max height */
    opacity: 1;
    overflow: visible; /* ✅ IMPORTANT: Taaki Dropdown cut na ho */
    padding: 0; /* Padding 0 rakhein taaki animation smooth ho */
}

/* ✅ HIDDEN STATE (Jab Scroll Down Karein) */
/* Ye class JS se parent pe lagegi, aur is child ko chupayegi */
.hide-menu .header-bottom {
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important; /* ✅ IMPORTANT: Chupne ke time hidden */
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    pointer-events: none; /* Click disable */
}
    /* Menu ko adjust karna */
    .nav-menu {
            margin: 0 !important;
    justify-content: left !important;
    width: 100%;
    max-width: 1450px;
    }
    
    .nav-menu li a {
        padding: 12px 20px; /* Thoda spacing badhaya */
    }
@media (min-width: 992px) {
    
    /* Har menu item ke right side me halki line */
    .nav-menu li {
        border-right: 1px solid rgba(0,0,0,0.1); /* Halka Grey Color */
    }

    /* Sabse aakhri item (Book Store) ke baad line hata do */
    .nav-menu li:last-child {
        border-right: none;
    }
}
/* ==========================================================================
   MOBILE & TABLET OPTIMIZATION (FINAL FIX - NO OVERLAP)
   ========================================================================== */
@media (max-width: 991px) {

    /* --- 1. HEADER CONTAINER --- */
    .header-area {
        height: 60px !important;
        min-height: 60px !important;
        padding: 0 !important;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .main-nav {
        width: 100%;
        padding: 0 !important;
    }

    /* --- 2. HEADER TOP (The Layout Controller) --- */
    /* Isse 'Relative' banaya taaki iske andar wale elements ko 'Absolute' move kar sakein */
    .header-top {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important; /* Logo Center ke liye */
        height: 60px;
        width: 100%;
        padding: 0 !important;
        border: none !important;
        position: relative !important; /* Zaroori hai */
    }

    /* --- 3. WRAPPER RESET (Jisme Hamburger aur Profile band hain) --- */
    /* Ye trick hai: Wrapper ko 'static' kar diya taaki bache huye elements header ke hisab se move hon */
    .header-top > div {
        position: static !important; 
        width: 100%;
    }

    /* --- 4. HAMBURGER MENU (Force Move to LEFT) --- */
    .menu-toggle {
        position: absolute !important;
        left: 15px !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: auto !important;
        z-index: 30;
        display: flex !important;
        align-items: center;
        width: 40px;
        font-size: 22px;
        color: #333;
    }

    /* --- 5. LOGO (Perfect Center & Safe Size) --- */
    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 10;
        display: flex;
        justify-content: center;
        width: auto;
    }
    .logo img {
        max-height: 22px !important; /* Size chota kiya taaki overlap na ho */
        width: auto;
    }

    /* --- 6. PROFILE SECTION (Force Move to RIGHT) --- */
    .profile-section {
        position: absolute !important;
        right: 15px !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: auto !important;
        z-index: 30;
        display: flex !important;
        align-items: center;
        gap: 8px !important;
    }

    /* --- 7. ICONS FIX (Compact Look) --- */
    /* Name Hide */
    .user-pill .pill-text { display: none !important; }
    
    /* Avatar Image */
    .user-pill { padding: 0 !important; border: none !important; background: transparent !important; }
    .user-pill img {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50%;
        border: 1px solid #eee;
    }

    /* Bell & Inbox Icons (Clean Circle) */
    .inboxIcon, .notifBellWrap {
        margin: 0 !important;
        width: 32px;
        height: 32px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #f7f7f7;
        border-radius: 50%;
    }
    .inboxIcon i, .notifBellWrap i { font-size: 16px !important; color: #555; }

    /* --- 8. SIDEBAR (Left Slide Menu) --- */
    .header-bottom {
        position: static !important;
        height: 0 !important;
        padding: 0 !important;
        border: none !important;
        overflow: visible !important;
    }

    .nav-menu {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 270px;
        height: 100vh;
        background: #fff;
        z-index: 99999;
        padding-top: 70px !important;
        padding-bottom: 30px;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
        transform: translateX(-105%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.show { transform: translateX(0); }

    /* Sidebar Items */
    .nav-menu li { display: block; border-bottom: 1px solid #f5f5f5; width: 100%; border-right: none !important; }
    .nav-menu li a { display: flex !important; justify-content: space-between; padding: 14px 20px !important; font-size: 15px; color: #333; }
    
    /* Submenu Fix */
    .nav-menu li.has-sub { flex-direction: column; align-items: flex-start; }
    .submenu-toggle { position: absolute; right: 0; top: 0; height: 50px; width: 50px; display: flex; align-items: center; justify-content: center; }
    .sub-menu { position: static !important; width: 100% !important; background: #fafafa !important; display: none; border: none !important; padding: 0 !important; }
    .sub-menu.show { display: block !important; }
    .sub-menu li a { padding-left: 40px !important; font-size: 14px; color: #666; }

    /* --- 9. DROPDOWNS FIX (Center Screen) --- */
    .chat-dropdown, .notif-dropdown, .avatarMenu {
        position: fixed !important;
        top: 70px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 350px !important;
        z-index: 200000;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }
}


/* ============================================================
   0c. SITE FOOTER
   ============================================================ */

/*footer*/

/* ── DESIGN TOKENS ── */
:root {
  --kdf-bg:           #ffffff;
  --kdf-bg-2:         #f8fafc;
  --kdf-bg-3:         #f1f5f9;
  --kdf-border:       #e9eef5;
  --kdf-border-2:     #dde3ec;
  --kdf-text:         #64748b;
  --kdf-text-dark:    #1e293b;
  --kdf-text-mid:     #475569;
  --kdf-accent:       #0ea5e9;       /* Matches existing site cyan/blue */
  --kdf-accent-2:     #0284c7;
  --kdf-green:        #10b981;
  --kdf-gold:         #f59e0b;
  --kdf-bottom-bg:    #0f172a;       /* Only bottom strip is dark */
  --kdf-font:         'Inter', 'Segoe UI', system-ui, sans-serif;
  --kdf-radius:       8px;
}

/* ── BASE ── */
footer.kd-footer {
  background: var(--kdf-bg);
  color: var(--kdf-text);
  font-family: var(--kdf-font);
  font-size: 13.5px;
  line-height: 1.6;
  border-top: 1px solid var(--kdf-border);
}
footer.kd-footer *, footer.kd-footer *::before, footer.kd-footer *::after {
  box-sizing: border-box;
}

/* ── TOP SECTION ── */
.kd-footer__top {
  padding: 60px 0 52px;
  background: var(--kdf-bg);
}

.kd-footer__container {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
    grid-template-columns: 1.5fr 0.9fr 1.2fr 0.9fr 0.9fr 1.3fr;
  gap: 44px;
  align-items: start;
}

/* ── BRAND COL ── */
.kd-footer__logo-link {
  display: inline-block;
  margin-bottom: 14px;
}
.kd-footer__logo-link img {
  transition: opacity 0.2s;
  height: 30px;
}
.kd-footer__logo-link:hover img { opacity: 0.8; }

.kd-footer__tagline {
  font-size: 13px;
  color: var(--kdf-text);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 230px;
}

/* Social Icons */
.kd-footer__socials {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.kd-soc {
  width: 34px; height: 34px;
  border-radius: var(--kdf-radius);
  border: 1px solid var(--kdf-border-2);
  background: var(--kdf-bg-2);
  color: var(--kdf-text-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.kd-soc:hover { transform: translateY(-3px); border-color: transparent; color: #fff; }
.kd-soc--insta:hover  { background: linear-gradient(135deg,#e1306c,#f77737); }
.kd-soc--fiverr:hover { background: #1dbf73; }
.kd-soc--linkedin:hover { background: #0077b5; }
.kd-soc--youtube:hover  { background: #ff0000; }

/* Rating Badge */
.kd-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
}

/* ── COLUMN TITLE ── */
.kd-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--kdf-text-dark);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--kdf-border);
  position: relative;
}
/* Accent underline on title */
.kd-footer__col-title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 24px; height: 2px;
  background: var(--kdf-accent);
  border-radius: 2px;
}

/* ── LINK LIST ── */
.kd-footer__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.kd-footer__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--kdf-text);
  text-decoration: none;
  padding: 5px 0;
  font-size: 13.5px;
  border-radius: 4px;
  transition: color 0.18s, padding-left 0.18s;
}
.kd-footer__list li a:hover {
  color: var(--kdf-accent-2);
  padding-left: 4px;
}
.kd-link-icon {
  font-size: 10px;
  color: var(--kdf-accent);
  width: 14px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* CTA button inside list */
.kd-footer__highlight {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  margin-top: 10px !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  background: var(--kdf-accent) !important;
  color: #fff !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.18s !important;
  box-shadow: 0 4px 12px rgba(14,165,233,0.25);
}
.kd-footer__highlight:hover {
  background: var(--kdf-accent-2) !important;
  color: #fff !important;
  padding-left: 16px !important;
  transform: translateY(-1px);
}

/* Pills */
.kd-pill {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.kd-pill--new {
  background: #d1fae5;
  color: #065f46;
  border-color: #a7f3d0;
}

/* ── NEWSLETTER ── */
.kd-footer__newsletter-desc {
  font-size: 13px;
  color: var(--kdf-text);
  margin: 0 0 14px;
  line-height: 1.65;
}
.kd-footer__form { margin: 0; }
.kd-footer__input-row {
  display: flex;
  border: 1.5px solid var(--kdf-border-2);
  border-radius: var(--kdf-radius);
  overflow: hidden;
  background: var(--kdf-bg-2);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kd-footer__input-row:focus-within {
  border-color: var(--kdf-accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.kd-footer__input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--kdf-text-dark);
  font-family: var(--kdf-font);
}
.kd-footer__input-row input::placeholder { color: #94a3b8; }
.kd-footer__input-row button {
  background: var(--kdf-accent);
  border: none;
  padding: 0 15px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.kd-footer__input-row button:hover { background: var(--kdf-accent-2); }

/* ── CONTACT LIST ── */
.kd-footer__contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kd-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--kdf-text);
}
.kd-contact-icon {
  width: 28px; height: 28px;
  background: var(--kdf-bg-2);
  border: 1px solid var(--kdf-border-2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--kdf-accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.kd-contact-icon--wa { color: #16a34a; }
.kd-footer__contact-list a {
  color: var(--kdf-text);
  text-decoration: none;
  transition: color 0.2s;
}
.kd-footer__contact-list a:hover { color: var(--kdf-accent-2); }
.kd-wa-link:hover { color: #16a34a !important; }

/* ── COMMISSION BANNER ── */
.kd-footer__banner {
  background: var(--kdf-bg-2);
  border-top: 1px solid var(--kdf-border);
  border-bottom: 1px solid var(--kdf-border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.kd-footer__banner p {
  margin: 0;
  font-size: 13.5px;
  color: var(--kdf-text-mid);
  font-weight: 500;
}
.kd-footer__banner a {
  color: var(--kdf-accent-2);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.kd-footer__banner a:hover { color: var(--kdf-accent); text-decoration: underline; }
.kd-footer__banner-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--kdf-accent);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── BOTTOM BAR — dark strip only here ── */
.kd-footer__bottom {
  background: var(--kdf-bottom-bg);
  padding: 16px 0;
}
.kd-footer__bottom-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.kd-footer__policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.kd-footer__policy-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.kd-footer__policy-links a:hover { color: #94a3b8; }
.kd-sep { color: #374151; font-size: 10px; }

.kd-footer__copy {
  font-size: 12px;
  color: #d3d6db;
}
.kd-footer__copy a {
  color: #d3d6db !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.kd-footer__copy a:hover { color: #94a3b8; }

/* ── SCROLL TOP ── */
#scrollTopBtn {
  position: fixed !important;
  right: 24px; bottom: 130px;
  width: 38px; height: 38px;
  background: #fff;
  color: var(--kdf-text-dark);
  border: 1px solid var(--kdf-border-2);
  border-radius: var(--kdf-radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  z-index: 999;
  transition: all 0.25s;
  font-size: 12px;
}
#scrollTopBtn:hover {
  background: var(--kdf-accent);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.3);
}

/* ── SMART REVIEW MODAL ── */
.smart-feedback-btn { position:fixed; bottom:30px; left:30px; z-index:9999; background:#fff; border:1px solid var(--kdf-border-2); padding:10px 18px; border-radius:50px; box-shadow:0 4px 16px rgba(0,0,0,0.08); display:flex; align-items:center; gap:8px; cursor:pointer; transition:0.25s; font-family:var(--kdf-font); }
.smart-feedback-btn:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.1); }
.smart-feedback-btn .text { font-weight:600; color:#334155; font-size:13px; }
.smart-modal-overlay { position:fixed; inset:0; z-index:10000; background:rgba(15,23,42,0.35); backdrop-filter:blur(4px); display:none; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; }
.smart-modal-overlay.active { display:flex; opacity:1; }
.smart-modal-box { background:#fff; width:90%; max-width:420px; padding:26px; border-radius:14px; box-shadow:0 24px 60px rgba(0,0,0,0.12); transform:scale(0.96); transition:0.3s; }
.smart-modal-overlay.active .smart-modal-box { transform:scale(1); }
.modal-header { display:flex; justify-content:space-between; margin-bottom:20px; }
.modal-header h3 { margin:0; font-size:17px; font-weight:700; color:#0f172a; }
.modal-header p { margin:3px 0 0; font-size:13px; color:#64748b; }
.highlight-tool { color:#0284c7; font-weight:600; }
.close-smart-btn { background:transparent; border:none; font-size:24px; color:#94a3b8; cursor:pointer; line-height:1; padding:0; }
.close-smart-btn:hover { color:#ef4444; }
.smart-select { width:100%; padding:10px; border:1px solid #e2e8f0; border-radius:8px; font-size:14px; color:#334155; margin-bottom:15px; outline:none; background:#f8fafc; font-family:var(--kdf-font); }
.smart-stars { display:flex; gap:6px; justify-content:center; margin:14px 0; }
.smart-stars i { font-size:28px; color:#e2e8f0; cursor:pointer; transition:color 0.15s; }
.smart-stars i.active { color:#fbbf24; }
.input-group-smart { margin-bottom:10px; }
.input-group-smart input,.input-group-smart textarea { width:100%; padding:10px 14px; border-radius:8px; border:1.5px solid #e2e8f0; font-size:13.5px; outline:none; font-family:var(--kdf-font); color:#334155; transition:border-color 0.2s; }
.input-group-smart input:focus,.input-group-smart textarea:focus { border-color:#0284c7; box-shadow:0 0 0 3px rgba(2,132,199,0.08); }
.smart-submit-btn { width:100%; background:#0f172a; color:#fff; padding:11px; border-radius:8px; border:none; font-weight:600; font-size:14px; cursor:pointer; margin-top:6px; transition:background 0.2s; font-family:var(--kdf-font); }
.smart-submit-btn:hover { background:#1e293b; }
.success-msg { text-align:center; color:#16a34a; font-weight:600; font-size:13px; margin-top:10px; display:none; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  .kd-footer__container {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
  }
  .kd-footer__brand { grid-column: span 2; }
  .kd-footer__col--contact { grid-column: span 2; }
}

@media (max-width: 900px) {
  .kd-footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .kd-footer__brand { grid-column: span 2; }
  .kd-footer__col--contact { grid-column: span 2; }
  .kd-footer__banner { padding: 14px 24px; }
}

@media (max-width: 600px) {
  .kd-footer__top { padding: 40px 0 36px; }
  .kd-footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 20px;
  }
  .kd-footer__brand { grid-column: span 2; }
  .kd-footer__col--contact { grid-column: span 2; }
  .kd-footer__tagline { max-width: 100%; }

  .kd-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 8px;
  }
  .kd-footer__policy-links { gap: 3px 5px; }
  .kd-footer__banner { flex-wrap: wrap; padding: 12px 20px; }
  .kd-footer__banner-dot { display: none; }

  #scrollTopBtn { right: 16px; bottom: 150px; }
  .smart-feedback-btn { bottom: 80px; left: 16px; padding: 10px; }
  .smart-feedback-btn .text { display: none; }
}


