/* ================================================
   CORPORATE ART LEASING TEMPLATE - MAIN STYLES
   ================================================ */

/* CORE COLOR PALETTE - 5 Primary Colors + Shades */
:root {
  /* Primary Pastel Colors */
  --primary-sage: #b4cc9c;
  --primary-cream: #f1eee5;
  --primary-terracotta: #d7a573;
  --primary-slate: #535f6d;
  --primary-ivory: #FEFCF7;
  
  /* Light Shades */
  --light-sage: #a3c186;
  --light-cream: #FAFAF7;
  --light-terracotta: #daa984;
  --light-slate: #9299a9;
  --light-ivory: #FFFFFF;
  
  /* Dark Shades */
  --dark-sage: #758d69;
  --dark-cream: #f9f9f9;
  --dark-terracotta: #b88554;
  --dark-slate: #4e6071;
  --dark-ivory: #F7F5F0;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  
  /* Conservative Font Sizes */
  --navbar-brand-size: 1.1rem;
  --h1-size: 2.2rem;
  --h2-size: 1.8rem;
  --h3-size: 1.4rem;
  --h4-size: 1.2rem;
  --p-size: 0.95rem;
  --small-size: 0.85rem;
}

/* RESPECT REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* GLOBAL STYLES */
body {
  font-family: var(--font-primary);
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--dark-slate);
  background-color: var(--primary-ivory);
}

/* CONSERVATIVE TYPOGRAPHY */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-sage);
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--font-weight-medium);
  color: var(--dark-slate);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--font-weight-medium);
  color: var(--dark-slate);
  margin-bottom: 0.72rem;
}

h4 {
  font-size: var(--h4-size);
  font-weight: var(--font-weight-medium);
  color: var(--primary-slate);
  margin-bottom: 0.60rem;
}

p {
  font-size: var(--p-size);
  margin-bottom: 1rem;
  color: var(--primary-slate);
}

/* HEADER STYLES */
.navbar {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-ivory) 100%);
  border-bottom: 1px solid var(--light-sage);
  padding: 0.8rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-slate);
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 275px;
}

/* SECTION SPACING */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: var(--small-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.71rem;
}

/* SERVICES CARDS */
.service-card {
  background: var(--light-ivory);
  border: 1px solid var(--light-cream);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 25px rgba(154, 180, 135, 0.15);
}

.service-price {
  color: var(--primary-terracotta);
  font-size: 1.60rem;
  font-weight: var(--font-weight-semibold);
}

/* FEATURES SECTION */
.features-section {
  background: var(--primary-cream);
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 2.55rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* PRICE PLANS */
.price-card {
  background: var(--light-ivory);
  border: 2px solid var(--light-cream);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease;
}

.price-card.featured {
  border-color: var(--primary-sage);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  color: var(--primary-terracotta);
  font-weight: var(--font-weight-semibold);
}

/* TEAM SECTION */
.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: 5px solid var(--light-sage);
}

/* REVIEWS/TESTIMONIALS */
.review-card {
  background: var(--light-ivory);
  border-left: 4px solid var(--primary-sage);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.review-author {
  color: var(--primary-terracotta);
  font-weight: var(--font-weight-medium);
}

/* FAQ SECTION */
.faq-section {
  background: var(--light-cream);
}

.faq-card {
  background: var(--light-ivory);
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

.faq-question {
  color: var(--dark-sage);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.85rem;
}

/* GALLERY */
.gallery-item {
  margin-bottom: 1.75rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* CONTACT FORM */
.contact-section {
  background: var(--primary-cream);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: var(--p-size);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(161, 191, 130, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--dark-sage) 100%);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: var(--font-weight-medium);
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-sage) 0%, var(--primary-sage) 100%);
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--primary-slate) 100%);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-sage);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-sage);
}

/* BREADCRUMB */
.breadcrumb-section {
  background: var(--light-cream);
  padding: 1rem 0;
}

.breadcrumb-img {
  max-height: 30px;
  width: auto;
}

/* UTILITY CLASSES */
.text-sage { color: var(--primary-sage); }
.text-terracotta { color: var(--primary-terracotta); }
.bg-cream { background-color: var(--primary-cream); }
.bg-sage { background-color: var(--primary-sage); }

/* CASE STUDIES */
.case-study-card {
  background: var(--light-ivory);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(92, 98, 104, 0.10);
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-3px);
}

/* PROCESS SECTION */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  background: var(--primary-sage);
  color: var(--light-ivory);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: var(--font-weight-semibold);
  margin: 0 auto 1rem;
}

/* TIMELINE */
.timeline-item {
  border-left: 3px solid var(--primary-sage);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  background: var(--primary-terracotta);
  border-radius: 50%;
}

/* CAREER SECTION */
.career-item {
  background: var(--light-ivory);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.69rem;
  border-left: 4px solid var(--primary-terracotta);
}

/* CORE INFO GRID */
.coreinfo-item {
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  height: 100%;
}

.coreinfo-icon {
  font-size: 2rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* BLOG SECTION */
.blog-card {
  background: var(--light-ivory);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .card-body {
  padding: 1.5rem;
}

/* SPACE PAGE */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
} 


/* 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;
    }
}
