:root {
  --primary-color-1: #3186e5;
  --primary-color-2: #8a50f3;
  --primary-color-3: #008b6c;
  --primary-color-4: #d72728;
  --primary-color-5: #fd4200;
  --light-shade-1: #f8fafc;
  --light-shade-2: #f1f5f9;
  --dark-shade-1: #374453;
  --dark-shade-2: #27304c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 17.00px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-shade-1);
  background-color: var(--light-shade-1);
}

/* Typography */
h1 { font-size: 2.11rem; font-weight: 700; }
h2 { font-size: 1.86rem; font-weight: 600; }
h3 { font-size: 1.52rem; font-weight: 600; }
h4 { font-size: 1.29rem; font-weight: 500; }
h5 { font-size: 1.17rem; font-weight: 500; }
p { font-size: 1.10rem; }

.navbar-brand {
  font-size: 1.29rem !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-shade-1) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../VAT_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: white;
  font-size: 3.04rem;
  font-weight: 700;
  margin-bottom: 1.11rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.29rem;
  margin-bottom: 1.75rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.10rem;
  margin-bottom: 2.10rem;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.11rem;
  font-weight: 700;
  color: var(--dark-shade-2);
  margin-bottom: 1.11rem;
}

.section-subtitle {
  font-size: 1.29rem;
  color: var(--primary-color-1);
  margin-bottom: 1.11rem;
}

.section-desc {
  color: var(--dark-shade-1);
  font-size: 1.10rem;
  margin-bottom: 3.19rem;
}

/* Services */
.service-card {
  background: white;
  border-radius: 13px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.11rem;
}

.service-name {
  font-size: 1.29rem;
  font-weight: 600;
  color: var(--dark-shade-2);
  margin-bottom: 1.11rem;
}

.service-desc {
  color: var(--dark-shade-1);
  margin-bottom: 1.75rem;
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Features */
.feature-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.11rem;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
}

.feature-name {
  font-size: 1.17rem;
  font-weight: 600;
  color: var(--dark-shade-2);
  margin-bottom: 0.59rem;
}

.feature-desc {
  color: var(--dark-shade-1);
}

/* Team */
.team-member {
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid var(--primary-color-1);
}

.team-name {
  font-size: 1.29rem;
  font-weight: 600;
  color: var(--dark-shade-2);
  margin-bottom: 0.59rem;
}

.team-role {
  color: var(--primary-color-1);
  font-weight: 500;
}

/* Reviews */
.review-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review-text {
  font-style: italic;
  color: var(--dark-shade-1);
  margin-bottom: 1.75rem;
  font-size: 1.10rem;
}

.review-author {
  font-weight: 600;
  color: var(--dark-shade-2);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid #dee2e4;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.2rem rgba(19, 110, 246, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-color-2), var(--primary-color-1));
}

/* Footer */
.footer {
  background: var(--dark-shade-2);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1.11rem;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.17rem;
  margin-top: 2.24rem;
}

/* FAQ */
.accordion-item {
  border: none;
  margin-bottom: 1.11rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background: white;
  border: none;
  font-weight: 600;
  color: var(--dark-shade-2);
  border-radius: 8px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color-1);
  color: white;
}

/* Blog */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.29rem;
  font-weight: 600;
  color: var(--dark-shade-2);
  margin-bottom: 1.11rem;
}

.blog-excerpt {
  color: var(--dark-shade-1);
  margin-bottom: 1.11rem;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--light-shade-2);
}

.breadcrumb-icon {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
}

.shadow-custom {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
