/* ===== COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-blue: #4A90E2;
  --primary-green: #7ED321;
  --primary-purple: #9013FE;
  --primary-orange: #FF9500;
  --primary-red: #F5A623;
  
  /* Light Shades */
  --light-blue: #E3F2FD;
  --light-green: #F1F8E9;
  --light-purple: #F3E5F5;
  --light-orange: #FFF8E1;
  --light-red: #FFF3E0;
  
  /* Dark Shades */
  --dark-blue: #1976D2;
  --dark-green: #388E3C;
  --dark-purple: #7B1FA2;
  --dark-orange: #F57C00;
  --dark-red: #E65100;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
    overflow-x: hidden;
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-blue);
  opacity: 0.1;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-purple);
  top: -50px;
  left: -50px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ===== SERVICES SECTION ===== */
.services-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-10px);
}

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

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--light-blue);
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  height: 100%;
}

/* ===== FAQ SECTION ===== */
.faq-card {
  background: white;
  border: 1px solid var(--light-blue);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #666;
  margin-bottom: 0;
}

/* ===== TEAM SECTION ===== */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-blue);
  margin-bottom: 1rem;
}

/* ===== GALLERY ===== */
.gallery-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

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

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

/* ===== FOOTER ===== */
footer {
  background: var(--dark-blue);
  color: white;
  padding: 3rem 0 1rem;
}

footer a {
  color: var(--light-blue);
  text-decoration: none;
}

footer a:hover {
  color: white;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--light-blue);
  padding: 2rem;
  border-radius: 15px;
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-blue);
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.btn-primary {
  background: var(--primary-blue);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
}

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

/* ===== BREADCRUMBS ===== */
.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-decorative,
  .services-card,
  .gallery-item img {
    animation: none;
    transition: none;
  }
}

/* ===== SECTION SPACING ===== */
.section-padding {
  padding: 4rem 0;
}

/* ===== UTILITIES ===== */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-purple { color: var(--primary-purple); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-purple { background-color: var(--light-purple); } 

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


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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