/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  /*display: block;*/
}

ul {
  list-style: none;
}

/* Header */
.header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-bottom: 2px solid #e8e8e8;
  padding: 12px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
 /*max-width: 1400px;*/
  margin: 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.02);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #25D366;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
}

.nav-separator {
  color: #ccc;
  font-weight: 300;
}

.nav-link {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #8b7355;
  background-color: rgba(139, 115, 85, 0.08);
}

.login-link {
  color: #8b7355;
  font-weight: 600;
}

/* Main Layout */
.main-layout {
  display: flex;
  flex: 1;
}

/* Sidebar */
.sidebar {
  width: 15%;
  background: #aca382;
  min-height: calc(100vh - 90px);
  flex-shrink: 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.sidebar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.sidebar-item {
  display: block;
  padding: 3px 3px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  border-left: 3px solid transparent;
}

.sidebar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(201, 188, 142, 0.15) 0%, transparent 100%);
  transition: width 0.3s ease;
}

.sidebar-item:hover::before,
.sidebar-item.active::before {
  width: 100%;
}

.sidebar-item:hover,
.sidebar-item.active {
  color: #e8deb5;
  border-left-color: #c9bc8e;
}

.sidebar-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-icon {
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #888;
}

.dropdown-toggle:hover .dropdown-icon {
  color: #c9bc8e;
}

.dropdown-toggle.open .dropdown-icon {
  transform: rotate(45deg);
  color: #e8deb5;
}

.dropdown-menu {
  display: none;
  background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
  max-height: 400px;
  overflow-y: auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-menu.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.dropdown-menu li a {
  display: block;
  padding: 11px 20px 11px 30px;
  color: #888;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  position: relative;
}

.dropdown-menu li a::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #555;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  color: #e8deb5;
  background: linear-gradient(90deg, rgba(201, 188, 142, 0.1) 0%, transparent 100%);
  border-left-color: #c9bc8e;
  padding-left: 35px;
}

.dropdown-menu li a:hover::before {
  background-color: #c9bc8e;
  box-shadow: 0 0 6px rgba(201, 188, 142, 0.5);
}

/* Scrollbar for dropdown */
.dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #111;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #555 0%, #333 100%);
  border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #666 0%, #444 100%);
}

/* Content Area */
.content {
  flex: 1;
  background-color: #fff;
}

/* Banner Slider */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* height: 250px;
 background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);*/
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  pointer-events: none;
}

.slide-caption {
  position: absolute;
  bottom: 35px;
  left: 30px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 25px;
  backdrop-filter: blur(5px);
  border-left: 3px solid #c9bc8e;
  z-index: 2;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  right: 25px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.5);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.dot.active {
  background-color: #c9bc8e;
  border-color: #c9bc8e;
  box-shadow: 0 0 10px rgba(201, 188, 142, 0.5);
}

.slider-nav {
  display: none;
}

/* Cards Section */
.cards-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 20px 10px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 25px;
  /*text-align: center;
  width: 200px;*/
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cardd {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  /*width: 200px;*/
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9bc8e 0%, #a89968 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #d5d5d5;
}

.card:hover::before {
  transform: scaleX(1);
}

.card img {
  /*width: 100%;
  height: 100px;*/
  object-fit: cover;
  /*margin-bottom: 18px;*/
  border-radius: 6px;
  border: 1px solid #eee;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.03);
}

.card-large {
  width: 410px;
}

.card-large img {
  height: 180px;
}

.card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.card h2 a {
  color: #6b6b5a;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(107, 107, 90, 0.3);
  transition: all 0.3s ease;
}

.card h2 a:hover {
  color: #8b7355;
  text-decoration-color: #8b7355;
}

.card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.card p a {
  color: #777;
  text-decoration: underline;
  text-decoration-color: rgba(119, 119, 119, 0.3);
}

.card p a:hover {
  color: #555;
  text-decoration-color: #555;
}

/* ICL Section */
.icl-section {
  padding: 80px 60px 90px;
  text-align: center;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 50%, #f9f9f9 100%);
  position: relative;
}

.icl-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9bc8e, transparent);
}

.icl-section > h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #5a5a4a;
  margin-bottom: 35px;
  letter-spacing: 1px;
}

.icl-section > h2 a {
  color: #5a5a4a;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(90, 90, 74, 0.3);
  transition: all 0.3s ease;
}

.icl-section > h2 a:hover {
  color: #8b7355;
  text-decoration-color: #8b7355;
}

.icl-content {
  display: inline-block;
  text-align: left;
  max-width: 75%;
  width: 100%;
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.icl-logo {
  width: 100%;
  max-width: 380px;
  margin: 0 auto 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.icl-info {
  text-align: center;
}

.icl-title {
  font-size: 28px;
  font-style: italic;
  color: #444;
  margin-bottom: 25px;
  font-weight: 400;
}

.icl-text {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.icl-rates {
  font-size: 20px;
  color: #444;
  line-height: 2.2;
  margin-bottom: 35px;
  font-weight: 400;
  background: linear-gradient(135deg, #f8f6f0 0%, #f0ede5 100%);
  padding: 20px 30px;
  border-radius: 8px;
  border-left: 4px solid #c9bc8e;
}

.icl-footer-logo {
  width: 150px;
  margin: 0 auto 20px;
  opacity: 0.9;
}

.icl-source {
  font-size: 22px;
  color: #555;
  line-height: 1.5;
  font-weight: 300;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #080808 100%);
  color: #ccc;
  padding: 60px 40px 30px;
  margin-top: auto;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #222, #c9bc8e, #222);
}

.footer-container {
  display: flex;
  justify-content: flex-end;
  gap: 120px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.footer-section {
  text-align: right;
}

.footer-section h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #c9bc8e;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.8;
  color: #888;
}

.footer-section a {
  color: #888;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #c9bc8e;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
}

.footer-bottom p {
  font-size: 13px;
  color: #555;
}

.footer-bottom strong {
  color: #999;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .header-nav {
    gap: 12px;
  }

  .whatsapp-link span {
    display: none;
  }

  .whatsapp-link {
    padding: 10px;
    border-radius: 50%;
  }

  .sidebar {
    width: 170px;
  }

  .cards-section {
    gap: 25px;
    padding: 40px 20px;
  }

  .card {
    width: 180px;
    padding: 20px;
  }

  .card-large {
    width: 240px;
  }

  .footer-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .footer-section {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 15px;
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .main-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    min-height: auto;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }

  .sidebar-item {
    padding: 10px 14px;
    font-size: 11px;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .sidebar-item:hover,
  .sidebar-item.active {
    border-left-color: transparent;
    border-bottom-color: #c9bc8e;
  }

  .sidebar-item::before {
    display: none;
  }

  .sidebar-dropdown {
    position: static;
  }

  .dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100;
  }

  .banner-slider {
    height: 220px;
  }

  .slide-caption {
    font-size: 18px;
    padding: 8px 18px;
    bottom: 30px;
    left: 20px;
  }

  .cards-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .card,
  .card-large {
    width: 90%;
    max-width: 320px;
  }

  .card img,
  .card-large img {
    height: 160px;
  }

  .icl-section {
    padding: 40px 20px 50px;
  }

  .icl-content {
    padding: 30px 20px;
  }

  .icl-logo {
    max-width: 280px;
  }

  .icl-title,
  .icl-text,
  .icl-rates,
  .icl-source {
    font-size: 16px;
  }

  .icl-rates {
    padding: 15px 20px;
  }
}

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

  .header-nav {
    font-size: 11px;
    gap: 8px;
  }

  .nav-separator {
    display: none;
  }

  .nav-link {
    padding: 6px 8px;
    font-size: 11px;
  }

  .banner-slider {
    height: 180px;
  }

  .slide-caption {
    font-size: 16px;
    padding: 6px 14px;
    bottom: 25px;
    left: 15px;
  }

  .card h2 {
    font-size: 16px;
  }

  .icl-section > h2 {
    font-size: 20px;
  }

  .footer {
    padding: 40px 20px 25px;
  }

  .footer-container {
    gap: 30px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





