/* ========== CSS VARIABLES ========== */
:root {
  /* Primary Color Palette */
  --primary-coral: #e64f57;
  --primary-sage: #37c3aa;
  --primary-warm: #ffe384;
  --primary-lavender: #caf4e7;
  --primary-terracotta: #f17671;
  
  /* Light/Dark Shades */
  --light-coral: #fd9e9c;
  --dark-coral: #c65769;
  --light-sage: #61d8d0;
  --dark-sage: #38a69d;
  --light-warm: #fdf5aa;
  --dark-warm: #b3995a;
  --light-lavender: #d8ece5;
  --dark-lavender: #9ac1b4;
  --light-terracotta: #f3c5c4;
  --dark-terracotta: #c77f85;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #5d646d;
  --dark-gray: #2c323a;
  --black: #000000;
  
  /* Typography */
  --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;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-sage) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-warm) 0%, var(--primary-terracotta) 100%);
  --gradient-tertiary: linear-gradient(135deg, var(--primary-lavender) 0%, var(--primary-sage) 100%);
}

/* ========== GLOBAL STYLES ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.06rem;
  color: var(--dark-gray);
}

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); }
h5, h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: 1.06rem;
  font-size: var(--font-size-base);
}

/* ========== HEADER & NAVIGATION ========== */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-warm) !important;
}

.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SECTION ========== */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1.56rem;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  opacity: 0.9;
  margin-bottom: 1.06rem;
}

.hero-description {
  font-size: var(--font-size-lg);
  opacity: 0.8;
  margin-bottom: 2.20rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: var(--font-size-2xl);
  margin-bottom: 1.06rem;
  color: var(--dark-gray);
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--gray);
  margin-bottom: 0.55rem;
}

.section-description {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3.22rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CARDS ========== */
.card {
  border: none;
  border-radius: 17px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 1.06rem;
}

.card-text {
  color: var(--gray);
  margin-bottom: 1.06rem;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  background: var(--light-gray);
}

.service-card {
  text-align: center;
  margin-bottom: 2.20rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--gray);
}

/* ========== TEAM SECTION ========== */
.team-member {
  text-align: center;
  margin-bottom: 2.20rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-sage);
}

.team-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.team-role {
  color: var(--gray);
  font-style: italic;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--gradient-tertiary);
  color: var(--white);
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.56rem;
}

.testimonial-author {
  font-weight: 600;
  text-align: right;
}

/* ========== CONTACT FORM ========== */
.contact-section {
  background: var(--light-gray);
}

.form-control {
  border: 4px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(76, 203, 180, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* ========== FAQ SECTION ========== */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1.06rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--gray);
  border-radius: 0 0 10px 10px;
}

/* ========== GALLERY ========== */
.gallery-section {
  background: var(--white);
}

.gallery-item {
  margin-bottom: 1.56rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px 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);
}

/* ========== BLOG SECTION ========== */
.blog-section {
  background: var(--light-gray);
}

.blog-card {
  margin-bottom: 2.20rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.06rem;
}

.blog-link {
  color: var(--primary-coral);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-coral);
  text-decoration: underline;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-sage);
  margin-bottom: 1.06rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-sage);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 1.14rem;
  margin-top: 2.06rem;
  text-align: center;
}

.copyright {
  font-size: var(--font-size-sm);
  color: var(--gray);
}

/* ========== BREADCRUMBS ========== */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* ========== UTILITIES ========== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-tertiary {
  background: var(--gradient-tertiary);
}

/* ========== SPACE PAGE ========== */
#space {
  min-height: 70vh;
  background: var(--gradient-tertiary);
  border-radius: 20px;
  margin: 2rem 0;
}



/* 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;
    }
}
