:root {
  --primary-color: #303F9F;
  --accent-color: #bc4749;
  --success-color: #2f9934;
  --text-dark: #2d3748;
  --text-light: #718096;
  --background: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newLogoFlex {
  display: none;
  padding: 8px 0;
  justify-content: space-between;
  align-items: center;
  background: var(--background);
  box-shadow: var(--shadow);
}

.newLogoFlex .siteLogo {
  max-width: 150px;
}

.newLogoFlex .siteLogo img {
  width: 100%;
  height: auto;
}

.newLogoFlex .siteNumb {
  font-size: 17px;
  font-weight: 600;
  border: 2px solid var(--success-color);
  border-radius: 12px;
  padding: 8px 12px 8px 48px;
  position: relative;
  line-height: 1.4;
  background: rgba(47, 153, 52, 0.05);
  transition: var(--transition);
}

.newLogoFlex .siteNumb:before {
  width: 36px;
  height: 36px;
  content: " ";
  background-image: url(../images/utmCall.png);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--transition);
}

.newLogoFlex .siteNumb:hover {
  background: rgba(47, 153, 52, 0.1);
  transform: translateY(-1px);
}

a.dsnp-hdmovi {
  text-decoration: none;
}

section.banners {
  display: none;
}

a {
  text-decoration: none !important;
}

.banners {
  background: linear-gradient(135deg, #d3ebf5 0%, #e8f4f8 100%);
  padding: 20px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.bannerInner {
  background-color: var(--background);
  width: 100%;
  max-width: 400px;
  padding: 24px 10px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.close {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--background);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.close:hover {
  background: #f7fafc;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ringing_phone {
  animation: trin 1.5s infinite ease-in-out;
  border: 2px solid #e6effe;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  background: url(../images/phoneRotate.png) center center no-repeat;
  text-align: center;
  display: inline-block;
  background-size: 28px;
  transition: var(--transition);
}

.clickFull {
  position: relative;
}

.clickFull a.ddka {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.airLineimg {
  margin: 0px 0 12px 0;
  display: inline-block;
  width: 100%;
}

.airLineimg img {
  width: auto;
  margin: 8px 0;
  transition: var(--transition);
}

.bannerInner .blink1 {
  color: var(--background);
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 0;
  background: linear-gradient(135deg, #c53d3d 0%, #e01933 100%);
  padding: 12px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(197, 61, 61, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.airlines-logo {
  width: 100px !important;
  height: auto;
  transition: var(--transition);
}

.banners .bannerInner ul {
   display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 0px;
}

.banners .bannerInner ul.list-view-items1 li {
 color: var(--background) !important;
  text-align: center;
  font-size: 14px !important;
  line-height: 1.4;
  font-weight: 500 !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a237e 100%) !important;
  padding: 12px 8px;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(48, 63, 159, 0.3);
}

.banners .bannerInner ul.list-view-items1 li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 63, 159, 0.4);
}

.bannerInner h2 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
}

.bannerInner h2 p {
  margin: 12px 0 !important;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

.bannerInner .numbers {
  background: linear-gradient(135deg, var(--accent-color) 0%, #a5383b 100%);
  border: 0;
  margin-top: 0px;
  padding: 4px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(188, 71, 73, 0.4);
  transition: var(--transition);
}

.bannerInner .numbers:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 71, 73, 0.5);
}

.bannerInner .numbers a {
  color: var(--background);
  font-size: 24px;
  font-weight: 700;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #a5383b 100%);
}

span.nbrs {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.bannerInner .numbers a span.nbrs small {
  font-size: 13px;
  display: block;
  text-align: left;
  font-weight: 500;
  opacity: 0.9;
}

.girlCalling {
  margin: 2px 0px;
  position: relative;
  display: inline-block;
}

.girlCalling img {
  border-radius: 50%;
  border: 4px solid var(--background);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.girlCalling:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.head-call {
 border: 1px solid var(--success-color);
    border-radius: 50px;
    padding: 0px 16px 0px 2px;
    display: inline-flex
;
    align-items: center;
    gap: 8px;
    background: rgba(47, 153, 52, 0.05);
  transition: var(--transition);
}

.head-call:hover {
  background: rgba(47, 153, 52, 0.1);
  transform: translateY(-1px);
}

.head-call img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* Bottom call bar */
.visible-xs {
  display: none !important;
}

.bottom-call-bar {
  padding: 0;
  background: linear-gradient(135deg, #00577b 0%, #003d57 100%);
  bottom: 0px !important;
  left: 0%;
  color: var(--background);
  position: fixed;
  font-size: 16px;
  text-align: center;
  width: 100%;
  height: 70px;
  z-index: 9999;
  border-radius: 0;
  transition: var(--transition);
  box-shadow: 0 -4px 20px rgba(0, 87, 123, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-call-bar a {
  color: var(--background);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  width: 100%;
  justify-content: center;
}

.bottom-call-bar a span {
  width: 44px;
  height: 44px;
  font-size: 24px;
  text-align: center;
  line-height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: #00b67a;
  border-radius: 50%;
  animation: trin 1.5s infinite ease-in-out;
  backdrop-filter: blur(10px);
}

.bottom-call-bar .call-text {
  font-size: 14px;
  font-weight: 500;
}

.bottom-call-bar .phone {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.blink {
  animation: blinker 1.3s ease-in-out infinite;
}

@keyframes blinker {
  0%, 50% { opacity: 1; }
  25%, 75% { opacity: 0.7; }
}

@keyframes trin {
  0% { transform: rotate3d(0, 0, 1, 0deg) scale(1); }
  25% { transform: rotate3d(0, 0, 1, 15deg) scale(1.1); }
  50% { transform: rotate3d(0, 0, 1, 0deg) scale(1); }
  75% { transform: rotate3d(0, 0, 1, -15deg) scale(1.1); }
  100% { transform: rotate3d(0, 0, 1, 0deg) scale(1); }
}

/* Responsive Design */
@media (min-width: 320px) and (max-width: 767px) {
  .newLogoFlex {
    display: flex;
    padding: 12px 16px;
  }
  
  section.banners {
    display: flex;
    padding: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
    background: linear-gradient(135deg, #d3ebf5 0%, #e8f4f8 100%);
    align-items: flex-start;
    justify-content: center;
  }
  
  .bannerInner {
    margin: 20px 10px;
    max-width: 360px;
  }
  
  .visible-xs {
    display: flex !important;
  }
  
  .bottom-call-bar {
    height: 65px;
  }
  
  .bottom-call-bar a {
    padding: 8px 16px;
  }
  
  .bannerInner .numbers a {
    font-size: 22px;
    padding: 5px 16px;
  }
  
  ul.list-view-items1 li {
    font-size: 13px !important;
    padding: 10px 6px !important;
  }
}

/* Smooth transitions for all interactive elements */
.bannerInner * {
  transition: var(--transition);
}

/* Improved focus states for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Loading animation for better perceived performance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bannerInner {
  animation: fadeInUp 0.6s ease-out;
}

/* Banner Search Section */
section.banner-search {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
display: none;

  margin: 20px auto;
 
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}



@keyframes shimmer {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

section.banner-search > div:first-child {
    background: #a5383b;
  color: var(--background);
  font-size: 24px;
  font-weight: 700;
  
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.8s ease-out;

    padding: 10px 0px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.banner-search img {
  width: 100%;
  
 
  margin: 0px 0 20px 0;
  transition: var(--transition);
  
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.02); }
}


section.banner-search > div:nth-child(3) {
  color: var(--background);
  font-size: 18px;
  font-weight: 600;
  margin: 20px 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a237e 100%) !important;

}

section.banner-search > div:last-child {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

section.banner-search > div:last-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

section.banner-search > div:last-child > div:first-child {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #e8f4f8 0%, #d3ebf5 100%);
  border-radius: 8px;
  border-left: 4px solid var(--success-color);
 
}

/* Numbers section in banner-search */
section.banner-search .numbers {
  background: linear-gradient(135deg, var(--accent-color) 0%, #a5383b 100%);
  border: 0;
  margin: 15px 0;
  padding: 4px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(188, 71, 73, 0.4);
  transition: var(--transition);
}

section.banner-search .numbers:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 71, 73, 0.5);
}

section.banner-search .numbers a {
  color: var(--background);
  font-size: 20px;
  font-weight: 700;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #a5383b 100%);
  transition: var(--transition);
}

section.banner-search .numbers a:hover {
  background: linear-gradient(135deg, #a5383b 0%, #8c2c2e 100%);
}

section.banner-search .ringing_phone {
  animation: trin 1.5s infinite ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background: url(../images/phoneRotate.png) center center no-repeat;
  background-size: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

section.banner-search .numbers:hover .ringing_phone {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

section.banner-search .nbrs {
  text-align: left;
  display: flex;
  flex-direction: column;
}

section.banner-search .nbrs small {
  font-size: 12px;
  display: block;
  text-align: left;
  font-weight: 500;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

section.banner-search > div:last-child > div:last-child {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00b67a 0%, #009e68 100%);
  color: var(--background);
  border-radius: 8px;
  display: inline-block;
  animation: blinker 2s ease-in-out infinite;
}

/* Responsive Design for banner-search */
@media (min-width: 320px) and (max-width: 767px) {
  section.banner-search {
    margin: 0px;
    padding: 0px;
    display: block;
  }
  
  section.banner-search > div:first-child {
    font-size: 20px;
   
  }
  

  section.banner-search > div:nth-child(3) {
    font-size: 16px;
    margin: 15px 10;
    padding: 10px 15px;
  }
  
  section.banner-search > div:last-child {
    padding: 15px;
  }
  
  section.banner-search .numbers a {
    font-size: 18px;
    padding: 10px 14px;
  }
  
  section.banner-search .ringing_phone {
    height: 45px;
    width: 45px;
    background-size: 22px;
  }
}

/* Enhanced animations for banner-search */
@keyframes glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(188, 71, 73, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(188, 71, 73, 0.6); }
}

section.banner-search .numbers {
  animation: glow 2s ease-in-out infinite;
}

/* Smooth hover effects for all interactive elements */
section.banner-search * {
  transition: var(--transition);
}

/* Accessibility improvements */
section.banner-search .numbers a:focus-visible {
  outline: 3px solid var(--background);
  outline-offset: 2px;
  border-radius: 50px;
}

/* Print styles */
@media print {
  section.banner-search {
    background: #f8f9fa !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  
  section.banner-search .numbers {
    background: #333 !important;
  }
}