/*
* Moving & Relocation Services Template - Main CSS
*/

/* === COLOR PALETTE === */
:root {
  --primary-blue: #33a0bc;
  --primary-green: #ad4886;
  --primary-orange: #e76b00;
  --primary-purple: #da2d19;
  --primary-teal: #00abe2;
  
  --light-blue: #d4f3ff;
  --light-green: #f2e7f2;
  --light-orange: #f3ebd6;
  --light-purple: #ffffff;
  --light-teal: #d3f6f5;
  
  --dark-blue: #0a61b0;
  --dark-green: #752591;
  --dark-orange: #da5c00;
  --dark-purple: #aa0e0b;
  --dark-teal: #007171;
  
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #7a828d;
  --dark-gray: #282d34;
  --black: #000000;
  
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
  --gradient-secondary: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
  --gradient-accent: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
}

/* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

h1 { font-size: 2.31rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.49rem; font-weight: 500; }
h5 { font-size: 1.33rem; font-weight: 500; }
h6 { font-size: 1.17rem; font-weight: 500; }

p { font-size: 1rem; margin-bottom: 1rem; }

/* === ACCESSIBILITY === */
@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;
  }
}

/* === HEADER === */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(17px);
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.55rem !important;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
  transform: translateY(-2px);
}

/* === HERO SECTION === */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../REV_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.65rem;
  font-weight: 800;
  margin-bottom: 1.68rem;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.34rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.13rem;
  margin-bottom: 2.68rem;
  opacity: 0.8;
}

/* === SECTIONS === */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 0.62rem;
  font-size: 1.22rem;
}

.section-desc {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === CARDS === */
.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card:hover {
  transform: translateY(-11px);
  box-shadow: 0 23px 40px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.card-title {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-text {
  flex-grow: 1;
  color: var(--gray);
  line-height: 1.6;
}

/* === SERVICES === */
.services-card {
  text-align: center;
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 22px 39px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.services-card:hover {
  transform: translateY(-19px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-blue);
}

.services-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.services-price {
  color: var(--primary-orange);
  font-size: 1.83rem;
  font-weight: 700;
  margin-top: 1.61rem;
}

.services-features {
  list-style: none;
  margin: 1.5rem 0;
}

.services-features li {
  padding: 0.3rem 0;
  color: var(--gray);
}

.services-features li::before {
  content: "âœ“";
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* === TEAM === */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 17px 26px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-16px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 125px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 4px solid var(--light-blue);
  transition: all 0.3s ease;
}

.team-member:hover .team-photo {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.team-name {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.58rem;
}

.team-role {
  color: var(--gray);
  font-size: 0.96rem;
}

/* === CONTACT FORM === */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 11px;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(48, 105, 153, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 14px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(53, 127, 156, 0.30);
}

/* === FOOTER === */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.89rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--light-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1.01rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-contact p {
  color: var(--light-gray);
  margin-bottom: 0.69rem;
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
  text-align: center;
  color: var(--light-gray);
}

/* === SPACE PAGE === */
#space {
  min-height: 80vh;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 3rem 0;
  color: var(--white);
  font-size: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#space i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

#space p {
  font-size: 1.62rem;
  font-weight: 600;
  margin: 0;
}

/* === BREADCRUMBS === */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 2rem 0;
  margin-bottom: 3rem;
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}

/* === FEATURE ITEMS === */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  background: var(--light-gray);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  background: var(--white);
  box-shadow: 0 13px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.86rem;
  color: var(--white);
}

/* === NAVBAR SCROLLED STATE === */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

/* === PRICE CARDS === */
.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.price-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 15px 35px rgba(44, 164, 191, 0.20);
}

.price-card.featured::before {
  background: var(--gradient-accent);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* === REVIEW CARDS === */
.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-blue);
  position: absolute;
  top: 1rem;
  left: 2rem;
  opacity: 0.3;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.14rem;
  line-height: 1.8;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
}

.review-stars {
  color: var(--primary-orange);
  margin-bottom: 1rem;
  font-size: 1.27rem;
}

/* === CASE STUDY CARDS === */
.case-study-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-image {
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.case-study-content {
  padding: 2rem;
}

/* === PROCESS STEPS === */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.58rem;
  font-weight: bold;
  color: var(--white);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--light-gray);
  z-index: -1;
}

.process-step:last-child::after {
  display: none;
}

/* === TIMELINE ITEMS === */
.timeline-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.timeline-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* === CAREER CARDS === */
.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--light-gray);
}

.career-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.career-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.67rem;
}

.career-role {
  color: var(--primary-orange);
  font-weight: 500;
  margin-bottom: 1.57rem;
}

/* === INFO CARDS === */
.info-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.55rem;
  color: var(--white);
}

/* === BLOG CARDS === */
.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 200px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.66rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-blue);
}

/* === FAQ SECTION === */
.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 1.5rem 2rem;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.faq-answer {
  padding: 2rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

/* === GALLERY SECTION === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* === FORM LABELS === */
.form-label {
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 0.58rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.58rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  #space {
    min-height: 60vh;
    margin: 2rem 0;
  }
  
  #space i {
    font-size: 3rem;
  }
  
  #space p {
    font-size: 1.33rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  #space {
    min-height: 50vh;
    margin: 1.5rem 0;
  }
  
  #space i {
    font-size: 2.58rem;
  }
  
  #space p {
    font-size: 1.22rem;
  }
} 


/* 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);
}

.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;
    }
}
