/* Global Styles */
/* Global Styles */
:root {
  /* Base colors */
  --black: #121212;
  --white: #ffffff;
  --gold: #d4af37;
  
  /* Light mode colors */
  --light-gray: #f5f5f5;
  --gray: #767676;
  --bg-color: var(--white);
  --text-color: var(--black);
  --card-bg: var(--white);
  --border-color: #e0e0e0;
  --input-bg: var(--white);
  --input-border: var(--light-gray);
  --chat-bg: var(--light-gray);

  /* Dark theme variables */
  --dark-bg: #121212;
  --dark-text: #ffffff;
  --dark-surface: #1e1e1e;
  --dark-surface-2: #2d2d2d;
  --dark-hover: #3d3d3d;

  /* Font and effects */
  --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  /* Reference variables */
  --primary: var(--black);
  --secondary: var(--gold);
  --accent: var(--gold);
  --dark: var(--black);
  --light: var(--white);
}

/* Dark mode colors */
[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --text-color: #f5f5f5;
  --card-bg: #2d2d2d;
  --border-color: #3d3d3d;
  --input-bg: #2d2d2d;
  --input-border: #3d3d3d;
  --chat-bg: #2d2d2d;
  --light-gray: #2d2d2d;
  --gray: #a0a0a0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
} */

/* body {
  font-family: var(--font-main);
  line-height: 1.6;

  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

ul {
  list-style: none;
} */

/* Header Styles */
/* header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 15px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
}

.logo-gold {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

nav a:hover {
  color: var(--accent);
}

.active-link {
  color: var(--accent);
}

.active-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: var(--accent);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
} */

/* Theme Toggle Styles */
/* .theme-toggle {
  margin-left: 20px;
}

.theme-toggle button {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.theme-toggle button:hover {
  background-color: var(--surface);
}

[data-theme="dark"] .theme-toggle button {
  color: var(--gold);
} */

/* Hero Section */
.contact-hero {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.active-page-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: whitesmoke;
  opacity: 0.9;
}

.hero-decoration {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
}

.hero-decoration span {
  animation: bounce 2s infinite alternate;
}

.hero-decoration span:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-decoration span:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-decoration span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* Main Content */
main {
  padding: 3rem 0;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  background-color: var(--light-gray);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section Styles */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.section-icon {
  margin-right: 0.75rem;
  font-size: 1.5rem;
}

/* Contact Methods */
.contact-methods-section {
  margin-bottom: 4rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.card-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.contact-list,
.social-links {
  margin-bottom: 1.5rem;
}

.contact-list li,
.social-links li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.contact-list i,
.social-links i {
  margin-right: 0.75rem;
  color: var(--accent);
  width: 20px;
}

.response-time {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

.start-chat-btn {
  background-color: var(--secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  display: block;
  text-align: center;
  width: 100%;
}

.start-chat-btn:hover {
  background-color: #4aafad;
}

/* FAQ Section */
/* .faq-section {
  margin-bottom: 4rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
} */

/* Chatbot Section */
/* .chatbot-section {
  margin-bottom: 4rem;
}

.chatbot-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chatbot-header {
  background-color: var(--primary);
  color: white;
  padding: 1rem;
}

.chatbot-agent {
  display: flex;
  align-items: center;
}

.agent-avatar {
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.agent-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.agent-status {
  font-size: 0.85rem;
  opacity: 0.8;
}

.chatbox {
  height: 300px;
  padding: 1.5rem;
  overflow-y: auto;
}

.message {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.bot-message {
  align-items: flex-start;
}

.user-message {
  align-items: flex-end;
}

.message-content {
  background-color: var(--light-gray);
  padding: 1rem;
  border-radius: 8px;
  max-width: 80%;
}

.bot-message .message-content {
  background-color: var(--light-gray);
}

.user-message .message-content {
  background-color: var(--secondary);
  color: white;
}

.message-content p {
  margin-bottom: 0.5rem;
}

.message-content p:last-child {
  margin-bottom: 0;
}

.message-time {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.chat-form {
  display: flex;
  padding: 1rem;
  border-top: 1px solid var(--light-gray);
}

.chat-form input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  outline: none;
}

.chat-form button {
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.suggestion-btn {
  background-color: var(--light-gray);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.suggestion-btn:hover {
  background-color: var(--gray);
  color: white;
} */

/* Contact Form */
/* .contact-form-section {
  margin-bottom: 4rem;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.form-intro {
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary);
  outline: none;
}

textarea {
  height: 150px;
  resize: vertical;
}

.character-count {
  text-align: right;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  display: block;
  width: 100%;
  font-size: 1rem;
}

.submit-btn:hover {
  background-color: var(--dark);
} */

/* Office Locations */
/* .locations-section {
  margin-bottom: 4rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.location-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.location-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.location-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.location-card p {
  margin-bottom: 0.5rem;
}

.location-card p:last-of-type {
  margin-top: 1rem;
} */

/* Testimonials */
/* .testimonials-section {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0;
  margin-bottom: 0;
}

.testimonials-section .section-title {
  color: white;
  text-align: center;
  justify-content: center;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
}

.author-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-nav {
  background-color: transparent;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-nav:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.dot.active {
  background-color: var(--accent);
} */

/* Footer */
/* footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0 1.5rem;
  position: relative;
}

.simple-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
} */

/* Enhanced Footer Styles */
/* .footer-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-brand {
  max-width: 100%;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  margin-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-3px);
}

.github-link:hover {
  background-color: #333 !important;
} */

/* Recent Posts in Footer */
/* .recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post-link {
  display: flex;
  flex-direction: column;
  color: white;
  opacity: 0.8;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.recent-post-link:hover {
  opacity: 1;
  color: var(--accent);
}

.post-date {
  font-size: 0.75rem;
  color: var(--accent);
}

.post-title {
  margin-top: 0.2rem;
} */

/* Newsletter Form */
/* .footer-newsletter {
  margin-top: 1rem;
}

.newsletter-form-group {
  display: flex;
  position: relative;
  max-width: 100%;
}

#newsletter-email {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
}

#newsletter-email::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 15px;
  background: var(--accent);
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: #b69121;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-repository a {
  color: var(--accent);
  text-decoration: underline;
} */

/* Back to Top Button */
/* #back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: #b69121;
  transform: translateY(-5px);
} */

/* Notification System */
/* .notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification.success {
  background-color: #4caf50;
}

.notification.error {
  background-color: #f44336;
} */

/* Responsive Styles */
/* @media (max-width: 992px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .active-page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .simple-footer {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .hero-decoration {
    gap: 1.5rem;
  }

  .footer-expanded {
    grid-template-columns: 1fr;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
  
  #back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }

  .active-page-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .contact-badges {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-content {
    font-size: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
  }
}


[data-theme="dark"] .contact-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .chatbot-container,
[data-theme="dark"] .form-container,

}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {

} */


/* FOOTER */

/* Footer */
/* .footer{
    background: black;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}
.footer p{
    color: #8a8a8a;
}
.footer h3{
    color: #fff;
    margin-bottom: 20px;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-col-1{
    flex-basis: 30%;
}
.footer-col-2{
    flex: 1;
    text-align: center;
}
.footer-col-2 img{
    width: 180px;
    margin-bottom: 20px;
}
.footer-col-3, .footer-col-4{
    flex-basis: 12%;
    text-align: center;
}
ul{
    list-style-type: none;
}
.app-logo{
    margin-top: 20px;
}
.app-logo img{
    width: 140px;
}
.footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}
.copyright{
    text-align: center;
}
.menu-icon{
    width: 28px;
    margin-left: 20px;
    display: none;
} */