/* 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: #fc7a6c;
  --primary-teal: #5cd1d1;
  --primary-sunshine: #f6e37a;
  --primary-lavender: #c5fbe5;
  --primary-peach: #ffad9e;
  
  --coral-light: #ec7d73;
  --teal-light: #99f3f4;
  --sunshine-light: #fff0ac;
  --lavender-light: #c7ebdc;
  --peach-light: #ffbebe;
  
  --coral-dark: #e76461;
  --teal-dark: #4bc0c0;
  --sunshine-dark: #f9e676;
  --lavender-dark: #a1dfbf;
  --peach-dark: #f6b3a8;
  
  --text-dark: #293c47;
  --text-light: #7b7f85;
  --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: 21.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.23rem; font-weight: 700; }
h2 { font-size: 1.86rem; font-weight: 600; }
h3 { font-size: 1.53rem; font-weight: 600; }
h4 { font-size: 1.32rem; font-weight: 500; }
h5 { font-size: 1.21rem; font-weight: 500; }
h6 { font-size: 1.15rem; font-weight: 500; }

p { font-size: 1.15rem; margin-bottom: 1.06rem; }

/* Header */
.navbar {
  background: var(--gradient-2) !important;
  padding: 1rem 0;
  box-shadow: 0 4px 11px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.53rem !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.72rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.21rem;
  margin-bottom: 2.24rem;
  opacity: 0.95;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 21px;
  box-shadow: 0 21px 40px rgba(0,0,0,0.2);
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.21rem;
}

.section-title h2 {
  color: var(--primary-coral);
  margin-bottom: 1.06rem;
}

.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: 17px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  margin-bottom: 2.24rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 3.13rem;
  color: var(--primary-teal);
  margin-bottom: 1.06rem;
}

.feature-item h4 {
  color: var(--text-dark);
  margin-bottom: 1.06rem;
}

/* 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.24rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 50px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem;
}

.service-card h4 {
  color: var(--primary-coral);
  margin-bottom: 1.06rem;
}

.service-price {
  font-size: 2.08rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 1.06rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.72rem;
}

.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.24rem;
}

.form-control {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.06rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(82, 227, 216, 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.24rem;
}

.contact-info p {
  margin-bottom: 1.06rem;
  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.72rem;
}

.footer p {
  color: #92a3b3;
  margin-bottom: 1.06rem;
}

.footer a {
  color: #bcc5d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-sunshine);
}

.footer-bottom {
  border-top: 1px solid #484d54;
  padding-top: 2.16rem;
  margin-top: 2.16rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--gradient-3);
  padding: 2rem 0;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-section img {
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0.9;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 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;
    }
}

/* FAQ Section Styling */
.faq {
    background: linear-gradient(135deg, #f8f9fa, var(--lavender-light));
    padding: 4rem 0;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-lavender));
    color: var(--white);
}

.faq-question.active {
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-peach));
    color: var(--white);
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.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;
    font-size: 1rem;
    background: var(--white);
}

.faq-answer.active {
    display: block;
}

/* Responsive Images - Universal Styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Images */
.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 21px 40px rgba(0,0,0,0.2);
}

/* Service Card Images */
.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 17px 17px 0 0;
}

/* Team Images */
.team-member img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

/* Gallery Images */
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Feature and About Section Images */
.feature-item img,
.about img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
}

/* Timeline and Case Study Images */
.timeline-item img,
.case-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-image img {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .service-card img {
        height: 200px;
    }
    
    .team-member img {
        max-width: 150px;
        height: 150px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1rem 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .service-card img {
        height: 180px;
    }
    
    .gallery-item img {
        height: 150px;
    }
}
