/* ===== CSS VARIABLES ===== */
:root {
  --primary-forest: #294619;
  --primary-sage: #86ac75;
  --primary-earth: #92531a;
  --primary-moss: #495331;
  --primary-bark: #472e1f;
  
  --light-forest: #386f1c;
  --light-sage: #92ae78;
  --light-earth: #925534;
  --light-moss: #7f9253;
  --light-bark: #47342d;
  
  --dark-forest: #1d4610;
  --dark-sage: #7d9665;
  --dark-earth: #764224;
  --dark-moss: #576037;
  --dark-bark: #3e1f12;
  
  --gradient-primary: linear-gradient(135deg, var(--primary-forest), var(--primary-sage));
  --gradient-earth: linear-gradient(135deg, var(--primary-earth), var(--primary-moss));
  --gradient-nature: linear-gradient(135deg, var(--primary-sage), var(--primary-bark));
  
  --text-dark: #2b2b2b;
  --text-light: #ffffff;
  --text-muted: #787f89;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  
  --box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 19.00px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.19rem;
  color: var(--primary-forest);
}

h1 {
  font-size: 2.35rem;
}

h2 {
  font-size: 1.89rem;
}

h3 {
  font-size: 1.55rem;
}

h4 {
  font-size: 1.27rem;
}

h5 {
  font-size: 1.29rem;
}

h6 {
  font-size: 1.05rem;
}

p {
  margin-bottom: 1.19rem;
  font-size: 1.05rem;
}

a {
  color: var(--primary-sage);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-forest);
  text-decoration: none;
}

/* ===== HEADER ===== */
.navbar {
  background: var(--gradient-primary) !important;
  padding: 1rem 0;
  box-shadow: var(--box-shadow);
}

.navbar-brand {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-light) !important;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--light-sage) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border-color: var(--text-light);
}

.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 {
  min-height: 100vh;
  background: var(--gradient-nature);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(40, 67, 18, 0.30);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 100px !important;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  color: var(--text-light);
  font-size: 3.01rem;
  margin-bottom: 1.68rem;
}

.hero p {
  font-size: 1.27rem;
  margin-bottom: 2.06rem;
}

.hero-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-lg);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* ===== DECORATIVE SHAPES ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-earth);
  bottom: 15%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4.23rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: 1.29rem;
  margin-bottom: 0.70rem;
}

.section-title {
  color: var(--primary-forest);
  margin-bottom: 1.19rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.29rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-forest);
  font-size: 1.27rem;
  margin-bottom: 1.19rem;
}

.card-text {
  color: var(--text-muted);
  margin-bottom: 1.19rem;
}

/* ===== SERVICES ===== */
.service-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 2.09rem;
}

.price-tag {
  background: var(--gradient-earth);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1.07rem;
}

/* ===== TEAM ===== */
.team-card {
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  color: var(--primary-forest);
  font-size: 1.27rem;
  margin-bottom: 0.70rem;
}

.team-role {
  color: var(--primary-sage);
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slide {
  text-align: center;
  padding: 2rem;
}

.testimonial-text {
  font-size: 1.27rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 2.06rem;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--primary-forest);
  font-weight: 600;
}

/* ===== FAQ ===== */
.accordion {
  border: none;
}

.accordion-item {
  border: none;
  margin-bottom: 1.19rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.accordion-button {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-earth);
  color: var(--text-light);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 1.5rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--box-shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-control {
  border: 2px solid #dddddd;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(172, 193, 141, 0.25);
}

.btn {
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--gradient-earth);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* ===== BLOG ===== */
.blog-card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-forest);
  font-size: 1.27rem;
  margin-bottom: 1.19rem;
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 1.19rem;
}

.blog-link {
  color: var(--primary-sage);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.00rem;
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--text-light);
  margin-bottom: 1.68rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.19rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.22rem;
  padding-top: 2.11rem;
  text-align: center;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb img {
  height: 24px;
  width: auto;
}

/* ===== PROCESS SECTION ===== */
.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.27rem;
  margin: 0 auto 1.5rem;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-sage);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3.24rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 45%;
  position: relative;
}

.timeline-date {
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
  background: var(--primary-sage);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  white-space: nowrap;
}

/* ===== PRICE PLANS ===== */
.price-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
  border-color: var(--primary-sage);
}

.price-header {
  margin-bottom: 2.06rem;
}

.price-amount {
  font-size: 3.01rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 0.70rem;
}

.price-period {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.06rem;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-dark);
}

.price-features li:last-child {
  border-bottom: none;
}

/* ===== CAREER SECTION ===== */
.career-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  transition: var(--transition);
  border-left: 4px solid var(--primary-sage);
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-lg);
}

.career-title {
  color: var(--primary-forest);
  font-size: 1.27rem;
  margin-bottom: 0.70rem;
}

.career-role {
  color: var(--primary-sage);
  font-weight: 600;
  margin-bottom: 1.19rem;
}

/* ===== 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-earth {
  background: var(--gradient-earth);
}

.bg-gradient-nature {
  background: var(--gradient-nature);
}

/* ===== SPACE PAGE ===== */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-nature);
  color: var(--text-light);
  font-size: 1.55rem;
  text-align: center;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
