/* ========================================
   ORGANIC HOME SOLUTIONS - Mobile Responsive
   Enhanced Mobile Experience
   ======================================== */

/* -------------------- Mobile Navigation (992px and below) -------------------- */
@media (max-width: 992px) {
  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 1001;
  }

  /* Mobile Nav Overlay */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
  }

  /* Nav Menu Items */
  .nav-menu {
    flex-direction: column;
    gap: 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }

  /* Nav Links */
  .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 18px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    gap: 8px;
  }

  .nav-link::after {
    display: none !important;
  }

  /* Mega Menu Trigger Arrow */
  .has-mega-menu .nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  .has-mega-menu.mobile-menu-open .nav-link i {
    transform: rotate(180deg);
  }

  /* Mobile Mega Menu */
  .mega-menu {
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    margin: 0;
    padding: 0;
    pointer-events: auto !important;
  }

  .has-mega-menu.mobile-menu-open .mega-menu {
    max-height: 2000px;
    padding: 15px 0;
    margin-top: 10px;
  }

  .mega-menu::before {
    display: none !important;
  }

  /* Mega Menu Container */
  .mega-menu-container {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 10px 15px !important;
  }

  /* Mega Menu Columns */
  .mega-menu-column {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-sm);
    gap: 10px;
  }

  .mega-menu-title {
    font-size: 0.95rem;
    padding-bottom: 8px;
    margin-bottom: 8px;
    justify-content: center;
  }

  .mega-menu-title i {
    font-size: 1rem;
  }

  /* Mega Menu List */
  .mega-menu-list {
    gap: 5px;
  }

  .mega-menu-list li a {
    padding: 12px;
    text-align: center;
    border-radius: var(--radius-sm);
    background: var(--off-white);
  }

  .mega-menu-list li a:hover {
    transform: none;
    background: var(--light-green);
  }

  .mega-menu-item-name {
    font-size: 0.9rem;
  }

  .mega-menu-item-desc {
    font-size: 0.75rem;
  }

  /* Mega Menu CTA */
  .mega-menu-cta {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--light-gray);
  }

  .mega-menu-cta .btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  /* Header Actions */
  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 40px;
    height: 40px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .header-phone i {
    margin: 0;
    color: var(--primary-green);
  }

  .header-actions .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .lang-switch span {
    display: none;
  }

  .lang-switch {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* -------------------- Tablet Styles (768px - 992px) -------------------- */
@media (max-width: 992px) and (min-width: 769px) {
  .container {
    padding: 0 30px;
  }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-cta,
  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  /* Stats */
  .stats-bar .container {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Trust */
  #why-us .trust-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Choose */
  .why-choose-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-choose-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Process */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------- Mobile Styles (up to 768px) -------------------- */
@media (max-width: 768px) {
  /* Base adjustments */
  :root {
    --section-padding: 60px 0;
  }

  html {
    font-size: 15px;
  }

  .container {
    padding: 0 20px;
  }

  /* Typography */
  h1 {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.05rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* Header */
  .header {
    padding: 12px 0;
  }

  .header.scrolled {
    padding: 10px 0;
  }

  .logo img {
    height: 40px;
  }

  .header.scrolled .logo img {
    height: 38px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    display: none;
  }

  .header-phone,
  .lang-switch {
    width: 38px;
    height: 38px;
  }

  /* Mobile Nav Adjustments */
  .nav {
    padding-top: 70px;
  }

  .nav-menu {
    max-width: 100%;
    padding: 15px;
  }

  .nav-link {
    padding: 16px 12px;
    font-size: 1.05rem;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 5px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .trust-chip {
    padding: 10px 18px;
    font-size: 0.8rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .hero-shapes .hero-shape-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
  }

  .hero-shapes .hero-shape-2 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -50px;
  }

  /* Hero V5 Mobile - Professional Style */
  .hero-v5 {
    padding-top: 70px;
    min-height: auto;
  }

  .hero-v5-container {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 15px;
  }

  .hero-v5-slider-wrapper {
    border-radius: 16px;
  }

  .hero-v5-slider {
    min-height: 320px;
  }

  .hero-v5-content {
    padding: 15px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-v5-content h1 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    max-width: 100%;
  }

  .hero-v5-stats {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-v5-stats .stat {
    padding: 6px 12px;
    gap: 8px;
    flex: 0 0 auto;
  }

  .hero-v5-stats .stat i {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .hero-v5-stats .stat-num {
    font-size: 1rem;
  }

  .hero-v5-stats .stat-text {
    font-size: 0.6rem;
  }

  /* Sidebar Mobile */
  .hero-v5-sidebar {
    gap: 12px;
  }

  .sidebar-card {
    border-radius: 12px;
  }

  .service-card {
    padding: 16px;
  }

  .service-card .card-title {
    font-size: 0.75rem;
  }

  .service-indicator {
    width: 42px;
    height: 42px;
  }

  .service-indicator i {
    font-size: 1.1rem;
  }

  .current-service {
    font-size: 0.95rem;
  }

  /* Trust Slider Card Mobile */
  .trust-slider-card {
    padding: 16px;
    min-height: 85px;
  }

  .trust-slides {
    min-height: 55px;
  }

  .trust-icon {
    width: 44px;
    height: 44px;
  }

  .trust-icon i {
    font-size: 1.1rem;
  }

  .trust-title {
    font-size: 0.9rem;
  }

  .trust-desc {
    font-size: 0.75rem;
  }

  .trust-dots {
    margin-top: 12px;
  }

  .trust-dots .dot {
    width: 6px;
    height: 6px;
  }

  .trust-dots .dot.active {
    width: 18px;
  }

  /* Hide eco card */
  .eco-card {
    display: none !important;
  }

  .action-card {
    padding: 16px;
    gap: 10px;
  }

  .action-btn {
    padding: 14px 16px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  /* Hide old hero versions */
  .hero-v4 { display: none !important; }
  .hero-v3 { display: none !important; }

  /* Hero V4 Mobile - Hidden */
  .hero-v4-old {
    display: none;
  }

  .hero-v4-service-name {
    padding: 10px 16px;
    gap: 10px;
  }

  .hero-v4-service-name .service-icon {
    width: 28px;
    height: 28px;
  }

  .hero-v4-service-name .service-icon i {
    font-size: 0.75rem;
  }

  .service-label {
    font-size: 0.9rem;
  }

  /* Slider Mobile */
  .hero-v4-slider {
    min-height: 280px;
  }

  .hero-v4-overlay {
    transform: translate(-50%, -50%);
  }

  .hero-v4-overlay h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .hero-v4-overlay p {
    font-size: 0.85rem;
  }

  /* Stats Mobile - Clean */
  .hero-v4-stats {
    flex-wrap: wrap;
    padding: 0;
  }

  .hero-v4-stats .stat-item {
    flex: 0 0 50%;
    padding: 12px 10px;
    gap: 8px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .hero-v4-stats .stat-item:nth-child(2),
  .hero-v4-stats .stat-item:nth-child(4) {
    border-right: none;
  }

  .hero-v4-stats .stat-item:nth-child(3),
  .hero-v4-stats .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .hero-v4-stats .stat-item i {
    font-size: 1.1rem;
  }

  .hero-v4-stats .stat-number {
    font-size: 1.1rem;
  }

  .hero-v4-stats .stat-label {
    font-size: 0.58rem;
  }

  /* Sidebar Mobile - Clean */
  .hero-v4-sidebar {
    padding: 30px 20px;
  }

  .hero-v4-sidebar::before {
    display: none;
  }

  .sidebar-content {
    max-width: 100%;
    text-align: center;
  }

  .sidebar-badge {
    font-size: 0.7rem;
    padding: 8px 14px;
    margin-bottom: 20px;
  }

  .hero-v4-sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-v4-sidebar > .sidebar-content > p {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .sidebar-points {
    gap: 10px;
    margin-bottom: 24px;
  }

  .point-item {
    text-align: left;
    gap: 12px;
    padding: 12px 14px;
  }

  .point-icon {
    width: 40px;
    height: 40px;
  }

  .point-icon i {
    font-size: 1rem;
  }

  .point-text h4 {
    font-size: 0.9rem;
  }

  .point-text p {
    font-size: 0.75rem;
  }

  .sidebar-cta {
    gap: 10px;
  }

  .sidebar-cta .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Hide old V3 styles */
  .hero-v3 { display: none !important; }

  /* Hero V2 Mobile */
  .hero-v2 {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 100px 0 0;
    padding-bottom: 120px;
  }

  .hero-v2 .container {
    padding-top: 0;
  }

  .hero-v2-content {
    margin-bottom: 30px;
  }

  .hero-v2-badge {
    font-size: 0.7rem;
    padding: 8px 14px;
    margin-bottom: 20px;
  }

  .hero-v2 h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .hero-v2-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-v2-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-v2-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats Bar Mobile */
  .hero-v2-stats-bar {
    padding: 20px 0;
  }

  .hero-v2-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero-v2-stat {
    flex: 1 1 50%;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-v2-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-v2-stat:nth-child(3),
  .hero-v2-stat:nth-child(4) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-txt {
    font-size: 0.7rem;
    margin-top: 5px;
  }

  /* Stats Bar */
  .stats-bar {
    padding: 35px 0;
  }

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }

  .stat-item {
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-number span {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Trust Section */
  .trust-section {
    padding: 50px 0;
  }

  .trust-header {
    margin-bottom: 35px;
  }

  #why-us .trust-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-card {
    padding: 28px 20px;
  }

  .trust-card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .trust-card-icon i {
    font-size: 1.4rem;
  }

  .trust-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .trust-card p {
    font-size: 0.88rem;
  }

  .trust-cta {
    margin-top: 35px;
  }

  .trust-cta p {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .trust-cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .trust-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Services Section */
  .services-section {
    padding: 50px 0;
  }

  .services-header {
    margin-bottom: 25px;
  }

  .services-tabs {
    display: none;
  }

  /* New Icon Tabs Mobile */
  .services-tabs-new {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 8px;
    padding: 5px 0 15px;
    margin-bottom: 25px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .services-tabs-new::-webkit-scrollbar {
    display: none;
  }

  .tab-card {
    min-width: 75px;
    max-width: 80px;
    padding: 10px 8px;
    gap: 6px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .tab-card .tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .tab-card .tab-icon i {
    font-size: 1rem;
  }

  .tab-card span {
    font-size: 0.6rem;
    line-height: 1.1;
  }

  .tab-btn {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    max-width: 100%;
  }

  .service-card-image {
    height: 180px;
  }

  .service-card-content {
    padding: 18px;
  }

  .service-card-content h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .service-card-content p {
    font-size: 0.88rem;
    margin-bottom: 15px;
  }

  .service-card-cta {
    flex-direction: column;
    gap: 8px;
  }

  .service-card-cta .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* Consultation Box */
  .consultation-box {
    padding: 30px 20px;
    margin-top: 35px;
    border-radius: var(--radius-lg);
  }

  .consultation-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .consultation-box p {
    font-size: 0.92rem;
    margin-bottom: 22px;
  }

  .consultation-box .btn-group {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .consultation-box .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Why Choose Section */
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-section .container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .why-choose-content {
    text-align: center;
    order: 1;
  }

  .why-choose-content h2 {
    font-size: 1.4rem;
  }

  .why-choose-content > p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .why-choose-list {
    margin-bottom: 28px;
  }

  .why-choose-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 22px;
  }

  .why-choose-item i {
    margin: 0 auto 10px;
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  .why-choose-item-content h4 {
    font-size: 0.98rem;
    margin-bottom: 4px;
  }

  .why-choose-item-content p {
    font-size: 0.88rem;
  }

  .why-choose-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .why-choose-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .why-choose-image {
    order: 0;
    margin: 0 auto;
    max-width: 100%;
  }

  .why-choose-image img {
    border-radius: var(--radius-md);
  }

  .why-choose-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 18px auto 0;
    justify-content: center;
    max-width: 220px;
    padding: 18px 22px;
  }

  .why-choose-badge i {
    font-size: 2rem;
  }

  .why-choose-badge h4 {
    font-size: 1.5rem;
  }

  /* Process Section NEW */
  .process-section-new {
    padding: 40px 0 !important;
  }

  .process-header-new {
    margin-bottom: 25px;
  }

  .process-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
    letter-spacing: 1px;
  }

  .process-header-new h2 {
    font-size: 1.5rem;
  }

  .process-header-new p {
    font-size: 0.9rem;
  }

  .process-timeline {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .process-line {
    display: none;
  }

  .process-step {
    width: 100%;
    max-width: 320px;
    flex-direction: row;
    text-align: left;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
  }

  .process-step-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    margin-bottom: 0;
  }

  .process-step-icon i {
    font-size: 1.3rem;
  }

  .process-step-number {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    top: -5px;
    right: -5px;
  }

  .process-step-content {
    max-width: none;
    text-align: left;
  }

  .process-step-content h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .process-step-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .process-cta {
    margin-top: 25px;
  }

  .btn-white {
    padding: 12px 22px;
    font-size: 0.85rem;
  }

  .btn-white i {
    font-size: 1.1rem;
  }

  /* Background shapes mobile */
  .process-shape-1 {
    width: 200px;
    height: 200px;
  }

  .process-shape-2 {
    width: 150px;
    height: 150px;
  }

  .process-shape-3 {
    width: 100px;
    height: 100px;
  }

  /* Process Section Old (legacy) */
  .process-section {
    padding: 50px 0;
  }

  .process-header {
    margin-bottom: 35px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    padding: 28px 20px;
  }

  .process-card::after {
    display: none;
  }

  .process-number {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .process-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .process-card p {
    font-size: 0.88rem;
  }

  /* About Section NEW */
  .about-section-new {
    padding: 40px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-visual {
    order: 0;
  }

  .about-image-container img {
    height: 250px;
  }

  .about-experience-badge {
    padding: 14px 18px;
    top: 15px;
    left: 15px;
    min-width: 80px;
  }

  .about-experience-badge .exp-number {
    font-size: 2rem;
  }

  .about-experience-badge .exp-text {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .about-experience-badge .exp-subtext {
    font-size: 0.6rem;
  }

  .about-mini-stats {
    gap: 10px;
  }

  .mini-stat {
    padding: 12px 14px;
    gap: 10px;
  }

  .mini-stat i {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .mini-stat-num {
    font-size: 1.1rem;
  }

  .mini-stat-text {
    font-size: 0.7rem;
  }

  .about-content-new {
    padding-left: 0;
    text-align: center;
  }

  .about-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .about-content-new h2 {
    font-size: 1.5rem;
  }

  .about-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .about-value-card {
    padding: 14px;
    text-align: center;
  }

  .about-value-card .value-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
  }

  .about-value-card .value-icon i {
    font-size: 0.9rem;
  }

  .about-value-card h4 {
    font-size: 0.85rem;
    margin-bottom: 3px;
  }

  .about-value-card p {
    font-size: 0.7rem;
  }

  .about-cta {
    justify-content: center;
    gap: 10px;
  }

  .about-cta .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .btn-outline-dark {
    padding: 10px 18px;
  }

  /* About Section Old (legacy) */
  .about-section {
    padding: 50px 0;
  }

  .about-section .container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-image {
    order: 0;
    margin: 0 auto;
    text-align: center;
  }

  .about-image img {
    border-radius: var(--radius-md);
    max-width: 100%;
  }

  .about-year-badge {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 15px;
    display: inline-flex;
    flex-direction: column;
    padding: 18px 25px;
  }

  .about-year-badge h3 {
    font-size: 1.8rem;
  }

  .about-content {
    text-align: center;
    order: 1;
  }

  .about-content h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .about-content > p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }

  .about-value {
    justify-content: center;
    padding: 12px 15px;
    font-size: 0.85rem;
  }

  .about-value i {
    font-size: 1rem;
  }

  .about-value span {
    font-size: 0.85rem;
  }

  .about-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .about-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Testimonials Section NEW */
  .testimonials-section-new {
    padding: 40px 0;
  }

  .testimonials-header-new {
    margin-bottom: 20px;
  }

  .testi-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .testimonials-header-new h2 {
    font-size: 1.6rem;
  }

  .testimonials-header-new p {
    font-size: 0.9rem;
  }

  .google-rating-badge {
    padding: 10px 18px;
    gap: 12px;
    margin-bottom: 25px;
  }

  .google-logo {
    height: 18px;
  }

  .rating-stars i {
    font-size: 0.75rem;
  }

  .rating-num {
    font-size: 0.95rem;
  }

  .rating-text {
    font-size: 0.65rem;
  }

  .testimonials-carousel {
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  }

  .testimonials-track {
    gap: 15px;
    animation-duration: 45s;
  }

  .testi-card {
    padding: 20px;
    width: 300px;
    min-height: 200px;
  }

  .testi-card.featured {
    order: unset;
  }

  .featured-badge {
    top: -8px;
    right: 15px;
    font-size: 0.65rem;
    padding: 4px 12px;
  }

  .testi-avatar {
    width: 42px;
    height: 42px;
  }

  .testi-avatar span {
    font-size: 0.9rem;
  }

  .testi-author h4 {
    font-size: 0.9rem;
  }

  .testi-author span {
    font-size: 0.7rem;
  }

  .testi-rating i {
    font-size: 0.7rem;
  }

  .testi-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .testi-service {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .testimonials-cta-new {
    margin-top: 25px;
    gap: 10px;
  }

  .testimonials-cta-new .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* Contact Section NEW */
  .contact-section-new {
    padding: 40px 0;
  }

  .contact-header {
    margin-bottom: 30px;
  }

  .contact-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .contact-header h2 {
    font-size: 1.6rem;
  }

  .contact-header p {
    font-size: 0.9rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-info-new {
    order: 1;
  }

  .contact-form-new {
    order: 0;
  }

  .contact-cards {
    gap: 10px;
  }

  .contact-card {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .contact-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .contact-card-icon i {
    font-size: 1rem;
  }

  .contact-card-content h4 {
    font-size: 0.7rem;
  }

  .contact-card-content span {
    font-size: 0.9rem;
  }

  .whatsapp-cta-new {
    padding: 14px 18px;
    border-radius: 12px;
  }

  .whatsapp-icon-wrap {
    width: 42px;
    height: 42px;
  }

  .whatsapp-icon-wrap i {
    font-size: 1.3rem;
  }

  .whatsapp-text span {
    font-size: 0.75rem;
  }

  .whatsapp-text strong {
    font-size: 0.95rem;
  }

  .contact-quick-info {
    gap: 10px;
  }

  .quick-info-item {
    padding: 8px 12px;
    flex: 1;
    justify-content: center;
  }

  .quick-info-item i {
    font-size: 0.8rem;
  }

  .quick-info-item span {
    font-size: 0.75rem;
  }

  .contact-form-new {
    padding: 30px 22px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  }

  .contact-form-new::before {
    height: 4px;
  }

  .form-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .form-icon i {
    font-size: 1.4rem;
  }

  .form-header {
    margin-bottom: 25px;
  }

  .form-header h3 {
    font-size: 1.35rem;
  }

  .form-header p {
    font-size: 0.85rem;
  }

  .contact-form-new .form-group {
    margin-bottom: 16px;
  }

  .contact-form-new label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    gap: 6px;
  }

  .contact-form-new label i {
    font-size: 0.85rem;
  }

  .contact-form-new input,
  .contact-form-new select,
  .contact-form-new textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
    border-width: 2px;
  }

  .btn-submit {
    padding: 16px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .btn-submit span {
    font-size: 0.95rem;
  }

  .form-trust {
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
  }

  .form-trust .trust-item {
    gap: 5px;
  }

  .form-trust .trust-item i {
    font-size: 0.75rem;
  }

  .form-trust .trust-item span {
    font-size: 0.7rem;
  }

  /* Testimonials Section Old */
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-header {
    margin-bottom: 35px;
  }

  .testimonials-slider {
    margin-bottom: 25px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-card::before {
    font-size: 3.5rem;
    top: 8px;
    left: 12px;
  }

  .testimonial-stars {
    margin-bottom: 18px;
  }

  .testimonial-stars i {
    font-size: 0.95rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 22px;
    line-height: 1.7;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 8px;
  }

  .testimonial-author img {
    width: 48px;
    height: 48px;
  }

  .testimonial-author-info h4 {
    font-size: 0.95rem;
  }

  .testimonial-author-info span {
    font-size: 0.8rem;
  }

  .testimonials-dots {
    margin-top: 22px;
    gap: 8px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }

  .testimonials-cta {
    margin-top: 25px;
  }

  /* Contact Section */
  .contact-section {
    padding: 50px 0;
  }

  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info h2 {
    font-size: 1.4rem;
  }

  .contact-info > p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .contact-details {
    margin-bottom: 22px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 18px;
  }

  .contact-item i {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .contact-item-content h4 {
    font-size: 0.82rem;
  }

  .contact-item-content a,
  .contact-item-content p {
    font-size: 0.98rem;
  }

  .whatsapp-box {
    justify-content: center;
    padding: 16px 20px;
    flex-direction: row;
    gap: 12px;
  }

  .whatsapp-box i {
    font-size: 1.6rem;
  }

  .whatsapp-box span {
    font-size: 0.82rem;
  }

  .whatsapp-box strong {
    font-size: 1rem;
  }

  /* Contact Form */
  .contact-form-wrapper {
    padding: 25px 18px;
  }

  .contact-form-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: var(--radius-sm);
  }

  .form-group textarea {
    min-height: 100px;
  }

  .form-consent {
    font-size: 0.78rem;
    margin-bottom: 20px;
  }

  .form-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }

  .contact-form-wrapper .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* SEO Section */
  .seo-section {
    padding: 40px 0;
  }

  .seo-section h2 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding: 0 10px;
    line-height: 1.4;
  }

  .seo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .seo-column {
    text-align: center;
  }

  .seo-column h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .seo-column ul {
    justify-content: center;
    gap: 8px;
  }

  .seo-column li {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .seo-area {
    font-size: 0.88rem;
    margin-top: 20px;
  }

  /* Footer */
  .footer {
    padding: 45px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand img {
    height: 48px;
    margin: 0 auto 15px;
  }

  .footer-brand p {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .footer-social {
    justify-content: center;
    gap: 10px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .footer-column h4 {
    font-size: 0.98rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 0.88rem;
  }

  .footer-contact-item {
    justify-content: center;
    font-size: 0.88rem;
    margin-bottom: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 18px 0;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.82rem;
  }

  .footer-bottom-links {
    gap: 18px;
  }

  .footer-bottom-links a {
    font-size: 0.82rem;
  }

  /* Floating Buttons */
  .floating-buttons {
    bottom: 18px;
    right: 15px;
    gap: 10px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .floating-btn.scroll-top {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 22px;
    font-size: 0.92rem;
  }

  .btn-lg {
    padding: 14px 26px;
    font-size: 0.98rem;
  }

  .btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* Section Styling */
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .section-heading {
    margin-bottom: 12px;
  }

  .section-subtext {
    font-size: 0.92rem;
    margin-bottom: 25px;
  }
}

/* -------------------- Small Mobile (up to 480px) -------------------- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  /* Header */
  .header {
    padding: 10px 0;
  }

  .logo img {
    height: 35px;
  }

  .header-phone,
  .lang-switch {
    width: 34px;
    height: 34px;
  }

  .mobile-menu-toggle {
    width: 26px;
  }

  .mobile-menu-toggle span {
    height: 2.5px;
  }

  /* Nav */
  .nav {
    padding-top: 65px;
  }

  .nav-link {
    padding: 15px 10px;
    font-size: 1rem;
  }

  /* Mega Menu Mobile */
  .mega-menu-column {
    padding: 12px;
  }

  .mega-menu-title {
    font-size: 0.88rem;
  }

  .mega-menu-item-name {
    font-size: 0.85rem;
  }

  .mega-menu-item-desc {
    font-size: 0.7rem;
  }

  /* Hero */
  .hero {
    padding: 85px 0 45px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-cta .btn {
    max-width: 100%;
    padding: 13px 20px;
  }

  .trust-chip {
    max-width: 100%;
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  /* Stats */
  .stats-bar {
    padding: 30px 0;
  }

  .stats-bar .container {
    gap: 15px 10px;
  }

  .stat-item {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-number span {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  /* Cards */
  .trust-card {
    padding: 22px 15px;
  }

  .trust-card-icon {
    width: 50px;
    height: 50px;
  }

  .trust-card-icon i {
    font-size: 1.2rem;
  }

  .service-card-image {
    height: 160px;
  }

  .service-card-content {
    padding: 15px;
  }

  .process-card {
    padding: 22px 15px;
  }

  .process-number {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 22px 15px;
  }

  /* About Values */
  .about-values {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .contact-form-wrapper {
    padding: 20px 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
  }

  /* Footer */
  .footer {
    padding: 35px 0 0;
  }

  .footer-grid {
    gap: 25px;
  }

  .footer-brand img {
    height: 42px;
  }

  /* Floating Buttons */
  .floating-buttons {
    bottom: 15px;
    right: 12px;
    gap: 8px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .floating-btn.scroll-top {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

/* -------------------- Extra Small Mobile (up to 360px) -------------------- */
@media (max-width: 360px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .logo img {
    height: 32px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 14px 8px;
  }
}

/* -------------------- Landscape Mobile -------------------- */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 90px 0 35px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-cta .btn {
    width: auto;
    max-width: none;
    padding: 10px 20px;
  }

  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-chip {
    width: auto;
    max-width: none;
  }

  .stats-bar .container {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .nav {
    padding-top: 60px;
  }
}

/* -------------------- Touch Device Optimizations -------------------- */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .btn:hover {
    transform: none;
  }

  .btn:hover::before {
    left: -100%;
  }

  .service-card:hover {
    transform: none;
  }

  .service-card:hover .service-card-image img {
    transform: none;
  }

  .trust-card:hover {
    transform: none;
  }

  .trust-card:hover::before {
    transform: scaleX(0);
  }

  .process-card:hover {
    transform: none;
  }

  .whatsapp-box:hover {
    transform: none;
  }

  .floating-btn:hover {
    transform: none;
  }

  /* Increase tap targets */
  .nav-link {
    min-height: 48px;
  }

  .btn {
    min-height: 46px;
  }

  .floating-btn {
    min-width: 46px;
    min-height: 46px;
  }

  .tab-btn {
    min-height: 44px;
  }

  /* Active states instead of hover */
  .btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }

  .service-card:active {
    transform: scale(0.99);
  }

  .trust-card:active {
    transform: scale(0.99);
  }

  .floating-btn:active {
    transform: scale(0.95);
  }

  .mega-menu-list li a:active {
    background: var(--light-green);
  }
}

/* -------------------- Safe Area Insets (Notch phones) -------------------- */
@supports (padding: max(0px)) {
  .header {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .nav {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .floating-buttons {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(15px, env(safe-area-inset-bottom));
  }

  .footer-bottom {
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .container {
    padding-left: max(15px, env(safe-area-inset-left));
    padding-right: max(15px, env(safe-area-inset-right));
  }
}

/* -------------------- Print Styles -------------------- */
@media print {
  .header,
  .floating-buttons,
  .hero-shapes,
  .page-loader,
  .mega-menu,
  .mobile-menu-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero {
    padding-top: 0;
    min-height: auto;
  }

  section {
    page-break-inside: avoid;
  }

  a {
    text-decoration: underline;
  }

  .btn {
    border: 1px solid #333;
  }
}

/* -------------------- Reduced Motion -------------------- */
@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;
  }

  /* Keep client logos animation running */
  .clients-track {
    animation: scrollLogos 25s linear infinite !important;
    animation-duration: 25s !important;
    animation-iteration-count: infinite !important;
  }

  .hero-floating-card {
    animation: none;
  }

  .floating-btn.whatsapp {
    animation: none;
  }

  .nav,
  .mega-menu {
    transition: none !important;
  }
}

/* -------------------- High Contrast Mode -------------------- */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }

  .trust-card,
  .service-card,
  .process-card,
  .testimonial-card {
    border: 2px solid var(--dark-text);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border-width: 3px;
  }

  .nav-link {
    text-decoration: underline;
  }
}

/* -------------------- Testimonials Carousel Small Mobile -------------------- */
@media (max-width: 480px) {
  .testimonials-carousel {
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    padding: 15px 0;
  }

  .testimonials-track {
    gap: 12px;
    animation-duration: 40s !important;
  }

  .testi-card {
    padding: 16px;
    width: 260px;
    min-height: 180px;
    border-radius: 12px;
  }

  .testi-avatar {
    width: 36px;
    height: 36px;
  }

  .testi-avatar span {
    font-size: 0.8rem;
  }

  .testi-author h4 {
    font-size: 0.8rem;
  }

  .testi-author span {
    font-size: 0.65rem;
  }

  .testi-rating i {
    font-size: 0.6rem;
  }

  .testi-text {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .testi-service {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .featured-badge {
    top: -6px;
    right: 12px;
    font-size: 0.55rem;
    padding: 3px 10px;
  }
}

/* -------------------- Services Overview Section Mobile -------------------- */
@media (max-width: 768px) {
  .services-overview {
    padding: 40px 0;
  }

  .services-overview .section-header h2 {
    font-size: 1.5rem;
  }

  .services-overview .section-header p {
    font-size: 0.9rem;
  }

  .all-services-tags {
    gap: 8px;
    justify-content: center;
  }

  .overview-tag {
    padding: 10px 14px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .overview-tag i {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .all-services-tags {
    gap: 6px;
  }

  .overview-tag {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* -------------------- Accreditations Section Mobile -------------------- */
@media (max-width: 992px) {
  .accreditations-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accreditations-content {
    text-align: center;
  }

  .accreditations-stats {
    justify-content: center;
  }

  .accreditations-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .accreditations-section {
    padding: 50px 0;
  }

  .accreditations-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .accreditations-content h2 {
    font-size: 1.6rem;
  }

  .accreditations-content p {
    font-size: 0.9rem;
  }

  .accreditations-stats {
    gap: 25px;
  }

  .acc-stat-number {
    font-size: 2rem;
  }

  .acc-stat-text {
    font-size: 0.8rem;
  }

  .accreditations-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-card {
    padding: 18px 12px;
    border-radius: 12px;
  }

  .logo-card img {
    height: 35px;
    margin-bottom: 8px;
  }

  .logo-card span {
    font-size: 0.75rem;
  }

  .highlight-card {
    padding: 20px 15px;
  }

  .highlight-card i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .highlight-card span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .accreditations-content h2 {
    font-size: 1.4rem;
  }

  .accreditations-stats {
    flex-direction: column;
    gap: 15px;
  }

  .acc-stat {
    text-align: center;
  }

  .accreditations-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .logo-card {
    padding: 15px 10px;
  }

  .logo-card img {
    height: 30px;
  }
}

/* -------------------- Footer New Mobile -------------------- */
@media (max-width: 768px) {
  .footer-top-bar {
    padding: 20px 0;
  }

  .footer-cta-wrap {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .footer-cta-text h3 {
    font-size: 1.3rem;
  }

  .footer-cta-text p {
    font-size: 0.9rem;
  }

  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand-new img {
    margin: 0 auto 15px;
  }

  .footer-social-new {
    justify-content: center;
  }

  .footer-column-new h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column-new ul li a {
    justify-content: center;
  }

  .footer-contact-new {
    align-items: center;
  }

  .footer-contact-item-new {
    max-width: 280px;
    width: 100%;
  }

  .footer-bottom-new {
    padding: 15px 0;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links-new {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-cta-text h3 {
    font-size: 1.15rem;
  }

  .footer-grid-new {
    gap: 25px;
  }

  .footer-brand-new img {
    height: 45px;
  }

  .footer-column-new ul li {
    margin-bottom: 8px;
  }

  .footer-contact-item-new {
    padding: 8px 10px;
  }

  .footer-contact-item-new .contact-icon {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .footer-contact-item-new .contact-text strong {
    font-size: 0.8rem;
  }

  .footer-bottom-links-new {
    flex-direction: column;
    gap: 8px;
  }
}

/* -------------------- Hero Floating Badge Mobile -------------------- */
@media (max-width: 992px) {
  .hero-floating-badge {
    display: none;
  }
}

/* -------------------- New Services Mega Menu Mobile -------------------- */
@media (max-width: 992px) {
  .services-mega-menu {
    position: static !important;
    min-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--light-gray) !important;
  }

  .has-mega-menu.mobile-menu-open .services-mega-menu {
    max-height: 3000px;
    padding: 15px;
    margin-top: 10px !important;
  }

  .smm-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .smm-categories {
    width: 100% !important;
    border-radius: 10px !important;
    padding: 8px;
    background: var(--white) !important;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }

  .smm-cat-item {
    flex: 0 0 calc(50% - 3px);
    padding: 10px 12px;
    border-radius: 8px;
    border-left: none !important;
    background: #f5f7f9;
    font-size: 0.75rem;
    gap: 8px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .smm-cat-item i:first-child {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    margin: 0 auto;
  }

  .smm-cat-item span {
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: center;
  }

  .smm-cat-item .smm-arrow {
    display: none;
  }

  .smm-cat-item:hover,
  .smm-cat-item.is-active {
    background: var(--light-green);
    border-left-color: transparent;
  }

  .smm-services {
    padding: 0;
    min-height: auto !important;
  }

  .smm-panel {
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
  }

  .smm-panel h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    justify-content: center;
    text-align: center;
  }

  .smm-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }

  .smm-grid a {
    padding: 12px 14px;
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
  }

  .smm-grid a:hover {
    transform: none;
  }

  .smm-grid a i {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .smm-cat-item {
    flex: 0 0 calc(50% - 3px);
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .smm-cat-item i:first-child {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .smm-cat-item span {
    font-size: 0.65rem;
  }

  .smm-panel {
    padding: 12px;
  }

  .smm-panel h4 {
    font-size: 0.85rem;
  }

  .smm-grid a {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

/* -------------------- Service Page Mobile Styles -------------------- */
@media (max-width: 768px) {
  /* Service Hero */
  .service-hero {
    padding: 100px 0 50px;
  }

  .service-breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-hero-content {
    text-align: center;
  }

  .service-hero-content h1 {
    font-size: 1.6rem;
  }

  .service-hero-content p {
    font-size: 0.95rem;
  }

  /* Why Section */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    padding: 22px 18px;
    text-align: center;
  }

  /* Signs Section */
  .signs-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .sign-item {
    flex-direction: column;
    text-align: center;
    padding: 18px 15px;
  }

  .sign-icon {
    margin: 0 auto 12px;
  }

  /* Inclusions */
  .inclusions-box {
    padding: 25px 18px;
  }

  .inclusions-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .inclusions-list {
    grid-template-columns: 1fr;
  }

  .inclusions-list li {
    justify-content: center;
    text-align: center;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-features li {
    justify-content: center;
    text-align: center;
  }

  /* Custom Quote */
  .custom-quote-box {
    padding: 30px 20px;
    text-align: center;
  }

  .custom-quote-box .btn-group {
    flex-direction: column;
    align-items: center;
  }

  /* Service CTA */
  .service-cta {
    padding: 50px 0;
  }

  .service-cta-content {
    text-align: center;
  }

  .service-cta-content h2 {
    font-size: 1.4rem;
  }

  .service-cta .btn-group {
    flex-direction: column;
    align-items: center;
  }
}

/* -------------------- Career Page Mobile Styles -------------------- */
@media (max-width: 992px) {
  .career-page .header {
    background: #ffffff !important;
  }

  .why-join-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  /* Career Hero */
  .career-hero {
    padding: 100px 0 50px !important;
  }

  .career-hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.25;
    margin-bottom: 12px !important;
  }

  .career-hero p {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  /* Why Join Us */
  .why-join {
    padding: 50px 0 !important;
  }

  .why-join-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 30px !important;
  }

  .why-join-card {
    padding: 25px 20px !important;
    border-radius: 14px !important;
  }

  .why-join-card .icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
    margin-bottom: 16px !important;
  }

  .why-join-card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }

  .why-join-card p {
    font-size: 0.9rem !important;
  }

  /* Open Positions */
  .positions {
    padding: 50px 0 !important;
  }

  .positions-grid {
    margin-top: 30px !important;
    gap: 18px !important;
  }

  .position-card {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 24px 20px !important;
    gap: 18px !important;
  }

  .position-info h3 {
    font-size: 1.15rem !important;
  }

  .position-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px !important;
  }

  .position-meta span {
    font-size: 0.85rem !important;
  }

  .position-info p {
    font-size: 0.9rem !important;
  }

  .position-apply {
    text-align: center !important;
  }

  .apply-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    padding: 12px 24px !important;
  }

  /* Career Form Section */
  .career-form-section {
    padding: 50px 0 !important;
  }

  .career-form-section .section-header h2 {
    font-size: 1.5rem;
  }

  .career-form-section .section-header p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .career-form {
    padding: 25px 18px !important;
    margin-top: 30px !important;
    border-radius: 16px !important;
  }

  .career-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .career-form .form-group {
    margin-bottom: 16px !important;
  }

  .career-form label {
    font-size: 0.9rem !important;
  }

  .career-form input,
  .career-form select,
  .career-form textarea {
    padding: 12px 14px !important;
    font-size: 16px !important; /* Prevents iOS zoom */
    border-radius: 8px !important;
  }

  .career-form textarea {
    min-height: 100px !important;
  }

  .career-form .submit-btn {
    padding: 14px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 480px) {
  .career-hero {
    padding: 90px 0 40px !important;
  }

  .career-hero h1 {
    font-size: 1.5rem !important;
  }

  .career-hero p {
    font-size: 0.9rem !important;
  }

  .why-join-card {
    padding: 20px 16px !important;
  }

  .why-join-card .icon {
    width: 55px !important;
    height: 55px !important;
    font-size: 1.3rem !important;
  }

  .position-card {
    padding: 20px 16px !important;
  }

  .career-form {
    padding: 20px 15px !important;
  }
}

/* -------------------- Sectors Dropdown Menu Mobile -------------------- */
@media (max-width: 992px) {
  .sectors-dropdown-menu {
    position: static !important;
    min-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--light-gray) !important;
  }

  .has-sectors-menu.mobile-menu-open .sectors-dropdown-menu {
    max-height: 2000px;
    padding: 15px;
    margin-top: 10px !important;
  }

  .sectors-dropdown-wrapper {
    padding: 0;
  }

  .sectors-dropdown-header {
    text-align: center;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .sectors-dropdown-header h4 {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .sectors-dropdown-header p {
    font-size: 0.8rem;
  }

  .sectors-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sector-dropdown-item {
    padding: 12px 15px;
    background: var(--white);
    border-radius: 10px;
    gap: 12px;
  }

  .sector-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .sector-item-icon i {
    font-size: 1rem;
  }

  .sector-item-text span {
    font-size: 0.9rem;
  }

  .sector-item-text small {
    font-size: 0.75rem;
  }

  .sectors-dropdown-footer {
    margin-top: 12px;
    padding-top: 12px;
    text-align: center;
  }

  .view-all-sectors {
    padding: 12px 20px;
    font-size: 0.9rem;
    justify-content: center;
  }
}

/* -------------------- Sectors Page Mobile -------------------- */
@media (max-width: 992px) {
  .sectors-page .header {
    background: #ffffff !important;
  }

  .why-sectors-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  /* Sectors Hero */
  .sectors-hero {
    padding: 100px 0 50px !important;
  }

  .sectors-hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.25;
  }

  .sectors-hero p {
    font-size: 1rem !important;
    padding: 0 15px;
  }

  .sectors-hero .breadcrumb {
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Sectors Section */
  .sectors-section {
    padding: 50px 0 !important;
  }

  .sectors-section .section-header .section-heading {
    font-size: 1.6rem !important;
  }

  .sectors-section .section-header .section-subtext {
    font-size: 0.95rem !important;
  }

  /* Sectors Tabs */
  .sectors-tabs-wrapper {
    margin-bottom: 30px !important;
  }

  .sectors-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 10px !important;
    padding: 5px 0 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .sectors-tabs::-webkit-scrollbar {
    display: none;
  }

  .sector-tab {
    min-width: 90px !important;
    max-width: 100px !important;
    padding: 14px 10px !important;
    flex-shrink: 0;
    border-radius: 12px !important;
  }

  .sector-tab .tab-icon {
    width: 45px !important;
    height: 45px !important;
    border-radius: 10px !important;
  }

  .sector-tab .tab-icon i {
    font-size: 1.2rem !important;
  }

  .sector-tab span {
    font-size: 0.7rem !important;
    line-height: 1.2;
  }

  /* Sector Detail */
  .sector-detail {
    border-radius: 16px !important;
  }

  .sector-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 25px 20px !important;
  }

  .sector-detail-left .sector-icon {
    width: 55px !important;
    height: 55px !important;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
  }

  .sector-detail-left .sector-icon i {
    font-size: 1.4rem !important;
  }

  .sector-detail-left h2 {
    font-size: 1.4rem !important;
  }

  .sector-detail-left p {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
  }

  .sector-services-list {
    padding: 18px !important;
    border-radius: 12px !important;
  }

  .sector-services-list h4 {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
  }

  .sector-services-tags span {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }

  .sector-benefits {
    padding: 18px !important;
    border-radius: 12px !important;
  }

  .sector-benefits h4 {
    font-size: 0.9rem !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .benefit-item {
    padding: 10px !important;
    border-radius: 8px !important;
  }

  .benefit-item span {
    font-size: 0.8rem !important;
  }

  .sector-cta-buttons {
    flex-direction: column;
    gap: 10px !important;
  }

  .sector-cta-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px !important;
  }

  /* Why Sectors */
  .why-sectors {
    padding: 50px 0 !important;
  }

  .why-sectors .section-header .section-heading {
    font-size: 1.6rem !important;
  }

  .why-sectors-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 30px !important;
  }

  .why-sector-card {
    padding: 28px 20px !important;
    border-radius: 14px !important;
  }

  .why-sector-card .icon {
    width: 65px !important;
    height: 65px !important;
    margin-bottom: 15px !important;
  }

  .why-sector-card .icon i {
    font-size: 1.6rem !important;
  }

  .why-sector-card h4 {
    font-size: 1.1rem !important;
  }

  .why-sector-card p {
    font-size: 0.88rem !important;
  }
}

@media (max-width: 480px) {
  .sectors-hero {
    padding: 90px 0 40px !important;
  }

  .sectors-hero h1 {
    font-size: 1.5rem !important;
  }

  .sector-tab {
    min-width: 80px !important;
    max-width: 90px !important;
    padding: 12px 8px !important;
  }

  .sector-tab .tab-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .sector-tab .tab-icon i {
    font-size: 1rem !important;
  }

  .sector-tab span {
    font-size: 0.65rem !important;
  }

  .sector-detail-grid {
    padding: 20px 15px !important;
  }

  .sector-detail-left h2 {
    font-size: 1.25rem !important;
  }

  .why-sector-card {
    padding: 22px 16px !important;
  }

  .why-sector-card .icon {
    width: 55px !important;
    height: 55px !important;
  }

  .why-sector-card .icon i {
    font-size: 1.4rem !important;
  }
}
