:root {
  --primary-color: #4892aa; /* Original site primary */
  --primary-dark: #37768a; /* Slightly darker for hover */
  --secondary-color: #2c3e50; /* Softer, lighter navy */
  --bg-color: #ffffff; /* Brighter white background */
  --text-color: #2c3e50; /* Softer text color */
  --text-light: #7f8c8d;
  --glass-bg: rgba(255, 255, 255, 0.95); /* More opaque, brighter glass */
  --glass-border: rgba(220, 220, 220, 0.5); /* Lighter border */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03); /* Softer shadows */
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.06);
  --font-main: 'Work Sans', sans-serif;
  --font-heading: 'Work Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #f5f7fa; /* Force light/bright theme even in dark mode per user request */
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(220, 220, 220, 0.5);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.06);
    --secondary-color: #2c3e50;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-color);
}

@media (prefers-color-scheme: dark) {
  h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Glassmorphism Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  transition: var(--transition);
  color: #ffffff;
}

.topbar.scrolled {
  padding: 0.8rem 5%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  color: var(--text-color);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown CSS */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  color: var(--text-color) !important;
  padding: 0.6rem 1.5rem !important;
  display: block;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background: #f5f7fa;
  color: var(--primary-color) !important;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
}

.btn-white {
  background-color: #ffffff;
  color: #000000;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.topbar.scrolled .btn-white {
  background-color: var(--primary-color);
  color: #ffffff;
}

.topbar.scrolled .btn-white:hover {
  background-color: var(--primary-dark);
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-switch a {
  font-weight: 600;
  opacity: 0.6;
}

.lang-switch a.active {
  opacity: 1;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0 5%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.6) 100%), url('/assets/img/hero-bg.jpg') center/cover;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  animation: fadeUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Section */
.section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--glass-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

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

/* Footer */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 5% 2rem;
  font-family: var(--font-main);
}

.footer-grid {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer ul li a {
  color: var(--primary-color);
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer ul li a:hover {
  opacity: 0.8;
}

.footer-divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  border-top: 2px dotted var(--primary-color);
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--primary-color);
  color: #000000;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Floating Sidebar */
.floating-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.floating-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: width 0.3s ease;
}

.floating-icon:hover {
  width: 60px;
}

.floating-icon.fb { background-color: #3b5998; }
.floating-icon.wa { background-color: #25d366; }
.floating-icon.in { background-color: #007bb5; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: var(--primary-color);
  color: white;
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s ease;
}

.floating-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Forms */
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  background-color: #e0e0e0;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
}

.form-control::placeholder {
  color: #666;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  color: var(--text-color);
}

.modal-content h2 {
  color: #000000;
  font-weight: 700;
}

.modal-content p, .modal-content label {
  color: #333333;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none;
  }
}
