@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #00b4d8; /* Turquoise / Blue */
  --primary-dark: #0077b6;
  --secondary-color: #ffd166; /* Yellow accent */
  --accent-color: #06d6a0; /* Pastel green */
  --text-color: #333333;
  --text-light: #6c757d;
  --bg-color: #fcfcfc;
  --bg-light: #f4f6f9;
  --white: #ffffff;
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
  --border-radius: 12px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #1a1a1a;
}

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

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light-custom { background-color: var(--bg-light) !important; }
.section-padding { padding: 80px 0; }
@media (max-width: 768px) { .section-padding { padding: 50px 0; } }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}
.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Buttons */
.btn-custom {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-custom:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}
.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-color);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled {
  padding: 10px 0;
}
.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand span {
  color: var(--secondary-color);
}
.nav-link {
  font-weight: 500;
  color: var(--text-color) !important;
  margin: 0 5px;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.hero p {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero { min-height: 80vh; text-align: center; }
  .hero::before { background: rgba(255,255,255,0.9); }
  .hero-content { margin: 0 auto; }
}

/* Services */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-link {
  color: var(--primary-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-link i {
  transition: var(--transition);
}
.service-link:hover i {
  transform: translateX(5px);
}

/* About Section */
.about-img-wrapper {
  position: relative;
  border-radius: var(--border-radius);
}
.about-img-wrapper img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-left: 4px solid var(--primary-color);
}
.about-experience h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
}
.about-experience p {
  margin: 0;
  font-weight: 600;
  color: var(--text-color);
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.feature-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Page Header (Inner pages) */
.page-header {
  padding: 120px 0 60px;
  background-color: var(--bg-light);
  text-align: center;
  position: relative;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
}
.page-header-content {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
}
.breadcrumb-item.active {
  color: var(--primary-color);
}

/* References / Gallery */
.portfolio-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  margin-bottom: 30px;
  transition: var(--transition);
}
.portfolio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.portfolio-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 180, 216, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay i {
  color: var(--white);
  font-size: 2rem;
}
.portfolio-info {
  padding: 20px;
}
.portfolio-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.portfolio-info p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}
.portfolio-category {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-light);
  color: var(--primary-dark);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}
.footer h5 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #aaa;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  color: #aaa;
}
.footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 40px;
  color: #777;
  font-size: 0.9rem;
}

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.fab-wa {
  background-color: #25d366;
}
.fab-wa:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 100;
}
@media (max-width: 768px) {
  .mobile-bottom-bar { display: flex; }
  .fab-container { bottom: 80px; display: none; }
}
.mobile-bottom-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mobile-bottom-bar a.call-btn {
  background: var(--primary-color);
  color: var(--white);
}
.mobile-bottom-bar a.wa-btn {
  background: #25d366;
  color: var(--white);
}

/* Forms */
.form-control, .form-select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 180, 216, 0.25);
}

/* Service Details */
.service-details img {
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}
.service-sidebar {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
}
.service-sidebar .nav-link {
  background: var(--white);
  margin-bottom: 10px;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 600;
  color: var(--text-color) !important;
}
.service-sidebar .nav-link.active, .service-sidebar .nav-link:hover {
  background: var(--primary-color);
  color: var(--white) !important;
}

/* Accordion */
.accordion-button:not(.collapsed) {
  color: var(--primary-dark);
  background-color: rgba(0, 180, 216, 0.1);
}
.accordion-button:focus {
  box-shadow: none;
}
