@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap");
/* Color root variables */
:root {
  --ca-blue: #00ADEF;
  --ca-dark: #57585A;
  --ca-blue-light: #00ADEE;
  --ca-blue-dark: #045574;
}

* {
  padding: 0;
  margin: 0;
  font-family: 'Istok Web', sans-serif;
}







/* Mobile Navigation Styles */
.mobile-nav {
  background-color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 20px;
  text-align: right;
  /* border-bottom: 1px solid #E6BA20; */
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000000;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E6BA20;
}

.mobile-menu-body {
  padding: 20px;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin-bottom: 0;
  border-bottom: 1px solid #E6BA20;
}

.mobile-menu-items a {
  display: block;
  padding: 15px 0;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-menu-items a:hover {
  color: #EE861E;
  padding-left: 10px;
}

.mobile-menu-contact {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #EE861E;
}

.contact-info {
  display: flex;
  align-items: center;
  color: #E6BA20;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 10px;
  color: #E6BA20;
}

.mobile-book-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #EE861E;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-book-btn:hover {
  background-color: #EE861E;
  transform: translateY(-2px);
}

.mobile-menu-footer {
  /* margin-top: 30px; */
  padding: 20px 0;
  /* border-top: 1px solid #E6BA20; */
  text-align: center;
}

.mobile-logo-footer {
  margin-bottom: 5px;
}

.mobile-copyright {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.4;
}

.mobile-copyright p {
  margin: 2px 0;
}

.thyo-link {
  color: #EE861E;
  font-weight: 600;
}








.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: #000000 !important;
    font-weight: 600;
    background-color: #f2faff;
  border-radius: 10px;
  overflow: hidden;
    transition: color 0.2s;
}

.navbar-nav .nav-link{
    color: #000000 !important;
}





        .custom-navbar {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 0;
        }
        .custom-navbar .navbar-brand {
            font-weight: 700;
            font-size: 2rem;
            letter-spacing: -1px;
            display: flex;
            align-items: center;
        }
        .custom-navbar .navbar-brand .corpt {
            color: var(--ca-blue);
        }
        .custom-navbar .navbar-brand .tune {
            color: var(--ca-dark);
        }
        .custom-navbar .nav-link {
            color: var(--ca-dark) !important;
            font-size: 1rem;
            font-weight: 500;
            /* margin: 0 18px; */
            transition: color 0.2s, background 0.2s;
            border-radius: 8px;
            /* padding: 8px 16px !important; */
        }
        .custom-navbar .nav-link:hover,
        .custom-navbar .nav-link.active {
            color: var(--ca-blue-dark) !important;
            background: #f2faff;
        }
        .custom-navbar .dropdown-menu {
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            min-width: 220px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            font-size: 1rem;
        }
        .custom-navbar .dropdown-item {
            color: var(--ca-dark);
            font-weight: 500;
            padding: 10px 20px;
            transition: background 0.2s, color 0.2s;
        }
        .custom-navbar .dropdown-item:hover,
        .custom-navbar .dropdown-item:focus {
            background: #f2faff;
            color: var(--ca-blue-dark);
        }
        .custom-navbar .btn-consult {
            background: linear-gradient(90deg, var(--ca-blue), var(--ca-blue-dark));
            color: #fff;
            font-weight: 600;
            border-radius: 12px;
            /* padding: 10px 32px; */
            margin-left: 24px;
            font-size: 1.08rem;
            border: none;
            box-shadow: 0 2px 8px rgba(0,173,239,0.08);
            transition: background 0.2s, box-shadow 0.2s;
        }
        .custom-navbar .btn-consult:hover {
            background: linear-gradient(90deg, var(--ca-blue-dark), var(--ca-blue)) !important;
            box-shadow: 0 4px 16px rgba(0,173,239,0.16) !important;
        }
        @media (max-width: 991.98px) {
            .custom-navbar .navbar-collapse {
                background: #fff;
                padding: 20px 0;
            }
            .custom-navbar .navbar-brand {
                font-size: 1.5rem;
            }
            .custom-navbar .btn-consult {
                width: 100%;
                margin: 16px 0 0 0;
            }
        }



.hero_services_section {
    font-family: 'Istok Web', sans-serif;
}
.hero_services_btn {
    box-shadow: none;
}
.hero_services_title {
    margin-bottom: 0.5rem;
}
.hero_services_viewall {
    transition: background 0.2s, color 0.2s;
}
.hero_services_viewall:hover {
    background: var(--ca-blue);
    color: #fff;
}
.hero_services_card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 10px 28px 10px;
    min-height: 180px;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #f0f0f0;
    box-shadow: 0 4px 16px 0 rgba(0,173,239,0.04);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero_services_card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,173,239,0.10);
    transform: translateY(-4px) scale(1.03);
    border-color: var(--ca-blue-light);
}
.hero_services_icon i {
    display: inline-block;
}
@media (max-width: 991.98px) {
    .hero_services_title {
        font-size: 1.5rem;
    }
    .hero_services_card {
        min-height: 140px;
        padding: 24px 5px 18px 5px;
    }
}
@media (max-width: 767.98px) {
    .hero_services_section .row.align-items-start {
        flex-direction: column;
    }
    .hero_services_title {
        font-size: 1.2rem;
    }
    .hero_services_card {
        min-height: 110px;
        padding: 16px 2px 10px 2px;
    }
    .hero_services_section .col-lg-5,
    .hero_services_section .col-lg-7 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .hero_services_section .col-lg-5 {
        margin-bottom: 2rem;
    }
}




    .hero-badge-lg {
    font-size: 1.05rem;
}
@media (max-width: 991.98px) {
    .hero-badge-lg {
           font-size: 0.8rem;
    }
}
.hero_about_section {
    font-family: 'Istok Web', sans-serif;
    background-size: cover;
    background-position: center;
}
.hero_about_img-wrapper {
    max-width: 370px;
    border-radius: 32px;
}
.hero_about_title {
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero_about_why {
    box-shadow: 0 4px 24px 0 rgba(0,173,239,0.08);
}
@media (max-width: 991.98px) {
    .hero_about_title {
        font-size: 2rem;
    }
    .hero_about_img-wrapper {
        padding: 18px;
        max-width: 260px;
    }
}
@media (max-width: 767.98px) {
    .hero_about_section .row {
        flex-direction: column;
    }
    .hero_about_title {
        font-size: 1.2rem;
    }
    .hero_about_img-wrapper {
        padding: 10px;
        max-width: 180px;
    }
    .hero_about_why {
        padding: 1.2rem;
    }
}



.hero_expertise_section, .hero_tools_section {
    font-family: 'Istok Web', sans-serif;
}
.hero_expertise_card {
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.hero_expertise_card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,173,239,0.10);
    transform: translateY(-4px) scale(1.03);
}
.hero_tools_card {
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.hero_tools_card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,173,239,0.10);
    transform: translateY(-4px) scale(1.03);
}
@media (max-width: 991.98px) {
    .hero_expertise_title, .hero_tools_title {
        font-size: 1.5rem;
    }
}
@media (max-width: 767.98px) {
    .hero_expertise_title, .hero_tools_title {
        font-size: 1.1rem;
    }
    .hero_expertise_card, .hero_tools_card {
        padding: 28px 20px !important;
    }
}



.hero_resources_wrapper {
    box-shadow: 0 4px 32px 0 rgba(0,173,239,0.07);
}
.hero_resource_card {
    transition: box-shadow 0.18s, border-color 0.18s;
}
.hero_resource_card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,173,239,0.10);
    border-color: var(--ca-blue);
}
@media (max-width: 767.98px) {
    .hero_resources_wrapper {
        padding: 1.2rem !important;
    }
    .hero_resource_card {
        padding: 1.1rem !important;
        font-size: 1rem;
    }
}



.hero_updates_section {
    font-family: 'Istok Web', sans-serif;
}
.hero_update_card {
    transition: box-shadow 0.18s, border-color 0.18s;
}
.hero_update_card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,173,239,0.10);
    border-color: var(--ca-blue);
}
.hero_quick_notifications {
    /* min-height: 100%; */
}
@media (max-width: 991.98px) {
    .hero_updates_title {
        font-size: 1.5rem;
    }
}
@media (max-width: 767.98px) {
    .hero_updates_title {
        font-size: 1.1rem;
    }
    .hero_update_card, .hero_quick_notifications {
        padding: 1.1rem !important;
        font-size: 1rem;
    }
    .hero_quick_notifications {
        /* margin-top: 2rem; */
    }
}




.hero_reviews_section {
    font-family: 'Istok Web', sans-serif;
}
.hero_review_card {
    transition: box-shadow 0.18s, border-color 0.18s;
    border: none;
}
.hero_review_card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,173,239,0.10);
    border-color: var(--ca-blue);
}
@media (max-width: 991.98px) {
    .hero_reviews_section h2 {
        font-size: 2rem;
    }
}
@media (max-width: 767.98px) {
    .hero_reviews_section h2 {
        font-size: 1.3rem;
    }
    .hero_review_card {
        padding: 1.1rem !important;
        font-size: 1rem;
    }
}




.hero_infoauth_box {
    box-shadow: 0 4px 24px 0 rgba(0,173,239,0.06);
}
@media (max-width: 767.98px) {
    .hero_infoauth_box {
        padding: 1.2rem !important;
        font-size: 1rem;
    }
    .hero_infoauth_box h4 {
        font-size: 1.1rem;
    }
}


/* Add this to your CSS file or inside a <style> tag */
.core-value-card {
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    border-radius: 18px;
}
.core-value-card:hover {
    box-shadow: 0 8px 32px rgba(0, 173, 239, 0.18);
    transform: translateY(-8px) scale(1.03);
    background: #f8fafc;
}
.core-value-card:hover .rounded-3 {
    filter: brightness(1.1) saturate(1.2);
    box-shadow: 0 4px 16px rgba(0,173,239,0.12);
}
.core-value-card:hover h4 {
    color: var(--ca-blue);
}




/* Service Detail Page Styles */

/* Hero Section */
.service-hero-section {
    background: linear-gradient(120deg, rgba(0,173,239,0.93) 0%, rgba(4,85,116,0.93) 100%), 
                url('https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.hero-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-icon-wrapper i {
    font-size: 2.8rem;
    color: #fff;
}

/* Quick Stats Section */
.quick-stats-section {
    background: #fff;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,173,239,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,173,239,0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ca-blue) 0%, var(--ca-blue-light) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 2rem;
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ca-dark);
    margin: 10px 0;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: #f8fafc;
    padding: 80px 0;
}

.benefit-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,173,239,0.15);
}

.benefit-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--ca-blue) 0%, var(--ca-blue-light) 100%);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ca-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* What's Included Section */
.included-section {
    background: #fff;
    padding: 80px 0;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.included-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.included-item:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,173,239,0.1);
    transform: translateX(10px);
}

.included-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1ca600 0%, #14a000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.included-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ca-dark);
    margin-bottom: 5px;
}

.included-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.included-image-wrapper {
    position: relative;
}

.included-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ca-dark);
}

.included-badge i {
    color: #1ca600;
    font-size: 1.5rem;
}

/* Process Timeline Section */
.process-section {
    background: #f8fafc;
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--ca-blue) 0%, var(--ca-blue-light) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 40px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ca-blue) 0%, var(--ca-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,173,239,0.3);
    z-index: 2;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 30px rgba(0,173,239,0.15);
    transform: translateX(10px);
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ca-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Documents Section */
.documents-section {
    background: #fff;
    padding: 80px 0;
}

.document-card {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.document-card:hover {
    border-color: var(--ca-blue);
    box-shadow: 0 8px 30px rgba(0,173,239,0.15);
}

.document-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ca-dark);
    margin-bottom: 20px;
}

.document-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-card ul li {
    padding: 12px 0;
    color: #666;
    font-size: 1.05rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.document-card ul li:last-child {
    border-bottom: none;
}

.document-card ul li i {
    color: #1ca600;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
    background: #f8fafc;
    padding: 80px 0;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,173,239,0.2);
}

.pricing-card-featured {
    border: 3px solid var(--ca-blue);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #1ca600 0%, #14a000 100%);
    color: #fff;
    padding: 8px 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ca-dark);
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: #666;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ca-blue);
}

.pricing-price .period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i.fa-check {
    color: #1ca600;
}

.pricing-features li i.fa-times {
    color: #dc3545;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background: #fff;
    color: var(--ca-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--ca-blue) 0%, var(--ca-blue-light) 100%);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8fafc;
    padding: 80px 0;
}

.service-contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.service-contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 20px;
    height: auto;
    transition: all 0.3s ease;
}

.service-contact-form .form-control:focus {
    border-color: var(--ca-blue);
    box-shadow: 0 0 0 0.25rem rgba(0,173,239,0.1);
}

.service-contact-form .form-floating > label {
    padding: 1rem 1.25rem;
    color: #666;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,173,239,0.1);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--ca-blue) 0%, var(--ca-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-info-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.contact-info-item a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ca-blue);
    text-decoration: none;
}

/* CTA Section */
.service-cta-section {
    background: linear-gradient(120deg, rgba(0,173,239,0.93) 0%, rgba(4,85,116,0.93) 100%), 
                url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
}

/* Common Styles */
.section-badge {
    display: inline-block;
    background: var(--ca-blue);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ca-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

.submit-btn {
    background: linear-gradient(135deg, var(--ca-blue) 0%, var(--ca-blue-dark) 100%);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,173,239,0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from { 
        opacity: 0;
        transform: translateX(-50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from { 
        opacity: 0;
        transform: translateX(50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideRight 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideLeft 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .service-hero-section {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-contact-form {
        padding: 25px;
    }
    
    .quick-stats-section {
        margin-top: -30px;
    }
}