html {
  font-size: 14px;
}

/* Section Padding */
.padding-top {
  padding-top: 60px;
}

.padding-bottom {
  padding-bottom: 60px;
}

/* Feature boxes */
#why-choose .feature-wrap {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

#why-choose .feature-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

#why-choose .feature-wrap i {
  font-size: 3em;
  color: #0d7377;
  margin-bottom: 15px;
}

#why-choose .feature-wrap h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

#why-choose .feature-wrap p {
  color: #666;
  margin: 0;
}

/* FAQ Section */
#faq .panel-group {
  margin-bottom: 30px;
}

#faq .panel-default {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 5px;
}

#faq .panel-heading {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 5px 5px 0 0;
}

#faq .panel-heading.active {
  background: #0d7377;
  color: #fff;
}

#faq .panel-heading.active .accordion-toggle {
  color: #fff;
}

#faq .panel-body {
  padding: 20px;
  background: #fff;
}

#faq .accordion-toggle {
  color: #333;
  font-weight: 500;
  display: block;
  text-decoration: none;
}

#faq .accordion-toggle:hover {
  text-decoration: none;
}

#faq .panel-title > a:after {
  float: right;
  content: "\f107";
  font-family: FontAwesome;
  font-size: 1.2em;
}

#faq .panel-title > a.collapsed:after {
  content: "\f105";
}

/* Footer Styles */
#footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 50px 0 0;
}

#footer h4 {
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #0d7377;
  color: #fff;
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: #0d7377;
  padding-left: 5px;
}

.footer-links i {
  margin-right: 8px;
  color: #0d7377;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  color: #0d7377;
  margin-top: 4px;
}

.footer-bottom {
  background: #111;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom .copyright {
  color: #888;
  margin: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

/* Carousel Navigation - Hero Section */
#main-slider .prev,
#main-slider .next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-color: #c52d2f;
    color: #fff;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    width: 40px !important;
    line-height: 1 !important;
    border-radius: 4px;
    z-index: 5;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#main-slider .prev:hover,
#main-slider .next:hover {
    background-color: #000;
    color: #fff;
}

#main-slider .prev {
    left: 10px;
}

#main-slider .next {
    right: 10px;
}

#main-slider .prev i,
#main-slider .next i,
#main-slider .prev .fa,
#main-slider .next .fa,
#main-slider .fa-chevron-left,
#main-slider .fa-chevron-right {
    display: block !important;
    line-height: 1 !important;
    font-size: 18px !important;
    width: 18px !important;
    height: 18px !important;
}

.carousel-control.left, .carousel-control.right {
    background-image: none;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    height: 50px;
    width: 50px;
    background-color: rgba(192, 57, 43, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.carousel-control.left:hover, .carousel-control.right:hover {
    opacity: 1;
    background-color: rgba(192, 57, 43, 1);
}

.carousel-control .glyphicon-chevron-left, 
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev, 
.carousel-control .icon-next {
    position: static;
    margin: 0;
    font-size: 20px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control.left {
    left: 20px;
}

.carousel-control.right {
    right: 20px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 15px 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-consent-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-consent-banner a {
  color: #0d7377;
  text-decoration: underline;
}

.cookie-consent-banner a:hover {
  color: #fff;
}

.cookie-consent-banner .btn {
  border-radius: 4px;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0d7377;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chat-toggle:hover {
  background: #0a5c5f;
}

.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4757;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 450px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-window.show {
  display: flex;
}

.chat-header {
  background: #0d7377;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h5 {
  margin: 0;
  font-size: 16px;
}

.chat-header .btn-minimize {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #f8f9fa;
}

.chat-message {
  margin-bottom: 15px;
}

.chat-message .message-content {
  background: #fff;
  padding: 10px 14px;
  border-radius: 15px;
  max-width: 80%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.chat-message.bot .message-content {
  background: #0d7377;
  color: #fff;
  border-bottom-left-radius: 2px;
}

.chat-message.user .message-content {
  background: #e8f4f4;
  color: #333;
  margin-left: auto;
  border-bottom-right-radius: 2px;
}

.chat-message .message-time {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}

.chat-message.user .message-time {
  text-align: right;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-btn {
  background: #fff;
  border: 1px solid #0d7377;
  color: #0d7377;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.quick-btn:hover {
  background: #0d7377;
  color: #fff;
}

.chat-input {
  padding: 10px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
}

.chat-input input:focus {
  border-color: #0d7377;
}

.chat-input button {
  background: #0d7377;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.chat-footer {
  padding: 8px 15px;
  background: #f8f9fa;
  text-align: center;
  font-size: 12px;
  color: #999;
}

.chat-footer a {
  color: #0d7377;
}

@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 40px);
    right: -10px;
  }
}

/* Geo Info Banner */
.geo-banner {
  background: linear-gradient(135deg, #0d7377 0%, #0a5c5f 100%);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}

.geo-banner i {
  margin-right: 5px;
}

.geo-banner a {
  color: #fff;
  text-decoration: underline;
}

/* Pricing Section */
.pricing-area {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.pricing-area:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-head {
  padding: 10px 0;
  background: #f8f8f8;
}

.price-title {
  padding: 20px 0;
  background: #c52d2f;
  color: #fff;
}

.price-title h3 {
  color: #fff;
  margin: 0;
}

.price-area {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.price-area .amount {
  font-size: 40px;
  font-weight: 700;
  color: #c52d2f;
}

.price-area .currency {
  font-size: 20px;
  vertical-align: top;
}

.price-area .number {
  font-size: 40px;
  font-weight: 700;
  color: #333;
}

.price-area .period {
  font-size: 14px;
  color: #999;
}

.price-description {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.price-description p {
  margin: 0;
  color: #666;
}

.price-feature-list {
  list-style: none;
  padding: 15px 20px;
  margin: 0;
  text-align: left;
}

.price-feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.price-feature-list li:last-child {
  border-bottom: none;
}

.price-btn {
  padding: 20px;
}

.price-btn .btn {
  padding: 10px 30px;
}

/* Navbar Fixes - Override Corlate */
.navbar {
  border-radius: 0;
  margin-bottom: 0;
  min-height: 50px;
}

.navbar-nav {
  margin-top: 0;
}

.navbar-nav > li {
  margin-left: 0;
  padding-bottom: 0;
}

.navbar-nav > li > a {
  padding: 15px;
  line-height: 20px;
}

.navbar-brand {
  height: auto;
  padding: 8px 15px;
  line-height: normal;
}

.navbar-brand img {
  display: inline-block;
  vertical-align: middle;
}

.navbar-inverse {
  background-color: #222;
  border-color: #222;
}

.navbar-inverse .navbar-brand {
  color: #fff;
}

.navbar-inverse .navbar-nav > li > a {
  color: #fff;
  padding: 15px;
  border-radius: 0;
}

.navbar-inverse .navbar-nav > li > a:hover {
  background-color: #c52d2f;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  background-color: #c52d2f;
}

.navbar-toggle {
  padding: 8px 10px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}