:root {
  /* Primary Color Palette - Pastel high-contrast colors for 3D home décor */
  --primary-color: #7C3AED; /* Purple */
  --secondary-color: #06B6D4; /* Cyan */
  --accent-color: #F59E0B; /* Amber */
  --success-color: #10B981; /* Emerald */
  --neutral-color: #6B7280; /* Gray */
  
  /* Light/Dark Shades */
  --primary-light: #A78BFA;
  --primary-dark: #5B21B6;
  --secondary-light: #67E8F9;
  --secondary-dark: #0E7490;
  --accent-light: #FCD34D;
  --accent-dark: #D97706;
  --success-light: #6EE7B7;
  --success-dark: #047857;
  --neutral-light: #D1D5DB;
  --neutral-dark: #374151;
  
  /* Typography Variables */
  --font-size-small: 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;
  
  /* Conservative heading sizes */
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --h5-size: 1.125rem;
  --h6-size: 1rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: #ffffff;
    overflow-x: hidden;
}

/* Conservative Typography */
h1, .h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3, .h3 {
  font-size: var(--h3-size);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4, .h4 {
  font-size: var(--h4-size);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

h5, .h5 {
  font-size: var(--h5-size);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: var(--h6-size);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Conservative navbar brand size */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

/* Sections Styling */
section {
  padding: var(--section-padding);
}

.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Hero Section - Fullscreen height */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(25deg);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 30%;
  height: 150%;
  background: var(--success-color);
  border-radius: 50%;
  opacity: 0.08;
  transform: rotate(-15deg);
}

/* Services Section */
.services-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.services-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
}

/* Team Section */
.team-member-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-3px);
}

.team-member-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews Section - Static Bootstrap Cards */
.review-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

/* FAQ Section - Static Cards Only */
.faq-card {
  border: 1px solid var(--neutral-light);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.faq-question {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 1.25rem;
  margin: 0;
  border-radius: 0.75rem 0.75rem 0 0;
}

.faq-answer {
  padding: 1.25rem;
  background-color: #ffffff;
  border-radius: 0 0 0.75rem 0.75rem;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

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

/* Footer */
.footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-light);
}

.footer-section {
  padding: 3rem 0 1rem;
}

/* Form Styles */
.form-control {
  border-radius: 0.5rem;
  border: 2px solid var(--neutral-light);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Price Plan Section */
.price-plan-card {
  border: 2px solid var(--neutral-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-plan-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.price-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

/* Features Section */
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

/* Case Study Section */
.casestudy-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-3px);
}

/* Process Section */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-item {
  border-left: 3px solid var(--primary-color);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

/* Career Section */
.career-card {
  border: 1px solid var(--neutral-light);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-spacing {
  padding: var(--section-padding);
}


.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
