@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

:root {
  /* Primary Color Palette */
  --primary-red: #d84c4f;
  --primary-orange: #db9f00;
  --primary-green: #3ac25f;
  --primary-purple: #833e9f;
  --primary-pink: #d21954;
  
  /* Light Shades */
  --light-red: #fcd1c4;
  --light-orange: #fdf3e0;
  --light-green: #dae6e1;
  --light-purple: #ded0e6;
  --light-pink: #f2d2d9;
  
  /* Dark Shades */
  --dark-red: #a9262d;
  --dark-orange: #b4a90a;
  --dark-green: #167a3a;
  --dark-purple: #6d3295;
  --dark-pink: #a51b5f;
  
  /* Neutral Colors */
  --dark-gray: #21313a;
  --light-gray: #F8F9FA;
  --white: #FFFFFF;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  font-size: var(--font-size-base);
}

/* Typography */
h1 {
  font-size: 2.03rem;
  font-weight: 600;
  color: var(--dark-gray);
}

h2 {
  font-size: 1.76rem;
  font-weight: 600;
  color: var(--dark-gray);
}

h3 {
  font-size: 1.61rem;
  font-weight: 500;
}

.navbar-brand {
  font-size: 1.38rem !important;
  font-weight: 600;
  color: var(--primary-red) !important;
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-pink) 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-red) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-pink) 50%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-content {
  padding-top: 100px !important;
  z-index: 2;
}

.hero h1 {
  background: linear-gradient(45deg, var(--primary-red), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.09rem;
}

.hero-image {
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 21px;
  box-shadow: 0 21px 40px rgba(0,0,0,0.1);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(45deg, var(--primary-red), var(--primary-orange));
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 25px rgba(208, 82, 60, 0.30);
}

.btn-outline-primary {
  color: var(--primary-red);
  border-color: var(--primary-red);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.22rem;
}

.section-title h2 {
  margin-bottom: 1.09rem;
}

.section-title .subtitle {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 0.68rem;
}

/* About Section */
.about {
  background: var(--light-gray);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 19px;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 2.11rem;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3.04rem;
  color: var(--primary-red);
  margin-bottom: 1.09rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-purple) 100%);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 17px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.11rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-18px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 19px;
  margin-bottom: 1.71rem;
}

.service-price {
  font-size: 2.03rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background: var(--white);
}

/* Price Plan Section */
.priceplan {
  background: linear-gradient(135deg, var(--light-red) 0%, var(--light-orange) 100%);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 19px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.11rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(45deg, var(--primary-red), var(--primary-orange));
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card .price {
  font-size: 3.04rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 1rem 0;
}

/* Team Section */
.team {
  background: var(--light-gray);
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.11rem;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.09rem;
  border: 5px solid var(--light-pink);
}

.team-role {
  color: var(--primary-orange);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
}

.swiper-slide {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  text-align: center;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.71rem;
  color: var(--dark-gray);
}

.review-author {
  font-weight: 600;
  color: var(--primary-red);
}

/* Blog Section */
.blog {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.11rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-red);
}

/* FAQ Section */
.faq {
  background: var(--light-gray);
}

.accordion-item {
  border: none;
  margin-bottom: 1.09rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-header button {
  background: var(--white);
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.accordion-header button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  background: var(--light-pink);
  padding: 1.5rem;
}

/* Gallery Section */
.gallery {
  background: var(--white);
}

.gallery-item {
  margin-bottom: 2.11rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-orange) 100%);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.09rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(230, 108, 78, 0.25);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 1.09rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid #393939;
  padding-top: 2.23rem;
  margin-top: 2.09rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utilities */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-red), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
}

.shadow-custom {
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.rounded-custom {
  border-radius: 20px;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
