/********** Minimal Professional Design **********/
:root {
  --primary: #fd5d14;
  --primary-light: #ff7940;
  --primary-dark: #e04800;
  --secondary: #fdbe33;
  --light: #f8f9fa;
  --dark: #1a1a2e;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Vazirmatn", sans-serif !important;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal scroll */
.container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}

/* RTL Navigation */
.naav {
  flex-direction: row-reverse !important;
  text-align: right;
}

.text-r {
  text-align: right !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--gray);
  font-size: 1rem;
}

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

/* Section Spacing */
.py-6 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pt-6 {
  padding-top: 80px;
}

.pb-6 {
  padding-bottom: 80px;
}

/* Modern Buttons */
.btn {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(253, 93, 20, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 93, 20, 0.35);
  color: var(--white);
}

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-square {
  width: 40px;
  height: 40px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 50px;
  height: 50px;
}

/* Navbar - Minimal */
.navbar {
  padding: 0;
}

.navbar-brand h1 {
  font-size: 1.2rem;
  font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 20px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.bg-dark {
  background: var(--dark) !important;
}

.bg-light-radial {
  background: var(--dark);
}

/* Mobile Navbar */
@media (max-width: 991.98px) {
  .navbar-brand h1 {
    font-size: 0.95rem;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-collapse {
    padding: 15px 0;
  }

  .container-fluid.sticky-top {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Hero Section - Minimal */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      135deg,
      rgba(26, 26, 46, 0.9) 0%,
      rgba(26, 26, 46, 0.7) 100%
    ),
    url(../img/man-pakich.webp) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(26, 26, 46, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.carousel-item img {
  height: 600px;
  object-fit: cover;
  width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0.8;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 450px;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 0 10px;
  }

  .carousel-caption p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .carousel-caption .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .carousel-item img {
    height: 400px;
  }

  .carousel-caption h1 {
    font-size: 1.25rem;
  }
}

/* Page Header */
.page-header {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      135deg,
      rgba(26, 26, 46, 0.9) 0%,
      rgba(26, 26, 46, 0.8) 100%
    ),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

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

@media (max-width: 768px) {
  .page-header {
    height: 200px;
  }

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

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Service Cards - Minimal */
.service-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.service-item img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.service-item .service-icon {
  margin-top: -40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-left: auto;
  margin-right: auto;
}

.service-item:hover .service-icon {
  background: var(--primary);
}

.service-item:hover .service-icon i {
  color: var(--white) !important;
}

.service-item .service-icon i {
  font-size: 2rem;
  transition: var(--transition);
}

.service-item h4 {
  font-size: 1rem;
  font-weight: 600;
}

.service-item p {
  font-size: 0.9rem;
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

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

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-card h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* Forms */
.form-control {
  border-radius: var(--radius);
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(253, 93, 20, 0.1);
  outline: none;
}

/* Footer - Minimal */
.footer {
  background: var(--dark);
  position: relative;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer p,
.footer a {
  font-size: 0.9rem;
}

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

.footer-shape::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 100%;
  top: 0;
  left: -30px;
  background: var(--primary);
  transform: skew(40deg);
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .d-flex {
    justify-content: center !important;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  display: none;
  left: 50%;
  bottom: 30px;
  margin-left: -25px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  color: var(--white);
}

.phone-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 90px;
  right: 25px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: phone-ring 2s infinite;
}

@keyframes phone-ring {
  0%,
  100% {
    transform: scale(1);
  }
  10%,
  30% {
    transform: scale(1.1) rotate(-5deg);
  }
  20%,
  40% {
    transform: scale(1.1) rotate(5deg);
  }
  50% {
    transform: scale(1);
  }
}

.phone-float:hover {
  background: var(--primary-dark);
  color: var(--white);
  animation: none;
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .whatsapp-float,
  .phone-float {
    width: 50px;
    height: 50px;
    right: 15px;
    font-size: 20px;
  }

  .whatsapp-float {
    bottom: 15px;
  }

  .phone-float {
    bottom: 75px;
  }
}

/* Mobile Responsive Padding */
@media (max-width: 991.98px) {
  .px-5 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .py-6 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  .px-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .py-6 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .display-5 {
    font-size: 1.5rem;
  }

  .display-2 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1rem;
  }

  .row.g-5 {
    --bs-gutter-y: 2rem;
    --bs-gutter-x: 1rem;
  }
}

@media (max-width: 575.98px) {
  .px-5 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent Overflow */
.row {
  margin-left: 0;
  margin-right: 0;
}

.row > * {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

/* About Section Responsive */
@media (max-width: 991.98px) {
  .about-image {
    margin-bottom: 30px;
    height: 300px;
  }

  .col-lg-5.pb-5 {
    padding-bottom: 0 !important;
  }

  .position-relative.bg-dark-radial {
    margin: 0;
    height: 300px;
  }

  .position-relative.bg-dark-radial img {
    position: relative !important;
    margin: 0 !important;
  }
}

/* Contact Form */
.bg-light {
  background: var(--light) !important;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

.dropdown-item {
  padding: 10px 20px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--light);
  color: var(--primary);
}

/* Smooth scroll for all anchor links */
html {
  scroll-behavior: smooth;
}

/* Hide horizontal overflow on all elements */
section,
div,
header,
footer,
nav {
  max-width: 100vw;
}

/* Portfolio */
.portfolio-item {
  margin-bottom: 40px;
}

.portfolio-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
  padding: 0 20px;
  right: 20px;
  left: 20px;
  bottom: -50px;
  background: var(--white);
  z-index: 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.portfolio-box {
  border-radius: var(--radius);
  overflow: hidden;
}

.portfolio-btn {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  font-size: 100px;
  line-height: 0;
  transition: 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  transition: 0.5s;
  z-index: 1;
  background: rgba(26, 26, 46, 0.7);
}

.portfolio-box::before {
  left: 0;
}

.portfolio-box::after {
  right: 0;
}

.portfolio-item:hover .portfolio-box::before {
  left: 0;
  width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
  right: 0;
  width: 50%;
}

/* Team Section */
.team-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Testimonial */
.testimonial-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Contact Info Card */
.contact-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

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

.contact-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Utilities */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background: var(--primary) !important;
}

/* Ensure no horizontal scroll */
@media (max-width: 575.98px) {
  .d-none.d-sm-block {
    display: none !important;
  }
}

/* Fix image overflow issues */
.col-lg-5.pb-5 .position-relative {
  margin-left: 0 !important;
}

@media (max-width: 991.98px) {
  .col-lg-5.pb-5 .position-relative {
    margin: 0 !important;
  }

  .col-lg-5.pb-5 .position-relative img {
    position: relative !important;
    margin: 0 !important;
  }

  .ms-5 {
    margin-left: 0 !important;
  }

  .ms-n5 {
    margin-left: 0 !important;
  }
}

/* Radial background */
.bg-dark-radial {
  background: var(--dark);
}

/* Stats Section */
.stats-section {
  background: var(--primary);
  color: var(--white);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 60px 0;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

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

.cta-section .btn:hover {
  background: var(--dark);
  color: var(--white);
}

/* List Styles */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   MOBILE RESPONSIVENESS - NO HORIZONTAL SCROLL
   ============================================ */

/* Global overflow prevention */
html,
body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

/* Container fixes */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 575.98px) {
  .container,
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Row and column fixes */
.row {
  margin-left: 0;
  margin-right: 0;
  --bs-gutter-x: 1.5rem;
}

@media (max-width: 767.98px) {
  .row {
    --bs-gutter-x: 1rem;
  }

  .row.g-4,
  .row.g-5 {
    --bs-gutter-y: 1.5rem;
  }
}

/* Image overflow prevention */
img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

/* Hero section mobile */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
    padding: 40px 0;
  }

  .hero-section h1 {
    font-size: 1.5rem !important;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-section .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .hero-section .d-flex {
    flex-direction: column;
  }
}

/* Navbar mobile */
@media (max-width: 991.98px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-brand h1 {
    font-size: 0.9rem !important;
  }

  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }
}

/* About section mobile */
@media (max-width: 991.98px) {
  .about-image {
    height: 280px !important;
    margin-bottom: 20px;
  }

  #about .col-lg-6:first-child {
    order: 1;
  }
}

/* Service cards mobile */
@media (max-width: 767.98px) {
  .simple-service-card {
    padding: 25px 20px;
  }

  .simple-service-card i {
    font-size: 2.5rem;
  }

  .simple-service-card h4 {
    font-size: 1rem;
  }

  .simple-service-card p {
    font-size: 0.85rem;
  }
}

/* Feature cards mobile */
@media (max-width: 575.98px) {
  .feature-card {
    padding: 25px 20px;
  }

  .feature-card i {
    font-size: 2rem;
  }

  .feature-card h5 {
    font-size: 0.95rem;
  }
}

/* Contact section mobile */
@media (max-width: 767.98px) {
  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-item i {
    margin-bottom: 10px;
    margin-left: 0;
  }

  .bg-white.p-4.p-md-5.rounded {
    padding: 20px !important;
  }
}

/* Footer mobile */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }

  .footer .col-lg-4 {
    margin-bottom: 30px;
  }

  .footer h4,
  .footer h5 {
    font-size: 1.1rem;
  }

  .footer p {
    font-size: 0.9rem;
  }
}

/* Stats section mobile */
@media (max-width: 575.98px) {
  .stat-item h2 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.85rem;
  }
}

/* CTA section mobile */
@media (max-width: 767.98px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-section .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Page header mobile */
@media (max-width: 767.98px) {
  .page-header {
    height: 180px;
  }

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

  .breadcrumb {
    font-size: 0.85rem;
  }
}

/* Buttons mobile */
@media (max-width: 575.98px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Form elements mobile */
@media (max-width: 575.98px) {
  .form-control {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  textarea.form-control {
    min-height: 100px;
  }
}

/* Typography mobile */
@media (max-width: 575.98px) {
  .display-5 {
    font-size: 1.3rem !important;
  }

  .display-6 {
    font-size: 1.2rem !important;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 1rem;
  }

  h5 {
    font-size: 0.95rem;
  }

  p {
    font-size: 0.9rem;
  }
}

/* Section spacing mobile */
@media (max-width: 575.98px) {
  .py-6 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .py-5 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }

  .mb-4 {
    margin-bottom: 1rem !important;
  }
}

/* Badge mobile */
@media (max-width: 575.98px) {
  .badge.p-3 {
    padding: 0.6rem !important;
    font-size: 0.8rem;
  }
}

/* Service detail sections mobile */
@media (max-width: 991.98px) {
  .py-5 .row.align-items-center .col-lg-6 {
    text-align: center;
  }

  .py-5 .row.align-items-center .col-lg-6 h3 {
    text-align: center;
  }

  .py-5 .rounded.overflow-hidden {
    height: 300px !important;
    margin-bottom: 30px;
  }
}

/* Simple Service Card */
.simple-service-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

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

.simple-service-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.simple-service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.simple-service-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* About Feature List */
.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.about-feature i {
  color: var(--primary);
  margin-left: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature span {
  font-weight: 500;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header {
    margin-bottom: 30px;
  }
}

/* Contact Section */
.contact-info-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
}

.contact-info-item i {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: 15px;
  flex-shrink: 0;
}

.contact-info-item h6 {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.contact-info-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}
