/* Global Styles */
:root {
  --primary-color: #0056b3;
  --secondary-color: #4caf50;
  --accent-color: #f39c12;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --mid-gray: #ddd;
  --dark-gray: #777;
  --white: #fff;
  --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
}

.btn-accent {
  background-color: var(--accent-color);
}

.btn-accent:hover {
  background-color: var(--primary-color);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.phone {
  display: flex;
  align-items: center;
  margin-right: 20px;
  font-weight: 600;
}

.phone i {
  margin-right: 5px;
  color: var(--secondary-color);
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  color: var(--white);
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Services Section */
.services {
  background-color: var(--light-gray);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 250px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 25px;
}

.service-card-content h3 {
  margin-bottom: 15px;
}

.service-card-content p {
  margin-bottom: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--white);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 20px;
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-gray);
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 380px;
}

.testimonial-content {
  position: relative;
  padding: 20px 0;
}

.testimonial-content:before {
  content: '\201C';
  font-size: 80px;
  position: absolute;
  left: -20px;
  top: -20px;
  color: var(--mid-gray);
  font-family: Arial, sans-serif;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  margin-bottom: 5px;
}

.client-details p {
  margin: 0;
  color: var(--dark-gray);
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Service Detail Page */
.service-detail {
  padding-top: 120px;
}

.service-header {
  padding: 60px 0;
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('../images/service-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.service-header h1 {
  color: var(--white);
}

.service-features,
.service-benefits {
  margin-bottom: 60px;
}

.feature-list,
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-item,
.benefit-item {
  flex: 1 1 300px;
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover,
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.feature-item h3,
.benefit-item h3 {
  display: flex;
  align-items: center;
}

.feature-item h3 i,
.benefit-item h3 i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-plan {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.pricing-header h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.pricing-content {
  padding: 30px;
}

.price {
  text-align: center;
  margin-bottom: 20px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  color: var(--dark-gray);
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  padding-left: 0;
}

.pricing-features ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.pricing-features ul li:before {
  content: "\2713";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

/* About Page */
.about-header {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.about-header h1 {
  color: var(--white);
}

.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1 1 500px;
}

.about-image {
  flex: 1 1 400px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.value-card {
  flex: 1 1 200px;
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.value-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* FAQ Page */
.faq-header {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('../images/faq-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.faq-header h1 {
  color: var(--white);
}

.faq-section {
  padding: 80px 0;
}

.faq-categories {
  margin-bottom: 40px;
}

.accordion {
  margin-bottom: 20px;
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  background-color: var(--light-gray);
  cursor: pointer;
  position: relative;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.accordion-header:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.accordion.active .accordion-header:after {
  content: '-';
}

.accordion-content {
  padding: 20px;
  display: none;
}

.accordion.active .accordion-content {
  display: block;
}

/* Contact Page */
.contact-header {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.contact-header h1 {
  color: var(--white);
}

.contact-section {
  padding: 80px 0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form {
  flex: 1 1 500px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  margin-bottom: 5px;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.contact-text h3 {
  margin-bottom: 5px;
}

.contact-text p {
  margin: 0;
}

.map {
  height: 400px;
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
footer {
  background-color: #333;
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo .logo-text {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h3 {
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}

.footer-links h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ddd;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--secondary-color);
}

.social-link i {
  color: var(--white);
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Styles - Will be expanded in responsive.css */
@media (max-width: 992px) {
  /* Will be defined in responsive.css */
}
