/* Bootstrap 5 CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* FontAwesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Swiper CSS */
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

/* Lightbox2 CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Custom Color Palette */
:root {
  --primary-coral: #ff8281;
  --primary-teal: #40bda8;
  --primary-sunshine: #fff961;
  --primary-lavender: #b5e2cc;
  --primary-peach: #ffa89b;
  
  --coral-light: #ff9c98;
  --teal-light: #8fe5d1;
  --sunshine-light: #f7e4a7;
  --lavender-light: #e6fff2;
  --peach-light: #e8c9cb;
  
  --coral-dark: #e1433d;
  --teal-dark: #3ea7a9;
  --sunshine-dark: #cdc24a;
  --lavender-dark: #82bead;
  --peach-dark: #f69192;
  
  --text-dark: #345266;
  --text-light: #5d6d78;
  --white: #ffffff;
  
  --gradient-1: linear-gradient(135deg, var(--primary-coral), var(--primary-peach));
  --gradient-2: linear-gradient(135deg, var(--primary-teal), var(--primary-lavender));
  --gradient-3: linear-gradient(135deg, var(--primary-sunshine), var(--sunshine-light));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17.00px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1 { font-size: 2.29rem; font-weight: 700; }
h2 { font-size: 1.94rem; font-weight: 600; }
h3 { font-size: 1.56rem; font-weight: 600; }
h4 { font-size: 1.39rem; font-weight: 500; }
h5 { font-size: 1.16rem; font-weight: 500; }
h6 { font-size: 1.02rem; font-weight: 500; }

p { font-size: 1.02rem; margin-bottom: 1.17rem; }

/* Header */
.navbar {
  background: var(--gradient-2) !important;
  padding: 1rem 0;
  box-shadow: 0 7px 12px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.46rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

.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(--sunshine-light) !important;
}

.navbar-toggler {
  border: none;
  color: var(--white);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero h1 {
  margin-bottom: 1.58rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.16rem;
  margin-bottom: 2.21rem;
  opacity: 0.95;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 27px;
  box-shadow: 0 24px 40px rgba(0,0,0,0.2);
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.18rem;
}

.section-title h2 {
  color: var(--primary-coral);
  margin-bottom: 1.17rem;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #f8f9fa, var(--lavender-light));
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
  margin-bottom: 2.21rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3.15rem;
  color: var(--primary-teal);
  margin-bottom: 1.17rem;
}

.feature-item h4 {
  color: var(--text-dark);
  margin-bottom: 1.17rem;
}

/* Service Cards */
.services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.21rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem;
}

.service-card h4 {
  color: var(--primary-coral);
  margin-bottom: 1.17rem;
}

.service-price {
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 1.17rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.58rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-lavender);
  margin-right: 0.5rem;
}

/* Contact Form */
.contact {
  background: var(--gradient-2);
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
  color: var(--text-dark);
  margin-bottom: 2.21rem;
}

.form-control {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.17rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(82, 187, 190, 0.25);
}

.btn-submit {
  background: var(--gradient-1);
  border: none;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-info {
  color: var(--white);
}

.contact-info h4 {
  margin-bottom: 2.21rem;
}

.contact-info p {
  margin-bottom: 1.17rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 1rem;
  width: 20px;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-sunshine);
  margin-bottom: 1.58rem;
}

.footer p {
  color: #a7a9ab;
  margin-bottom: 1.17rem;
}

.footer a {
  color: #a9abae;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-sunshine);
}

.footer-bottom {
  border-top: 1px solid #38434b;
  padding-top: 2.07rem;
  margin-top: 2.25rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--gradient-3);
  padding: 2rem 0;
  text-align: center;
}

.breadcrumb-section img {
  max-height: 40px;
  opacity: 0.8;
}

/* 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;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .service-card img {
        height: 200px;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
    }
}

/* Image Dimensions */
.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 27px;
    box-shadow: 0 24px 40px rgba(0,0,0,0.2);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

/* FAQ Section Styles */
.faq {
    background: linear-gradient(135deg, #f8f9fa, var(--lavender-light));
}

.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 {
    padding: 1.5rem 2rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: var(--lavender-light);
    color: var(--primary-teal);
}

.faq-question.active {
    background: var(--primary-teal);
    color: var(--white);
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
    background: var(--white);
}

.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}



/* Team Section */
.team-member {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* Price Cards */
.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-coral);
    margin: 1.5rem 0;
}

/* Features Section */
.features {
    background: var(--white);
}

/* Process Section */
.process {
    background: linear-gradient(135deg, #f8f9fa, var(--lavender-light));
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

/* Timeline Section */
.timeline {
    background: var(--white);
}

.timeline-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-coral);
}

.timeline-item:hover {
    transform: translateY(-5px);
}

/* Career Section */
.career {
    background: linear-gradient(135deg, #f8f9fa, var(--lavender-light));
}

.career-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.career-item:hover {
    transform: translateY(-5px);
}

.career-role {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo {
    background: var(--white);
}

.core-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.core-item:hover {
    transform: translateY(-5px);
}

/* Case Study Section */
.casestudy {
    background: linear-gradient(135deg, #f8f9fa, var(--lavender-light));
}

.case-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.case-item:hover {
    transform: translateY(-5px);
}

/* Reviews Section */
.reviews {
    background: var(--gradient-2);
    color: var(--white);
}

.testimonial-slide {
    background: var(--white);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-coral);
}
