:root {
  --primary-purple: #9e61ff;
  --primary-purple-light: #c1a2fa;
  --primary-purple-dark: #6723ca;
  --primary-blue: #4ba0ff;
  --primary-blue-light: #99c2ff;
  --primary-blue-dark: #16249b;
  --primary-emerald: #06b970;
  --primary-emerald-light: #76d8ad;
  --primary-emerald-dark: #097244;
  --primary-orange: #fa9800;
  --primary-orange-light: #ffe29b;
  --primary-orange-dark: #c77102;
  --primary-pink: #e53e89;
  --primary-pink-light: #e88ab3;
  --primary-pink-dark: #af2653;
  --white: #FFFFFF;
  --black: #000000;
  --gray-100: #F7FAFC;
  --gray-200: #EDF2F7;
  --gray-300: #d2d7e2;
  --gray-600: #7f8aa1;
  --gray-800: #35425f;
  --gray-900: #222933;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-emerald) 0%, var(--primary-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-pink) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Header */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 700;
  color: var(--primary-purple) !important;
}

.navbar {
  background: var(--white) !important;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--gray-800) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../PUN_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-3xl);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.73rem;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: var(--font-size-2xl);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 21px 40px rgba(0,0,0,0.15);
}

.card-body {
  padding: 2rem;
}

/* Services */
.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
  background: var(--gradient-secondary);
  color: var(--white);
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

.service-card:hover .service-price {
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(124, 71, 251, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-purple-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-purple-light);
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-purple-light);
  display: block;
}

/* FAQ */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-secondary);
}

.faq-answer {
  background: var(--gray-100);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 0.63rem;
  color: var(--gray-800);
}

/* Gallery */
.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 20px;
  opacity: 0.7;
}

/* Price plans */
.price-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-card:hover {
  color: var(--white);
  transform: translateY(-5px);
  background: var(--gradient-primary);
}

.price-amount {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

.price-card:hover .price-amount {
  color: var(--white);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.testimonial-rating {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Blog */
.blog-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Utilities */
.section-bg {
  background: var(--gray-100);
}

/* Space page */
#space {
  min-height: 80vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-size-2xl);
  text-align: center;
}



/* 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;
    }
}
