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

:root {
  --primary-color: #68ccd1;
  --secondary-color: #141414;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-color: #d8d8d8;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
  font-family:
    "Lexend Deca",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

h1,
h2,
h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: var(--text-color);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  z-index: 1000;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background-color: rgba(104, 204, 209, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s ease;
}

#navbar.scrolled .logo img {
  filter: none;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

#navbar.scrolled .nav-links a {
  text-shadow: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#navbar.scrolled .mobile-menu-btn span {
  box-shadow: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 80px;
}

.hero-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-social a {
  width: 50px;
  height: 50px;
  background-color: rgba(104, 204, 209, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-social a:hover {
  background-color: rgba(104, 204, 209, 1);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(104, 204, 209, 0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.01em;
  font-family: "Playfair Display", serif;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.testimonials-section .section-header h2,
.why-different-section .section-header h2 {
  margin-bottom: 3rem;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

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

.about-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.about-card p {
  color: var(--text-light);
  line-height: 1.8;
}

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

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-content {
  padding: 1.5rem;
}

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

.service-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Features Section */
.features-section {
  background-color: var(--white);
  text-align: center;
}

.features-content h2 {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.features-list li {
  padding: 1rem;
  font-size: 1.1rem;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
  border-bottom: none;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-light);
}

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

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

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

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card p {
  color: var(--text-light);
}

.cta-section {
  text-align: center;
  padding: 3rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-social a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-color);
}

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

.footer-bottom p {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: rgba(104, 204, 209, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: none;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* About Content Styles */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-align: center;
}

.about-content strong {
  color: var(--text-color);
  font-size: 1.2rem;
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

/* Features Showcase Section */
.features-showcase-section {
  background-color: var(--white);
}

.features-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-showcase-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.feature-showcase-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.feature-showcase-content {
  padding: 1.5rem;
}

.feature-showcase-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.feature-showcase-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: transparent;
  border-radius: 0;
  padding: 1rem;
  text-align: center;
  box-shadow: none;
}

.testimonial-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

.testimonial-card p {
  color: var(--text-light);
  font-style: normal;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Why Different Section */
.why-different-section {
  background-color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background-color: transparent;
  border-radius: 0;
  padding: 1rem;
  text-align: center;
  box-shadow: none;
  transition: none;
}

.why-card:hover {
  transform: none;
  box-shadow: none;
}

.why-card img {
  display: none;
}

.why-card::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  line-height: 80px;
}

.why-card:nth-child(1)::before {
  content: "💎";
}

.why-card:nth-child(2)::before {
  content: "😊";
}

.why-card:nth-child(3)::before {
  content: "🚀";
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

.why-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Footer Enhancements */
.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-section {
  min-width: 150px;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

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

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.social-icon {
  font-size: 1.2rem;
}

.footer-address {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-address a {
  color: var(--white);
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
}

/* Our Services Page Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
}

/* Ensure navbar is visible on other pages */
body:not(.home-page) #navbar {
  background-color: var(--primary-color);
  box-shadow: var(--shadow);
}

body:not(.home-page) #navbar .nav-links a,
body:not(.home-page) #navbar .logo img {
  text-shadow: none;
  filter: none;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

.service-detail-section {
  padding: 5rem 0;
}

.service-detail-section.alt-bg {
  background-color: var(--bg-light);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image {
  width: 100%;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.service-detail-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-detail-content h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-detail-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.service-detail-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--text-light);
}

.additional-features-section {
  background-color: var(--white);
}

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

.feature-item {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.services-cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.services-cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-cta-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  .features-showcase-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-content h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

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