/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

:root {
  --black: #111111;
  --white: #ffffff;
  --gold: #d4af37;
  --yellow: #ffeb3b;
  --charcoal: #1a1a1a;
  --gray: #e0e0e0;
  --light-bg: #f5f5f5;
  --light-text: #333333;
  --nav-bg: var(--black);
  --nav-text: var(--white);
  --nav-border: transparent;
  --hero-text: var(--white);
}

body {
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.light-mode {
  --nav-bg: var(--white);
  --nav-text: var(--light-text);
  --nav-border: rgba(0, 0, 0, 0.1);
  --hero-text: var(--light-text);
  background-color: var(--light-bg);
  color: var(--light-text);
}

/* Scrolled Navigation Styles */
body.nav-scrolled {
  --nav-bg: var(--black);
  --nav-text: var(--white);
  --nav-border: rgba(212, 175, 55, 0.3);
}

body.nav-scrolled.light-mode {
  --nav-bg: var(--white);
  --nav-text: var(--light-text);
  --nav-border: rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: var(--nav-bg);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo img {
  height: 40px;
  transition: filter 0.4s ease;
}

/** 
        .logo{
            background-image: url('pics/arch_de_arch_w.png');
            background-size: contain;
            background-repeat: no-repeat;
        }
        body.light-mode .logo{
            background-image: url('pics/arch_de_arch.png');
        }**/

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}
/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: none;
  color: var(--nav-text);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.theme-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.theme-toggle .icon {
  font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: var(--nav-text);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--hero-text);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80")
    center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: -1;
  transition: opacity 0.4s ease;
}

body.light-mode .hero::after {
  opacity: 0.5;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: white;
}

.hero {
  -webkit-background-clip: text;
  background-clip: text;
  color: white;
  font-weight: 600;
}
.highlight {
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--gold);
  font-weight: bold;
}

body.light-mode {
  background: linear-gradient(to right, --gray, --white);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  background-color: var(--yellow);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: var(--charcoal);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: top 0.5s ease-in-out;
    z-index: 999;
    gap: 1.5rem;
  }

  body.light-mode .nav-links {
    background-color: var(--white);
  }

  body.nav-scrolled .nav-links {
    background-color: var(--charcoal);
  }

  body.nav-scrolled.light-mode .nav-links {
    background-color: var(--white);
  }

  .nav-links.active {
    top: 80px;
  }

  .nav-links a {
    padding: 1rem 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .theme-toggle {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Navigation (identical to hero) */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: var(--nav-bg);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

/* ... (all existing nav styles from hero section) ... */

/* Services Page Specific Styles */
.services-page {
  padding-top: 100px;
  min-height: 100vh;
}
body.light-mode .services-page {
  background-color: var(--light-bg);
}

.page-header {
  text-align: center;
  padding: 5rem 5% 3rem;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.page-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--yellow));
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Services Grid */
.service-card ul {
  list-style: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 5% 5rem;
}

.service-card {
  background: var(--charcoal);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

body.light-mode .service-card {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.service-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.service-features {
  margin-top: 1.5rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 5%;
  background: var(--charcoal);
}

body.light-mode .testimonials-section {
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--yellow));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--black);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

body.light-mode .testimonial-card {
  background: var(--light-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.2);
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--gold);
}

.author-info h4 {
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.stars {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Clients Section */
.clients-section {
  padding: 3rem 5%;
  text-align: center;
}

.clients-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.client-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.8;
  transition: all 0.3s ease;
}

body.light-mode .client-logo {
  filter: grayscale(100%) brightness(0.5);
}

.client-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-header {
    padding: 5rem 5% 2rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 5% 3rem;
  }
}

/* About Us Content */
.about-page {
  padding-top: 100px;
  min-height: 100vh;
}
body.light-mode .about-page {
  background-color: var(--light-bg);
}
.about-header {
  text-align: center;
  padding: 5rem 5% 3rem;
}

.about-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--yellow));
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 5% 5rem;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.subsidiaries {
  margin-top: 3rem;
}

.subsidiaries h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.subsidiary {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--charcoal);
  border-radius: 8px;
  transition: all 0.3s ease;
}

body.light-mode .subsidiary {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.subsidiary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.subsidiary-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.subsidiary-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .logo img {
    margin-top: 6px;
    height: 28px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
  .client-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
  }

  body.light-mode .client-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }

  .about-header {
    padding: 3rem 5% 2rem;
  }

  .about-header h1 {
    font-size: 2.2rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .subsidiary {
    flex-direction: column;
    text-align: center;
  }

  .subsidiary-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .client-logo {
    height: 40px;
  }

  .clients-grid {
    gap: 1.5rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .client-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
  }

  body.light-mode .client-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (max-width: 480px) {
  .client-logo {
    height: 28px;
  }
  .logo img {
    height: 20px;
  }
  .client-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
  }

  body.light-mode .client-logo {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
  }
  .contact-form {
    transform: translateX(-15px);
  }
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--charcoal);
}

body.light-mode .contact-section {
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
  background: var(--black);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.light-mode .contact-form {
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem;
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: var(--white);
  transition: all 0.3s ease;
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea,
body.light-mode .contact-form select {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* File Upload */
input[type="file"] {
  width: 100%;
  padding: 0.8rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  margin-top: 0.5rem;
}

/* Buttons */
.cta-button,
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(to right, var(--gold), var(--yellow));
  color: var(--black);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Booking Widget */
.booking-widget {
  background: rgba(212, 175, 55, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-widget h3 {
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.booking-widget p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Updated Contact Section Margins */
.contact-section {
  padding: 5px 10% !important; /* Increased side margins */
}

.contact-container {
  margin: 2rem auto 0; /* Better top margin */
  max-width: 1200px; /* Limits width for better spacing */
}

.contact-form {
  margin-top: 1rem; /* Added top margin to form */
  margin-bottom: 3rem;
}

@media (max-width: 990px) {
  .booking-widget {
    background: none;
    border: none;
    text-align: left;
    margin-left: -25px;
  }
}

@media (max-width: 768px) {
  .booking-widget {
    background: none;
    border: none;
    text-align: left;
    margin-left: -25px;
  }
}

@media (max-width: 480px) {
  .booking-widget {
    background: none;
    border: none;
    text-align: left;
    margin-left: -25px;
  }
}

@media (max-width: 387px) {
  .booking-widget {
    background: none;
    border: none;
    text-align: left;
    margin-left: -25px;
  }
}

/*
.contact-form input,
.contact-form textarea {
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: 10px;
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
  background: var(--white) !important;
  color: var(--black) !important;
  border: 1px solid var(--gray);
}
*/

/**
.contact-form {
  background: var(--black);
  padding: 4rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

body.light-mode .contact-form {
  background: var(--light-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
  color: var(--light-text);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.cta-button {
  display: inline-block;
  background: linear-gradient(to right, var(--gold), var(--yellow));
  color: var(--black);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
*/

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 2rem 5%;
  text-align: center;
  transition: var(--transition);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

body.light-mode .footer {
  background-color: var(--gray);
  color: var(--charcoal);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo img {
  height: 13vh;
  transition: filter 0.4s ease;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

body.light-mode .footer-links a {
  color: var(--black); /* Changed to black in light mode */
}

.footer-links a:hover {
  color: var(--gold);
}

body.light-mode .footer-links a:hover {
  color: var(--gold);
}
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

body.light-mode {
  background-color: var(--white);
}
.social-links a {
  background-color: var(--black);
  transition: all 0.5s;
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

body.light-mode .copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.297);
}

.section-title h2 {
  margin-top: 5%;
  margin-bottom: 2%;
}
/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 250px;
    width: 30rem;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .map-container {
    height: 250px;
    width: 20rem;
    transform: translateX(-10px);
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
  .map-container {
    height: 250px;
    width: 18rem;
    transform: translateX(-50px);
  }
  /*Do one for Z fold and Z flip screens, Around 350px, but google to be sure.*/
}
@media (max-width: 390px) {
  .map-container {
    height: 250px;
    width: 14.5rem;
    transform: translateX(-50px);
  }
  .contact-form {
    transform: translateX(-14px);
  }
}
/*New  stuff*/
.cta-button,
.submit-btn,
.theme-toggle {
  border-radius: 5px !important;
}

/* Updated Text Color Transition */
body,
.hero h1,
.hero p,
.about-content p,
.service-card p,
.contact-info p,
.footer,
.footer-links a,
.copyright {
  transition: color 0.4s ease;
}

.map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
