/* ===== RESPONSIVE STYLES ===== */

/* ===== TABLET STYLES (768px - 991px) ===== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .process-step {
    margin-bottom: 3rem;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* ===== MOBILE STYLES (max-width: 767px) ===== */
@media (max-width: 767px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }
  
  /* ===== NAVIGATION ===== */
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
  
  /* ===== HERO SECTION ===== */
  .hero-section {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  /* ===== SECTION SPACING ===== */
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  /* ===== ABOUT SECTION ===== */
  .about-feature {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .about-feature i {
    font-size: 2.5rem;
  }
  
  /* ===== SERVICES SECTION ===== */
  .service-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .service-card img {
    width: 60px;
    height: 60px;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  /* ===== FEATURES SECTION ===== */
  .feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
  }
  
  .feature-item i {
    font-size: 3rem;
  }
  
  /* ===== PRICE PLAN SECTION ===== */
  .priceplan-card {
    margin-bottom: 1.5rem;
    padding: 2rem 1.5rem;
  }
  
  .priceplan-price {
    font-size: 2.5rem;
  }
  
  /* ===== TEAM SECTION ===== */
  .team-member {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .team-member-name {
    font-size: 1.1rem;
  }
  
  /* ===== REVIEWS SECTION ===== */
  .review-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* ===== CASE STUDY SECTION ===== */
  .casestudy-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* ===== PROCESS SECTION ===== */
  .process-step {
    margin-bottom: 2rem;
    padding: 1rem;
  }
  
  .process-step::before {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .process-title {
    margin-top: 3rem;
    font-size: 1.1rem;
  }
  
  /* ===== TIMELINE SECTION ===== */
  .timeline-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
  }
  
  /* ===== CAREER SECTION ===== */
  .career-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* ===== CORE INFO SECTION ===== */
  .coreinfo-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  /* ===== CONTACT SECTION ===== */
  .contact-form {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
  }
  
  /* ===== BLOG SECTION ===== */
  .blog-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* ===== FAQ SECTION ===== */
  .faq-item {
    margin-bottom: 1rem;
    padding: 1.5rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  /* ===== GALLERY SECTION ===== */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  /* ===== FOOTER ===== */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer h5 {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  
  .footer h5:first-child {
    margin-top: 0;
  }
  
  /* ===== BUTTONS ===== */
  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  /* ===== FORM STYLES ===== */
  .form-control {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
  
  /* ===== BREADCRUMBS ===== */
  .breadcrumb-section {
    padding: 1.5rem 0;
  }
  
  .breadcrumb-image {
    width: 30px;
    height: 30px;
  }
  
  /* ===== UTILITIES ===== */
  .section-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  /* ===== NO ANIMATIONS ON MOBILE ===== */
  .service-card:hover,
  .about-feature:hover,
  .priceplan-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .btn-primary-custom:hover,
  .btn-secondary-custom:hover {
    transform: none;
  }
}

/* ===== SMALL MOBILE STYLES (max-width: 576px) ===== */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem 1rem;
  }
  
  .service-card,
  .priceplan-card,
  .review-card,
  .casestudy-item,
  .career-item,
  .coreinfo-item,
  .blog-item,
  .faq-item {
    padding: 1rem;
  }
  
  .priceplan-price {
    font-size: 2rem;
  }
  
  .service-price {
    font-size: 1.3rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item img {
    height: 120px;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
  
  .process-step::before {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .process-title {
    margin-top: 2.5rem;
  }
}

/* ===== VERY SMALL SCREENS (max-width: 360px) ===== */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form,
  .contact-info {
    padding: 1rem;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }
}

/* ===== LANDSCAPE MOBILE ORIENTATION ===== */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}

/* ===== HIGH DPI / RETINA DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-card img,
  .team-member img,
  .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .footer,
  .contact-form,
  .gallery-section {
    display: none;
  }
  
  .hero-section,
  .about-section,
  .services-section,
  .team-section {
    page-break-inside: avoid;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section-title {
    font-size: 18pt;
  }
  
  .hero-title {
    font-size: 24pt;
  }
}

.hero-content {
    padding-top: 150px;
}