/* ================================================
   TopCleanRado — Main Stylesheet (style.css)
   Clean, responsive design with blue branding
   ================================================ */

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

html, body {
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: visible;
}

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

ul {
  list-style: none;
}

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

/* ================================================
   Header and Navigation
   ================================================ */
.main-header {
  padding: 25px 0px;
}

/* ================================================
   Header Top (Phone and User Icon)
   ================================================ */


.header-top .header-phone {
  color: #002244;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.header-top .header-phone:hover {
  color: #083b4c;
}

.header-top .user-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.header-top .user-icon:hover {
  transform: scale(1.1);
}

.main-header .container {
  position: relative;
}

.header-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  margin: 0px 0px 20px 0px;
}

.logo img {
  height: 100px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px; /* space between menu items */
}

.main-nav a {
  text-decoration: none;
  color: #002244;
  font-weight: 600;
  font-size: 18px; /* slightly larger text */
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #083b4c;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #002244;
}

.main-nav a:hover::after {
  width: 100%; /* underline animation */
}

/* ================================================
   Main Sections
   ================================================ */
main {
  background: #fff;
  max-width: 1100px;
  margin: 0px auto;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex: 1;
}

h1, h2, h3 {
  color: #003366;
  margin-bottom: 20px;
  text-align: center;
}

p {
  color: #444;
  margin-bottom: 15px;
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
  min-height: 600px;
  padding: 60px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 150px;
  gap: 20px;
}

.hero-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.hero-text {
  flex: 1;
  color: #002244;
  max-width: 250px;
}

.hero-text h1 {
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: #004f6e;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.hero-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

/* ================================================
   Why Choose Section
   ================================================ */
.why-choose {
  background-color: #083b4c;
  padding: 80px 20px;
  color: #fff;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.why-text {
  flex: 1;
  color: #fff;
}

.why-text h2 {
  font-size: 2rem;
  color: #f5c518;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-text h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.why-text p {
  color: #dcdcdc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.why-text ul {
  margin-top: 15px;
  list-style: disc;
  padding-left: 20px;
}

.why-text li {
  margin-bottom: 8px;
  color: #eaeaea;
}

.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ================================================
   Footer
   ================================================ */
.main-footer {
  background-color: #fff;
  text-align: center;
  padding: 30px 0;
  color: #000; /* black text */
  font-family: 'Open Sans', sans-serif;
  border-top: 1px solid #eee;
}

.main-footer .copyright {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #000; /* black text */
}

.footer-nav a {
  text-decoration: none;
  color: #000; /* black links */
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #444; /* slightly lighter hover effect */
}

/* ================================================
   Contact & Form Styles
   ================================================ */
.contact-section,
.appointment-section {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

form {
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #003366;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button,
.btn {
  background: #004f6e;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover,
.btn:hover {
  background: #004f6e;
}


body.register-page .container {
  max-width: 400px;
  margin: 60px auto;
  padding: 25px 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
/* ================================================
   Reviews
   ================================================ */

.reviews {
  background: #083b4c;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
}

.reviews h2,
.reviews p {
  color: #fff;
}


.google-map-reviews iframe {
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.4);
}

.reviews a.btn {
  display: inline-block;
  background: #fff;
  color: #083b4c;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.reviews a.btn:hover {
  background: #004f6e;  /* darker navy blue */
  color: #fff;
  transform: scale(1.05);
}
/* ================================================
   Social
   ================================================ */

.social-follow {
  text-align: center;
  padding: 40px 0;
  background-color: #ffffff;
  color: #ff0000;
  font-family: 'Open Sans', sans-serif;
}

.social-follow p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.social-follow a {
  color: #0004ff;
  font-size: 28px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-follow a:hover {
  color: #0085b9;
  transform: scale(1.2);
}


/* ================================================
   Modern Footer Link Layout
   ================================================ */
.main-footer {
  background: #fff;
  border-top: 1px solid #eee;
  text-align: center;
  padding: 25px 15px;
  color: #000;
}

.main-footer .copyright {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #000;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; /* space between links */
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  position: relative;
}

.footer-nav ul li a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #083b4c;
  text-decoration: underline;
}

/* Optional dot between links */
.footer-nav ul li:not(:last-child)::after {
  content: "•";
  color: #999;
  margin-left: 20px;
  position: absolute;
  right: -15px;
}
