/* Khan Associates Custom Styles
 * This file consolidates shared styles that were previously inline in HTML files
 * Colors: Navy Blue #1a365d, Orange #f97316
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --navy: #1a365d;
    --navy-dark: #0f2942;
    --orange: #f97316;
    --orange-light: rgba(249, 115, 22, 0.85);
    --orange-medium: rgba(249, 115, 22, 0.5);
    --white: #fff;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --text-gray: #666;
}

/* ============================================
   Base Styles
   ============================================ */
body {
    font-family: 'Nunito', sans-serif;
}

/* ============================================
   Slim Top Bar
   ============================================ */
.top-bar-slim {
    background: var(--navy-dark);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-slim a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-slim a:hover {
    color: var(--orange);
}

.top-bar-contact a {
    margin-right: 8px;
}

.top-bar-contact .divider {
    color: rgba(255,255,255,0.4);
    margin: 0 12px;
}

.top-bar-contact i {
    margin-right: 5px;
    color: var(--orange);
}

.top-bar-social span {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-left: 8px;
    transition: all 0.2s;
}

.top-bar-social a:hover {
    background: var(--orange);
    color: #fff;
}

/* ============================================
   Main Navbar with Logo
   ============================================ */
.ftco_navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo {
    height: 45px;
    margin-right: 10px;
}

.brand-text {
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.ftco_navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 700;
    padding: 8px 15px;
    font-size: 14px;
    transition: color 0.2s;
}

.ftco_navbar .navbar-nav .nav-link:hover,
.ftco_navbar .navbar-nav .nav-item.active .nav-link {
    color: var(--orange) !important;
}

.ftco_navbar .nav-cta {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%) !important;
    border: none !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ftco_navbar .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #d35400 0%, var(--orange) 100%) !important;
}

.ftco_navbar .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 8px 12px;
    font-size: 14px;
}

/* Legacy - keep for compatibility */
.bg-top {
    background: var(--white);
    border-bottom: 1px solid #e8edf3;
}

.bg-top .navbar-brand span {
    color: var(--navy);
    font-size: 24px;
    font-weight: 800;
}

.site-header__logo {
    height: 40px;
    margin-right: 10px;
}

.bg-top .topper .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--orange);
    background: rgba(249, 115, 22, 0.12);
}

.bg-top .topper .text span:first-child {
    color: var(--text-gray);
    font-size: 12px;
}

.bg-top .topper .text span:last-child,
.bg-top .topper .text a {
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
}

.ftco_navbar {
    background: var(--navy) !important;
    box-shadow: 0 8px 24px rgba(15, 41, 66, 0.18);
}

.ftco_navbar .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ftco_navbar .navbar-nav .nav-item.active .nav-link,
.ftco_navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--orange) !important;
}

.ftco_navbar .searchform .form-control {
    height: 40px;
    border: 0;
}

.ftco_navbar .searchform .form-control.search {
    background: var(--orange);
    color: var(--white);
}

.ftco_navbar.scrolled,
.ftco_navbar.awake,
.ftco_navbar.sleep {
    background: var(--navy) !important;
}

#ftco-navbar.ftco_navbar {
    background: var(--navy) !important;
}

/* ============================================
   Section Backgrounds and Overlays
   ============================================ */
.ftco-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.ftco-consult::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange-light);
    z-index: 1;
}

.ftco-consult .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   Appointment Form Styles
   ============================================ */
.appointment-form .form-control {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 5px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.appointment-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.appointment-form .form-control:focus {
    background-color: var(--white);
    color: #000;
    border-color: var(--white);
    box-shadow: 0 0 8px var(--orange-medium);
}

.appointment-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.appointment-form select.form-select {
    background-color: var(--white);
    color: #000;
    border: 1px solid var(--white);
    border-radius: 5px;
    padding: 12px 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}

.appointment-form select.form-select:focus {
    background-color: var(--white);
    color: #000;
    border-color: var(--white);
    box-shadow: 0 0 8px var(--orange-medium);
}

.appointment-form select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

.datepicker-input {
    position: relative;
}

.datepicker-input .flatpickr-input {
    width: 100%;
    padding-right: 45px;
}

.datepicker-input .input-group-text {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
}

.datepicker-input .input-group-text:hover {
    color: var(--white);
}

.appointment-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.appointment-form textarea.form-control:focus {
    box-shadow: 0 0 8px var(--orange-medium);
}

.appointment-form .btn-primary {
    background-color: var(--white) !important;
    color: var(--navy) !important;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.appointment-form .btn-primary:hover {
    background-color: var(--navy-dark) !important;
    color: var(--white) !important;
}

/* ============================================
   Button Styles
   ============================================ */
.btn-submit {
    background-color: var(--navy);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--navy) !important;
    border-color: var(--navy) !important;
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--navy-dark) !important;
    border-color: var(--navy-dark) !important;
}

.btn-outline-primary {
    color: var(--navy) !important;
    border-color: var(--navy) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--orange) !important;
    border-color: var(--orange) !important;
    color: var(--white) !important;
}

.text-primary {
    color: var(--orange) !important;
}

.bg-primary {
    background-color: var(--navy) !important;
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp_float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp_float:hover {
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.whatsapp_float i.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    background: #25d366;
}

@media screen and (max-width: 767px) {
    .whatsapp-icon {
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   Blog Styles
   ============================================ */
.blog-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
    padding: 120px 0 60px;
    color: white;
}

.blog-entry {
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-entry .text {
    padding: 25px;
}

.blog-entry h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-entry h3 a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.blog-entry h3 a:hover {
    color: var(--navy);
}

.blog-entry .meta {
    margin-bottom: 15px;
}

.blog-entry .meta span {
    margin-right: 15px;
    color: #999;
    font-size: 14px;
}

.blog-entry .read-more {
    color: var(--navy);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.blog-entry .read-more:hover {
    color: var(--orange);
}

.blog-sidebar {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 5px;
}

.blog-sidebar .categories {
    list-style-type: none;
    padding: 0;
}

.blog-sidebar .categories li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.blog-sidebar .categories li:last-child {
    border-bottom: none;
}

.blog-sidebar .categories li a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.blog-sidebar .categories li a:hover {
    color: var(--navy);
}

blockquote {
    padding: 20px 30px;
    margin: 20px 0;
    background: var(--light-gray);
    border-left: 5px solid var(--navy);
    font-style: italic;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-info-wrap {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 5px;
}

.contact-info-wrap .dbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-wrap .dbox .icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-wrap .dbox .icon span {
    color: var(--white);
    font-size: 20px;
}

.contact-info-wrap .dbox .text {
    flex: 1;
}

.contact-info-wrap .dbox .text p {
    margin-bottom: 0;
}

.contact-info-wrap .dbox .text p span {
    font-weight: 600;
    color: var(--dark-gray);
}

.contact-info-wrap .dbox .text p a {
    color: var(--navy);
}

.contact-info-wrap .dbox .text p a:hover {
    color: var(--orange);
}

/* ============================================
   Team Page Styles
   ============================================ */
.staff {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.staff:hover {
    transform: translateY(-10px);
}

.staff .img-wrap {
    position: relative;
    overflow: hidden;
}

.staff .img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.staff:hover .img-wrap img {
    transform: scale(1.1);
}

.staff .text {
    padding: 25px;
    text-align: center;
    background: var(--white);
}

.staff .text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.staff .text .position {
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 15px;
}

.staff .text .faded {
    color: var(--text-gray);
    font-size: 14px;
}

/* ============================================
   Footer Styles Enhancement
   ============================================ */
.site-footer.ftco-footer {
    position: relative;
    padding: 4rem 0 2rem !important;
    background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 65%, #10253c 100%) !important;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, #ff9d4f 100%);
}

.site-footer__brand {
    margin-bottom: 15px;
    text-decoration: none;
}

.site-footer__logo {
    height: 42px;
    margin-right: 12px;
}

.site-footer__brand span {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.site-footer__intro {
    margin-bottom: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__title {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__links li {
    margin-bottom: 10px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    font-size: 14px;
}

.site-footer__links a:hover {
    color: var(--orange) !important;
    padding-left: 5px;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
}

.site-footer__contact .icon {
    margin-right: 10px;
    color: var(--orange);
    min-width: 18px;
    font-size: 16px;
}

.site-footer__contact .text {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer__contact a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
}

.site-footer__contact a:hover {
    color: var(--orange) !important;
}

.site-footer__cta {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__cta h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.site-footer__cta p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer .subscribe-form .form-control {
    height: 46px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.site-footer .subscribe-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.newsletter-response-message {
    display: none;
    color: var(--white);
}

.site-footer .subscribe-form .submit {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer .subscribe-form .submit:hover {
    background: #de6613;
    border-color: #de6613;
}

.site-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.site-footer__social li {
    list-style: none;
}

.site-footer__social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.site-footer__bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    gap: 12px;
}

.site-footer__bottom p {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__credit a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
}

.site-footer__credit a:hover {
    text-decoration: underline;
}

/* ============================================
   Standard Hero Blocks (Legal/FAQ Pages)
   ============================================ */
.hero-standard {
    background-image: url("../images/bg-1.jpg");
    background-size: cover;
    background-position: center;
}

.hero-standard__overlay {
    background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
    opacity: 0.85;
}

.hero-standard__row {
    height: 300px;
}

.hero-standard__content {
    position: relative;
    z-index: 2;
}

.hero-standard__home-link {
    color: var(--white);
}

.faq-contact-cta {
    background: #f8f9fa;
    border-radius: 10px;
}

/* ============================================
   Blog Page Refinements
   ============================================ */
.blog-list {
    padding: 60px 0;
}

.blog-entry img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    will-change: transform;
}

.blog-entry .meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-entry .read-more {
    color: var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.search-form {
    position: relative;
    margin-bottom: 30px;
}

.search-form .form-control {
    padding-right: 50px;
    height: 46px !important;
}

.search-form .btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 46px;
    background: transparent;
    border: none;
    color: var(--navy);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    background: #e9ecef;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-cloud a:hover {
    background: var(--navy);
    color: var(--white);
}

.recent-post-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.blog-entry img,
.related-post img,
.sidebar-post-img {
    aspect-ratio: 16 / 9;
    height: auto;
}

/* ============================================
   Blog Detail Page Refinements
   ============================================ */
.blog-content {
    padding: 60px 0;
}

.blog-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-meta {
    margin-bottom: 20px;
    color: #6c757d;
}

.blog-meta span {
    margin-right: 15px;
    font-size: 14px;
}

.blog-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.blog-content blockquote {
    background: #f9f9f9;
    border-left: 5px solid var(--navy);
    margin: 20px 0;
    padding: 20px;
    font-style: italic;
    color: #555;
}

.blog-content ul {
    margin-bottom: 20px;
}

.blog-content li {
    margin-bottom: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0;
}

.tags a {
    background: #e9ecef;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tags a:hover {
    background: var(--navy);
    color: var(--white);
}

.author-box {
    display: flex;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 40px 0;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.2s ease;
}

.share-button.facebook,
.share-button.twitter,
.share-button.linkedin {
    background: var(--navy);
}

.share-button.whatsapp {
    background: #25d366;
}

.comment-form .form-control {
    margin-bottom: 15px;
}

.related-posts {
    margin-top: 60px;
}

.related-post {
    margin-bottom: 30px;
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.related-post h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.related-post p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================
   Contact Page Refinements
   ============================================ */
.contact-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.contact-info .icon {
    margin-bottom: 20px;
    color: var(--navy);
}

.contact-info p {
    font-size: 1rem;
    color: var(--dark-gray);
}

.contact-form {
    border-radius: 5px;
    padding: 40px;
}

.contact-form .form-control {
    border-radius: 0;
    border-color: #ced4da;
}

.contact-form .btn {
    background-color: var(--navy);
    border: none;
    color: var(--white);
}

.contact-form .btn:hover {
    background-color: var(--navy-dark);
}

.contact-form h2 {
    margin-bottom: 40px;
    color: var(--dark-gray);
}

/* ============================================
   FAQ Page Refinements
   ============================================ */
.faq-section {
    padding: 80px 0;
}

.faq-section .accordion-button {
    font-weight: 600;
    color: var(--navy);
    background-color: #f8f9fa;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--navy);
    color: var(--white);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.faq-section .accordion-body {
    padding: 20px;
    line-height: 1.8;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
}

/* ============================================
   Industries Page Refinements
   ============================================ */
#industries-we-serve {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.industry-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    background: var(--white);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
    background: var(--navy);
}

.industry-card:hover .card-title,
.industry-card:hover .card-text,
.industry-card:hover ul li {
    color: var(--white) !important;
}

.industry-card:hover .icon-wrapper {
    background: var(--orange);
}

.industry-card:hover .fa-check {
    color: var(--white) !important;
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.25);
}

.icon-wrapper i {
    font-size: 1.75rem;
    color: var(--white);
}

.industry-card .card-title {
    color: var(--navy);
    font-size: 1.25rem;
}

.industry-card .card-text {
    line-height: 1.6;
}

.industry-card .fa-check {
    font-size: 0.7rem;
    color: var(--orange);
}

.industry-card ul li {
    color: #555;
}

/* ============================================
   Team Page Refinements
   ============================================ */
.team-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

/* Modern Team Card Design */
.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper with Overlay */
.team-card__image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card__image {
    transform: scale(1.08);
}

/* Overlay with Social Links */
.team-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.95) 0%, rgba(26, 54, 93, 0.7) 70%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.4s ease;
}

.team-card__social {
    display: flex;
    gap: 12px;
}

.team-card__social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.team-card__social-link:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-4px) rotate(360deg);
    border-color: var(--white);
    text-decoration: none;
}

/* Card Content */
.team-card__content {
    padding: 28px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-card__position {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.team-card__bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.team-card__btn {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.team-card__btn:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.team-card__btn i {
    transition: transform 0.3s ease;
}

.team-card__btn:hover i {
    transform: translateX(5px);
}

/* Legacy support - keep for other team member sections */
.team-card .card-title {
    font-size: 1.2rem;
    margin-top: 15px;
    color: var(--dark-gray);
}

.team-card .card-text {
    color: #777;
    margin-bottom: 5px;
}

.team-card .card-bio {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.team-card .social-links {
    margin-bottom: 15px;
}

.team-card .social-links a {
    color: var(--orange);
    margin: 0 5px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-card .social-links a:hover {
    color: var(--navy);
}

/* ============================================
   Other Team Members - Modern Card Design
   ============================================ */
.team-member-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-member-card__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin: 20px;
    position: relative;
}

.team-member-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--light-gray);
    transition: all 0.3s ease;
}

.team-member-card:hover .team-member-card__image img {
    border-color: var(--orange);
    transform: scale(1.05);
}

.team-member-card__content {
    flex: 1;
    padding: 20px 24px 20px 0;
}

.team-member-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}

.team-member-card__position {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.team-member-card__experience {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-member-card__description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-member-card {
        flex-direction: column;
        text-align: center;
    }
    
    .team-member-card__image {
        margin: 20px auto 0;
    }
    
    .team-member-card__content {
        padding: 16px 20px 20px;
    }
}

.team-card .card-bio {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.team-card .social-links {
    margin-bottom: 15px;
}

.team-card .social-links a {
    color: var(--orange);
    margin: 0 5px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-card .social-links a:hover {
    color: var(--navy);
}

.team-card .btn {
    background-color: var(--navy);
    color: var(--white);
    border: none;
}

.team-card .btn:hover {
    background-color: var(--navy-dark);
}

.team-section .media {
    display: flex;
    align-items: flex-start;
}

.team-section .media img {
    border-radius: 50%;
    margin-right: 15px;
}

.team-section .media-body h5 {
    margin-top: 0;
    color: var(--dark-gray);
}

.team-section .media-body p {
    color: #777;
}

/* ============================================
   404 Page Styles
   ============================================ */
body.page-404 {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 58%, var(--orange) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-404 .error-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.page-404 .error-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.page-404 .error-code {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-404 .error-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-404 .error-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.page-404 .error-illustration {
    margin-bottom: 2rem;
}

.page-404 .error-illustration i {
    font-size: 5rem;
    opacity: 0.3;
}

.page-404 .btn-home {
    background-color: var(--white);
    color: var(--navy);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.page-404 .btn-home:hover {
    background-color: transparent;
    color: var(--white);
}

.page-404 .btn-contact {
    background-color: transparent;
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-left: 1rem;
}

.page-404 .btn-contact:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}

.page-404 .quick-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-404 .quick-links h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.page-404 .quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.page-404 .quick-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.page-404 .quick-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.page-404 .brand-footer {
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-404 .brand-footer img {
    height: 30px;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.page-404 .search-box {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.page-404 .search-box .form-control {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-404 .search-box .btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

/* ============================================
   Offline Page Styles
   ============================================ */
body.page-offline {
    line-height: 1.8;
    background: #f8f9fa;
    color: #333;
    text-align: center;
    padding: 40px 20px;
    margin: 0;
}

.page-offline .offline-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-offline .logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.page-offline h1 {
    color: var(--navy);
    margin-bottom: 20px;
}

.page-offline p {
    margin-bottom: 20px;
    font-size: 16px;
}

.page-offline .offline-note {
    margin-top: 40px;
    font-size: 14px;
}

.page-offline .btn {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.page-offline .btn:hover {
    background: var(--navy-dark);
}

.page-offline .icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--navy);
}

/* ============================================
   Loading Animation
   ============================================ */
#ftco-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ftco-loader .circular {
    animation: loader-rotate 2s linear infinite;
    height: 50px;
    width: 50px;
}

#ftco-loader .path {
    stroke: var(--orange);
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes loader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -125px;
    }
}

/* ============================================
   Hero Section Enhancements
   ============================================ */

/* Enhanced Gradient Overlay on Hero Images */
.slider-item .overlay {
    background: linear-gradient(
        90deg, 
        rgba(15, 41, 66, 0.95) 0%, 
        rgba(26, 54, 93, 0.75) 40%,
        rgba(26, 54, 93, 0.5) 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 1;
}

/* Add a subtle vignette effect to edges */
.home-slider .slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(15, 41, 66, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Home Slider Navigation Arrows - Positioned on Left & Right Edges */
.home-slider {
    position: relative;
}

.owl-carousel.home-slider .owl-nav {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.owl-carousel.home-slider .owl-nav .owl-prev,
.owl-carousel.home-slider .owl-nav .owl-next {
    pointer-events: auto;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    margin: 0 !important;
    background: rgba(26, 54, 93, 0.6) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
}

.owl-carousel.home-slider .owl-nav .owl-prev {
    left: 30px !important;
    right: auto !important;
    margin-left: 0 !important;
}

.owl-carousel.home-slider .owl-nav .owl-next {
    right: 30px !important;
    left: auto !important;
    margin-right: 0 !important;
}

.owl-carousel.home-slider .owl-nav .owl-prev:hover,
.owl-carousel.home-slider .owl-nav .owl-next:hover {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

.owl-carousel.home-slider:hover .owl-nav .owl-prev {
    left: 30px !important;
    margin-left: 0 !important;
}

.owl-carousel.home-slider:hover .owl-nav .owl-next {
    right: 30px !important;
    margin-right: 0 !important;
}

.home-slider .owl-nav button i {
    line-height: 1;
}

/* Home Slider Dots */
.home-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.home-slider .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4) !important;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home-slider .owl-dots .owl-dot.active {
    background: var(--orange) !important;
    transform: scale(1.2);
}

.home-slider .owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 991px) {
    .owl-carousel.home-slider .owl-nav .owl-prev,
    .owl-carousel.home-slider .owl-nav .owl-next {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem;
    }
    
    .owl-carousel.home-slider .owl-nav .owl-prev,
    .owl-carousel.home-slider:hover .owl-nav .owl-prev {
        left: 15px !important;
        margin-left: 0 !important;
    }
    
    .owl-carousel.home-slider .owl-nav .owl-next,
    .owl-carousel.home-slider:hover .owl-nav .owl-next {
        right: 15px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .owl-carousel.home-slider .owl-nav .owl-prev,
    .owl-carousel.home-slider .owl-nav .owl-next {
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem;
    }
    
    .owl-carousel.home-slider .owl-nav .owl-prev,
    .owl-carousel.home-slider:hover .owl-nav .owl-prev {
        left: 10px !important;
        margin-left: 0 !important;
    }
    
    .owl-carousel.home-slider .owl-nav .owl-next,
    .owl-carousel.home-slider:hover .owl-nav .owl-next {
        right: 10px !important;
        margin-right: 0 !important;
    }
    
    .home-slider .owl-dots {
        bottom: 20px;
    }
}

.hero-wrap-bg1,
.intro-bg1 {
    background-image: url("../images/bg-1.jpg");
}

.hero-wrap-bg1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(26, 54, 93, 0.85) 0%, 
        rgba(249, 115, 22, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-wrap-bg1 .container {
    position: relative;
    z-index: 2;
}

.bg-image-about,
.consult-bg-about {
    background-image: url("../images/about.jpg");
}

/* ============================================
   Business Finances CTA Section - Enhanced
   ============================================ */
.ftco-intro {
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.ftco-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.ftco-intro::after {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--orange) 100%) !important;
    opacity: 0.95 !important;
}

.ftco-intro h2 {
    color: #fff !important;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ftco-intro .btn-white {
    background: #fff;
    color: var(--navy) !important;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
}

.ftco-intro .btn-white:hover {
    background: var(--orange);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

@media (max-width: 991px) {
    .ftco-intro {
        padding: 60px 0 !important;
        text-align: center;
    }
    
    .ftco-intro h2 {
        font-size: 1.75rem;
        margin-bottom: 25px !important;
    }
}

/* Improved Hero Slider - BIGGER */
.owl-carousel.home-slider {
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
}

.owl-carousel.home-slider .slider-item {
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
}

.owl-carousel.home-slider .slider-item .slider-text {
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
}

/* Hero Slider Backgrounds - Different for each slide */
.home-slider-item-bg1 {
    background-image: url("../images/bg-1.jpg");
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-slider-item-bg2 {
    background-image: url("../images/about.jpg");
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-slider-item-bg3 {
    background-image: url("../images/bg-1.jpg");
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.home-slider-item-bg3 .overlay {
    background: linear-gradient(
        90deg, 
        rgba(15, 41, 66, 0.95) 0%, 
        rgba(26, 54, 93, 0.75) 40%,
        rgba(26, 54, 93, 0.5) 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.owl-carousel.home-slider .slider-item .slider-text h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.owl-carousel.home-slider .slider-item .slider-text .subheading {
    font-size: 15px;
    background: rgba(249, 115, 22, 0.9);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.owl-carousel.home-slider .slider-item .slider-text .hero-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
    .owl-carousel.home-slider,
    .owl-carousel.home-slider .slider-item,
    .owl-carousel.home-slider .slider-item .slider-text,
    .home-slider-item-bg1,
    .home-slider-item-bg2,
    .home-slider-item-bg3 {
        height: 70vh;
        min-height: 500px;
        max-height: 600px;
    }
    
    .owl-carousel.home-slider .slider-item .slider-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .owl-carousel.home-slider,
    .owl-carousel.home-slider .slider-item,
    .owl-carousel.home-slider .slider-item .slider-text,
    .home-slider-item-bg1,
    .home-slider-item-bg2,
    .home-slider-item-bg3 {
        height: 60vh;
        min-height: 450px;
        max-height: 550px;
    }
    
    .owl-carousel.home-slider .slider-item .slider-text h1 {
        font-size: 28px;
    }
    
    .owl-carousel.home-slider .slider-item .slider-text .subheading {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ============================================
   Consultation Section - Complete Redesign
   ============================================ */
.consultation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2942 0%, #1a365d 50%, #2d4a73 100%);
    position: relative;
}

.consultation-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, #e86b0f 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Card - Centered */
.consultation-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-form-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.consultation-intro {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.consultation-form .form-control,
.consultation-form .form-select {
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background: #fff;
}

.consultation-form .form-control::placeholder {
    color: #94a3b8;
}

.consultation-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.consultation-form .btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, #e86b0f 100%);
    border: none;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.consultation-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.form-security-note {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 13px;
    color: #64748b;
    text-align: center;
}

.form-security-note i {
    color: #22c55e;
}

@media (max-width: 991px) {
    .consultation-form-card {
        padding: 40px 30px;
    }
    
    .consultation-form-card h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .consultation-section {
        padding: 60px 0;
    }
    
    .consultation-form-card {
        padding: 30px 20px;
    }
    
    .consultation-form-card h3 {
        font-size: 1.5rem;
    }
}

.video-responsive {
    width: 100%;
    height: auto;
}

.about-image-rounded {
    border-radius: 10px;
}

.testimonial-user-person-1 {
    background-image: url("../images/person-1.png");
}

.testimonial-user-person-2 {
    background-image: url("../images/person-2.jpg");
}

.testimonial-user-person-3 {
    background-image: url("../images/person-3.png");
}

.testimonial-user-person-4 {
    background-image: url("../images/person-4.png");
}

.testimonial-user-person-5 {
    background-image: url("../images/person-5.jpg");
}

.recent-post-thumb {
    flex: 0 0 25%;
}

.blog-cta-highlight {
    background: #fff3e8;
    border-radius: 5px;
}

.map-embed {
    border: 0;
}

.team-profile-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 991px) {
    .ftco-section {
        padding: 60px 0;
    }

    .blog-header {
        padding: 100px 0 40px;
    }
}

@media (max-width: 767px) {
    .ftco-section {
        padding: 40px 0;
    }

    .blog-header {
        padding: 80px 0 30px;
    }

    .appointment-form .form-control {
        margin-bottom: 15px;
    }

    .site-footer {
        padding-top: 4rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .bg-top .col-lg-8 {
        display: none !important;
    }

    .appointment-form .input-group-text {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .blog-sidebar {
        margin-top: 30px;
    }

    .author-box {
        flex-direction: column;
    }

    .author-image {
        margin-bottom: 15px;
    }

    #industries-we-serve {
        padding: 3rem 0;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper i {
        font-size: 1.5rem;
    }

    .industry-card .card-body {
        padding: 1.25rem !important;
    }

    .page-offline .offline-container {
        padding: 20px;
    }

    .page-404 .error-code {
        font-size: 6rem;
    }
}
/* ============================================
   Homepage Enhancement Styles
   ============================================ */

/* Hero Section Enhancements */
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

/* Trust Indicators Bar */
.trust-indicators-bar {
    background: var(--white);
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
}

.trust-item i {
    font-size: 20px;
    color: var(--orange);
}

/* Subheading Small */
.subheading-small {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.subheading-small::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin-top: 10px;
}

.text-center .subheading-small::after {
    margin-left: auto;
    margin-right: auto;
}

.subheading-light {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* ============================================
   What We Offer & Success Story Section
   ============================================ */
.wrap-about-border {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.wrap-about-border .img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.wrap-about-border .text {
    padding: 35px;
}

.wrap-about-border .text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.wrap-about-border .text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange);
}

.wrap-about-border .text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

/* Success Metrics in About Section */
.success-metrics {
    margin-top: 25px;
    margin-bottom: 10px;
}

.success-metrics .metric-item {
    padding: 20px 15px;
    background: linear-gradient(135deg, var(--orange) 0%, #e86b0f 100%);
    border-radius: 12px;
}

.success-metrics .metric-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
}

.success-metrics .metric-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Cards - Refined */
.services {
    padding: 30px 20px;
    margin-bottom: 25px;
    border-radius: 15px;
    background: #ffffff !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.services::after {
    display: none !important;
}

.services:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
    border-color: var(--orange);
    background: #ffffff !important;
}

.services:hover .icon {
    background: linear-gradient(135deg, var(--orange) 0%, #e86b0f 100%);
    transform: scale(1.1);
}

.services:hover .icon i {
    color: #fff;
}

.services.active {
    border-color: var(--orange);
    border-width: 2px;
    background: #ffffff !important;
}

.services.active h3,
.services:hover h3 {
    color: var(--navy) !important;
}

.services.active p,
.services:hover p {
    color: var(--text-gray) !important;
}

.services .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.services .icon i {
    font-size: 1.6rem;
    color: var(--orange);
    transition: color 0.3s ease;
}

.services h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.services p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Services 2 Section Overrides (Best Services)
   ============================================ */
.services-2 .icon {
    margin-bottom: 25px;
}

.services-2 .icon i {
    font-size: 50px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.services-2 {
    transition: all 0.3s ease;
}

.services-2:hover {
    background: #fff !important; /* Override dark blue */
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15) !important;
    transform: translateY(-5px);
    z-index: 10;
    border-color: transparent;
}

.services-2:hover .icon i {
    color: var(--orange); /* Change icon to orange on hover instead of white */
    transform: scale(1.1);
}

.services-2:hover .media-body h3 {
    color: var(--navy) !important; /* Keep text dark */
}

.services-2:hover .media-body,
.services-2:hover .media-body p {
    color: var(--text-gray) !important; /* Keep text dark */
}

/* ============================================
   Statistics Counter Section - Unique Design
   ============================================ */
.ftco-counter {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ftco-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
}

.ftco-counter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.ftco-counter .container {
    position: relative;
    z-index: 2;
}

.ftco-counter .heading-section h2,
.ftco-counter .heading-section p {
    color: var(--white);
}

.ftco-counter .subheading-small {
    color: var(--orange);
}

.ftco-counter .subheading-small::after {
    background: var(--orange);
    margin-left: auto;
    margin-right: auto;
}

.counter-wrap {
    margin-bottom: 20px;
}

.counter-wrap .block-18 {
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.counter-wrap .block-18:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.counter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange) 0%, #e86b0f 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.counter-icon i {
    font-size: 2rem;
    color: var(--white);
}

.counter-wrap .number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff !important;
    display: block;
    margin-top: 25px;
    line-height: 1;
}

.counter-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-choose-card .icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 50%;
}

.why-choose-card .icon-circle i {
    font-size: 1.8rem;
    color: var(--white);
}

.why-choose-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Form Note */
.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Industries Section */
.industries-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    padding: 80px 0;
}

.industries-section .industry-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industries-section .industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(26, 54, 93, 0.15);
    background: var(--navy);
    border-color: transparent;
}

.industries-section .industry-card:hover h5 {
    color: #fff;
}

.industries-section .industry-card:hover .industry-icon {
    background: var(--orange);
}

.industries-section .industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.industries-section .industry-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.industries-section .industry-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-icon {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 40px;
    text-align: center;
}

.blog-card-icon i {
    font-size: 3rem;
    color: var(--white);
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-read-more:hover {
    color: var(--orange);
}

.blog-read-more i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

/* Floating shapes for CTA */
.cta-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.cta-floating-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    top: -100px;
    left: -80px;
    animation: floatCTA 8s ease-in-out infinite;
}

.cta-floating-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.5));
    bottom: -80px;
    right: -40px;
    animation: floatCTA 10s ease-in-out infinite reverse;
}

.cta-floating-shapes .shape-3 {
    width: 100px;
    height: 100px;
    background: var(--orange);
    top: 50%;
    right: 20%;
    animation: floatCTA 6s ease-in-out infinite;
}

@keyframes floatCTA {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(10deg); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* CTA Badge */
.cta-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--orange);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.cta-badge i {
    color: #fbbf24;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* CTA Trust Notes */
.cta-trust-note {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.cta-trust-note span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-trust-note span i {
    color: #4ade80;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-buttons .btn-primary {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.cta-buttons .btn-primary:hover {
    background: #e86b0f !important;
    border-color: #e86b0f !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

.cta-buttons .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-buttons .btn-outline-light {
    font-weight: 700;
}

/* ============================================
   Case Studies Section - Premium Design
   ============================================ */
.case-studies-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding-bottom: 80px !important;
}

.case-studies-section .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    background: var(--white);
}

.case-studies-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.case-studies-section .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.case-studies-section .card:hover::before {
    transform: scaleX(1);
}

.case-studies-section .card .card-body {
    padding: 35px 30px;
}

.case-studies-section .card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.2);
    transition: all 0.3s ease;
}

.case-studies-section .card:hover .icon {
    background: linear-gradient(135deg, var(--orange) 0%, #e86b0f 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.case-studies-section .card .icon span {
    font-size: 1.6rem;
    color: var(--white);
}

.case-studies-section .card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.4;
}

.ftco-section.ftco-no-pb .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.ftco-section.ftco-no-pb .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ftco-section.ftco-no-pb .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.ftco-section.ftco-no-pb .card:hover::before {
    transform: scaleX(1);
}

.ftco-section.ftco-no-pb .card .card-body {
    padding: 35px 30px;
}

.ftco-section.ftco-no-pb .card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.2);
    transition: all 0.3s ease;
}

.ftco-section.ftco-no-pb .card:hover .icon {
    background: linear-gradient(135deg, var(--orange) 0%, #e86b0f 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.ftco-section.ftco-no-pb .card .icon span {
    font-size: 1.6rem;
    color: var(--white);
}

.ftco-section.ftco-no-pb .card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.4;
}

.ftco-section.ftco-no-pb .card .card-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ftco-section.ftco-no-pb .card .btn-primary {
    background: transparent !important;
    border: 2px solid var(--navy) !important;
    color: var(--navy) !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.ftco-section.ftco-no-pb .card .btn-primary:hover {
    background: var(--navy) !important;
    color: var(--white) !important;
}

.ftco-section.ftco-no-pb .card .collapse p {
    font-size: 13px;
    color: var(--text-gray);
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
    line-height: 1.7;
}

/* ============================================
   Testimonials Section - Modern Design
   ============================================ */
.testimony-section {
    padding: 100px 0;
}

.testimony-section.bg-light {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.carousel-testimony .item {
    padding: 15px;
}

.testimony-wrap {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimony-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimony-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--navy) 100%);
    border-radius: 2px;
}

.testimony-wrap .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 4px solid var(--light-gray);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimony-wrap .text {
    padding-left: 25px;
}

.testimony-wrap .quote {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--orange) 0%, #e86b0f 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.testimony-wrap .quote i {
    color: var(--white);
    font-size: 18px;
}

.testimony-wrap p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimony-wrap .name {
    font-weight: 800;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimony-wrap .position {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 991px) {
    .hero-cta-group {
        justify-content: center;
    }
    
    .trust-item {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
    }
    
    .testimony-wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .testimony-wrap .text {
        padding-left: 0;
        padding-top: 20px;
    }
    
    .testimony-wrap .user-img {
        margin: 0 auto;
    }
    
    .testimony-wrap .quote {
        margin: 0 auto 15px;
    }
    
    .cta-trust-note {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-floating-shapes .shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .cta-floating-shapes .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .cta-floating-shapes .shape-3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-description {
        font-size: 1rem;
    }
    
    .counter-wrap .number {
        font-size: 2.5rem;
    }
    
    .why-choose-card {
        padding: 25px 20px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .ftco-section.ftco-no-pb .card .card-body {
        padding: 25px 20px;
    }
    
    .testimony-wrap {
        padding: 25px;
    }
    
    .subheading-small::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Header */
.blog-header {
    padding: 120px 0 80px;
    position: relative;
    background-image: url('../images/bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 54, 93, 0.95) 0%, 
        rgba(15, 41, 66, 0.9) 50%,
        rgba(249, 115, 22, 0.6) 100%);
    z-index: 1;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-header__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-header__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.blog-header .breadcrumb {
    margin-bottom: 0;
}

.blog-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-header .breadcrumb-item a:hover {
    color: var(--orange);
}

.blog-header .breadcrumb-item.active {
    color: var(--white);
}

.blog-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Blog Filter Buttons */
.blog-filter {
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
    border-bottom: 1px solid #e9ecef;
}

.blog-filter__buttons {
    gap: 12px;
}

.blog-filter__btn {
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    background: var(--white);
    color: var(--navy);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-filter__btn i {
    font-size: 0.9rem;
}

.blog-filter__btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.blog-filter__btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Blog List Section */
.blog-list {
    padding: 60px 0 80px;
    background: var(--white);
}

/* Blog Card (Icon-Based Design) */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-card__icon-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card__icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    opacity: 0.95;
    z-index: 1;
}

.blog-card__icon-wrapper--tax::before {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a8f 100%);
}

.blog-card__icon-wrapper--audit::before {
    background: linear-gradient(135deg, #0f2942 0%, #1a365d 100%);
}

.blog-card__icon-wrapper--reporting::before {
    background: linear-gradient(135deg, #2d4a73 0%, #3a5f99 100%);
}

.blog-card__icon-wrapper--consulting::before {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
}

.blog-card__icon-wrapper--payroll::before {
    background: linear-gradient(135deg, #162d4a 0%, #1e4066 100%);
}

.blog-card__icon-wrapper--industry::before {
    background: linear-gradient(135deg, #0f2942 0%, #2d4a73 100%);
}

.blog-card__icon {
    font-size: 5rem;
    color: var(--orange);
    position: relative;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-card__icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.blog-card__content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    background: var(--navy);
    color: var(--white);
}

.blog-card__category--tax {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a8f 100%);
}

.blog-card__category--audit {
    background: linear-gradient(135deg, #0f2942 0%, #1a365d 100%);
}

.blog-card__category--reporting {
    background: linear-gradient(135deg, #2d4a73 0%, #3a5f99 100%);
}

.blog-card__category--consulting {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
}

.blog-card__category--payroll {
    background: linear-gradient(135deg, #162d4a 0%, #1e4066 100%);
}

.blog-card__category--industry {
    background: linear-gradient(135deg, #0f2942 0%, #2d4a73 100%);
}

.blog-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card__title a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: var(--orange);
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.blog-card__meta span {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card__meta i {
    color: var(--orange);
    font-size: 0.8rem;
}

.blog-card__excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card__link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-card__link:hover {
    color: var(--navy);
    gap: 12px;
}

.blog-card__link i {
    transition: transform 0.3s ease;
}

.blog-card__link:hover i {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 40px;
}

.blog-pagination .pagination {
    gap: 8px;
}

.blog-pagination .page-link {
    color: var(--navy);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.blog-pagination .page-item.active .page-link {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.blog-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

/* Blog Sidebar CTA / Back Button */
.blog-sidebar__cta {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    padding: 0;
    overflow: hidden;
}

.blog-sidebar__back-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.blog-sidebar__back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--orange);
    transition: width 0.3s ease;
    z-index: 0;
}

.blog-sidebar__back-btn:hover::before {
    width: 100%;
}

.blog-sidebar__back-btn i,
.blog-sidebar__back-btn span {
    position: relative;
    z-index: 1;
}

.blog-sidebar__back-btn:hover {
    color: var(--white);
    transform: translateX(-3px);
}

.blog-sidebar__back-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.blog-sidebar__back-btn:hover i {
    transform: translateX(-5px);
}

.blog-sidebar__widget {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-sidebar__widget:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.blog-sidebar__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--orange);
    position: relative;
}

.blog-sidebar__title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--navy);
}

/* Search Form */
.blog-sidebar__search {
    padding: 25px;
}

.blog-search-form__wrapper {
    position: relative;
    display: flex;
}

.blog-search-form__input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-search-form__input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.blog-search-form__button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-search-form__button:hover {
    background: var(--navy);
    transform: translateY(-50%) scale(1.05);
}

/* Categories */
.blog-sidebar__categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar__categories li {
    margin-bottom: 12px;
}

.blog-sidebar__categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    gap: 10px;
}

.blog-sidebar__categories a i {
    color: var(--orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.blog-sidebar__categories a:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.blog-sidebar__categories a:hover i {
    color: var(--orange);
    transform: scale(1.1);
}

.blog-sidebar__count {
    background: var(--white);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-sidebar__categories a:hover .blog-sidebar__count {
    background: var(--orange);
    color: var(--white);
}

/* Recent Posts */
.blog-sidebar__recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-sidebar__recent-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-sidebar__recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-sidebar__recent-item:hover {
    transform: translateX(5px);
}

.blog-sidebar__recent-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-sidebar__recent-item:hover .blog-sidebar__recent-icon {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.3);
}

.blog-sidebar__recent-icon i {
    font-size: 1.5rem;
    color: var(--orange);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.blog-sidebar__recent-item:hover .blog-sidebar__recent-icon i {
    transform: scale(1.1) rotate(5deg);
}

.blog-sidebar__recent-icon--tax {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a8f 100%);
}

.blog-sidebar__recent-icon--reporting {
    background: linear-gradient(135deg, #2d4a73 0%, #3a5f99 100%);
}

.blog-sidebar__recent-icon--payroll {
    background: linear-gradient(135deg, #162d4a 0%, #1e4066 100%);
}

.blog-sidebar__recent-icon--industry {
    background: linear-gradient(135deg, #0f2942 0%, #2d4a73 100%);
}

.blog-sidebar__recent-content {
    flex-grow: 1;
}

.blog-sidebar__recent-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.blog-sidebar__recent-title a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar__recent-title a:hover {
    color: var(--orange);
}

.blog-sidebar__recent-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
}

/* Tags */
.blog-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-sidebar__tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    color: var(--navy);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-sidebar__tag:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Newsletter */
.blog-sidebar__newsletter {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    color: var(--white);
}

.blog-sidebar__newsletter .blog-sidebar__title {
    color: var(--white);
    border-bottom-color: var(--orange);
}

.blog-sidebar__newsletter .blog-sidebar__title::after {
    background: var(--white);
}

.blog-sidebar__newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-newsletter-form__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-newsletter-form__input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.blog-newsletter-form__input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.15);
}

.blog-newsletter-form__button {
    width: 100%;
    padding: 14px 20px;
    border: none;
    background: var(--orange);
    color: var(--white);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-newsletter-form__button:hover {
    background: #e86b0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* Responsive Blog Styles */
@media (max-width: 991px) {
    .blog-header__title {
        font-size: 2.5rem;
    }
    
    .blog-header__subtitle {
        font-size: 1rem;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .blog-filter__btn {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

@media (max-width: 767px) {
    .blog-header {
        padding: 100px 0 60px;
    }
    
    .blog-header__title {
        font-size: 2rem;
    }
    
    .blog-filter {
        padding: 20px 0;
    }
    
    .blog-filter__buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .blog-filter__btn {
        white-space: nowrap;
    }
    
    .blog-card__icon {
        font-size: 3.5rem;
    }
    
    .blog-card__content {
        padding: 20px;
    }
    
    .blog-card__title {
        font-size: 1.15rem;
    }
}

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */

/* Blog Detail Header */
.blog-detail-header {
    padding: 100px 0 60px;
    position: relative;
}

.blog-detail-header__category {
    display: inline-block;
    padding: 10px 24px;
    background: var(--orange);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.blog-detail-header__category i {
    margin-right: 8px;
}

.blog-detail-header__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin: 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-detail-header__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.blog-detail-header__meta span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-header__meta i {
    color: var(--orange);
    font-size: 0.9rem;
}

.blog-detail-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-detail-header .breadcrumb-item a:hover {
    color: var(--orange);
}

.blog-detail-header .breadcrumb-item.active {
    color: var(--white);
}

.blog-detail-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Blog Detail Article Header (below hero) */
.blog-detail-article-header {
    background: var(--white);
    padding: 50px 0;
}

.blog-detail-article-header .blog-detail-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 15px 0;
    text-shadow: none;
}

.blog-detail-article-header .blog-detail-header__meta span {
    color: #666;
}

.blog-detail-article-header .blog-detail-header__meta i {
    color: var(--orange);
}

/* Blog Detail Content */
.blog-detail-content {
    padding: 60px 0 80px;
    background: var(--white);
}

/* Featured Icon Hero */
.blog-detail-icon-hero {
    margin-bottom: 40px;
}

.blog-detail-icon-hero__gradient {
    height: 250px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-detail-icon-hero__gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(249, 115, 22, 0.3) 0%, 
        rgba(249, 115, 22, 0.15) 50%,
        rgba(249, 115, 22, 0) 100%);
    pointer-events: none;
}

.blog-detail-icon-hero__gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.blog-detail-icon-hero__icon {
    font-size: 6rem;
    color: var(--orange);
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

/* Article Wrapper */
.blog-detail-article {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

/* Table of Contents */
.blog-toc {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--orange);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 35px;
}

.blog-toc__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-toc__title i {
    color: var(--orange);
}

.blog-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-toc__list li {
    margin-bottom: 10px;
}

.blog-toc__list a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.blog-toc__list a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.blog-toc__list a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.blog-toc__list a:hover::before {
    transform: translateX(-5px);
}

/* Blog Detail Intro */
.blog-detail-intro {
    margin-bottom: 35px;
}

.blog-detail-intro .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Article Typography */
.blog-detail-article p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 20px;
}

.blog-detail-article h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--orange);
}

.blog-detail-article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-article ul,
.blog-detail-article ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.blog-detail-article li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.blog-detail-article blockquote {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    border-left: 5px solid var(--orange);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 12px;
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.2);
}

.blog-detail-article strong {
    font-weight: 700;
    color: var(--navy);
}

/* Tags */
.blog-detail-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.blog-detail-tags h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-detail-tags h4 i {
    color: var(--orange);
}

.blog-detail-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-detail-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #f8f9fa;
    color: var(--navy);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-tag:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Share Buttons */
.blog-detail-share {
    margin-top: 30px;
}

.blog-detail-share h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.blog-detail-share__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-detail-share__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.blog-detail-share__btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.blog-detail-share__btn--facebook {
    background: #3b5998;
}

.blog-detail-share__btn--twitter {
    background: #1da1f2;
}

.blog-detail-share__btn--linkedin {
    background: #0077b5;
}

.blog-detail-share__btn--email {
    background: var(--orange);
}

/* Author Box */
.blog-detail-author {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    border-radius: 16px;
    padding: 35px;
    margin-top: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.25);
}

.blog-detail-author__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.blog-detail-author__avatar i {
    font-size: 3rem;
    color: var(--white);
}

.blog-detail-author__info {
    flex-grow: 1;
}

.blog-detail-author__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.blog-detail-author__title {
    font-size: 1rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-detail-author__bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Comments Section */
.blog-detail-comments {
    margin-top: 50px;
}

.blog-detail-comments__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-detail-comments__title i {
    color: var(--orange);
}

.blog-detail-comment {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.blog-detail-comment:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-detail-comment__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-detail-comment__avatar i {
    font-size: 1.5rem;
    color: var(--orange);
}

.blog-detail-comment__content {
    flex-grow: 1;
}

.blog-detail-comment__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-detail-comment__author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.blog-detail-comment__date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.blog-detail-comment__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.blog-detail-comment__reply {
    padding: 8px 18px;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-comment__reply:hover {
    background: var(--navy);
    color: var(--white);
}

/* Comment Form */
.blog-detail-comment-form {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    margin-top: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.blog-detail-comment-form__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 25px;
}

.blog-comment-form__group {
    margin-bottom: 20px;
}

.blog-comment-form__group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.blog-comment-form__input,
.blog-comment-form__textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--navy);
    transition: all 0.3s ease;
}

.blog-comment-form__input:focus,
.blog-comment-form__textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.blog-comment-form__textarea {
    resize: vertical;
    min-height: 150px;
}

.blog-comment-form__button {
    padding: 14px 35px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blog-comment-form__button:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.3);
}

/* Related Posts */
.blog-detail-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #e9ecef;
}

.blog-detail-related__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 30px;
}

.blog-related-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.blog-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-related-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blog-related-card__icon i {
    font-size: 2.5rem;
    color: var(--orange);
}

.blog-related-card__content {
    flex-grow: 1;
}

.blog-related-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-related-card__title a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-related-card__title a:hover {
    color: var(--orange);
}

.blog-related-card__date {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-related-card__date i {
    color: var(--orange);
}

/* Responsive Blog Detail Styles */
@media (max-width: 991px) {
    .blog-detail-header__title {
        font-size: 2.2rem;
    }
    
    .blog-detail-article {
        padding: 30px;
    }
    
    .blog-detail-author {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .blog-detail-header {
        padding: 80px 0 40px;
    }
    
    .blog-detail-header__title {
        font-size: 1.8rem;
    }
    
    .blog-detail-header__meta {
        font-size: 0.85rem;
        gap: 15px;
    }
    
    .blog-detail-icon-hero__gradient {
        height: 180px;
    }
    
    .blog-detail-icon-hero__icon {
        font-size: 4rem;
    }
    
    .blog-detail-article {
        padding: 25px;
    }
    
    .blog-toc {
        padding: 20px;
    }
    
    .blog-detail-article h2 {
        font-size: 1.5rem;
    }
    
    .blog-detail-comment {
        flex-direction: column;
    }
    
    .blog-detail-comment-form {
        padding: 25px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Header */
.contact-header {
    padding: 120px 0 80px;
    position: relative;
    background-image: url('../images/bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 54, 93, 0.95) 0%, 
        rgba(15, 41, 66, 0.9) 50%,
        rgba(249, 115, 22, 0.6) 100%);
    z-index: 1;
}

.contact-header .container {
    position: relative;
    z-index: 2;
}

.contact-header__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-header__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.contact-header .breadcrumb {
    margin-bottom: 0;
}

.contact-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-header .breadcrumb-item a:hover {
    color: var(--orange);
}

.contact-header .breadcrumb-item.active {
    color: var(--white);
}

.contact-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Cards Section */
.contact-cards {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card__icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card__icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.contact-card__icon-wrapper--location {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.contact-card__icon-wrapper--phone {
    background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
}

.contact-card__icon-wrapper--email {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #2d4a73 100%);
}

.contact-card__icon-wrapper--whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-card__icon {
    font-size: 2.2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.contact-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

.contact-card__content {
    text-align: center;
    flex-grow: 1;
    margin-bottom: 25px;
}

.contact-card__content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-card__content a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card__content a:hover {
    color: var(--orange);
}

.contact-card__hours {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
}

.contact-card__link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.contact-card__link:hover {
    color: var(--navy);
    gap: 12px;
}

.contact-card__link i {
    transition: transform 0.3s ease;
}

.contact-card__link:hover i {
    transform: translateX(4px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(26, 54, 93, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
    border-image-slice: 1;
    position: relative;
    z-index: 1;
}

.contact-form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
}

.contact-form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.contact-form-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form label i {
    color: var(--orange);
    font-size: 1.1rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form .form-control:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.contact-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1), 0 4px 12px rgba(26, 54, 93, 0.08);
    transform: translateY(-2px);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form select.form-control {
    cursor: pointer;
}

.contact-form .btn-primary {
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25);
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 100px;
}

.contact-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-box__icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-info-box__icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info-box p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-hours-list li:last-child {
    border-bottom: none;
}

.contact-hours-list .day {
    font-weight: 600;
    color: var(--navy);
}

.contact-hours-list .time {
    color: var(--text-gray);
}

.contact-quick-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-quick-buttons .btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-success {
    border: 2px solid #25d366;
    color: #25d366;
    background: transparent;
}

.btn-outline-success:hover {
    background: #25d366;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.contact-social-links a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-social-links a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.contact-social-links a i {
    font-size: 1.3rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-header__title {
        font-size: 2.5rem;
    }
    
    .contact-header__subtitle {
        font-size: 1rem;
    }
    
    .contact-cards {
        padding: 60px 0;
    }
    
    .contact-card {
        margin-bottom: 20px;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .contact-form-header h2 {
        font-size: 2rem;
    }
    
    .contact-info-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact-header {
        padding: 80px 0 60px;
    }
    
    .contact-header__title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-quick-buttons {
        flex-direction: column;
    }
    
    .contact-quick-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

/* Booking Header */
.booking-header {
    padding: 120px 0 80px;
    position: relative;
    background-image: url('../images/bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 54, 93, 0.95) 0%, 
        rgba(15, 41, 66, 0.9) 50%,
        rgba(249, 115, 22, 0.6) 100%);
    z-index: 1;
}

.booking-header .container {
    position: relative;
    z-index: 2;
}

.booking-header__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.booking-header__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.booking-header .breadcrumb {
    margin-bottom: 0;
    padding: 0;
}

.booking-header .breadcrumb-item {
    font-size: 1rem;
}

.booking-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.booking-header .breadcrumb-item a:hover {
    color: var(--orange);
}

.booking-header .breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

.booking-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    font-size: 1.2rem;
    padding: 0 10px;
}

/* Service Selection Section */
.booking-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.service-select-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    height: 100%;
}

.service-select-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.service-select-card.active {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, var(--white) 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.25);
}

.service-select-card.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.service-select-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-select-card:hover .service-select-card__icon,
.service-select-card.active .service-select-card__icon {
    background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-select-card__icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-select-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.service-select-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-select-card__badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Booking Form Section */
.booking-form-section {
    padding: 100px 0;
    background: var(--white);
}

.booking-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(26, 54, 93, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.booking-form-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
    border-image-slice: 1;
    position: relative;
    z-index: 1;
}

.booking-form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
}

.booking-form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.booking-form-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 20px;
}

.booking-form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
    z-index: 1;
}

.booking-form-section-title i {
    font-size: 1.5rem;
    color: var(--orange);
}

.booking-form-section-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.booking-form .form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.booking-form label {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.booking-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.booking-form .form-control:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.booking-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1), 0 4px 12px rgba(26, 54, 93, 0.08);
    transform: translateY(-2px);
}

.booking-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.booking-form select.form-control {
    cursor: pointer;
}

.booking-form-actions {
    margin-top: 40px;
    text-align: center;
}

.booking-form-actions .btn {
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.booking-form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.booking-form-actions .btn:hover::before {
    left: 100%;
}

.booking-form-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.booking-form-note {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-form-note i {
    color: var(--orange);
}

/* Booking Info Sidebar */
.booking-info-sidebar {
    position: sticky;
    top: 100px;
}

.booking-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.booking-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-info-box__icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.booking-info-box__icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.booking-info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.booking-info-box p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.booking-expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-expect-list li {
    padding: 12px 0;
    color: var(--text-gray);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.booking-expect-list li i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-badge i {
    font-size: 1.8rem;
    color: var(--orange);
}

.trust-badge span {
    font-weight: 600;
    color: var(--navy);
}

/* Testimonials Section */
.booking-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card__stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card__author {
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.testimonial-card__author strong {
    display: block;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-card__author span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .booking-header__title {
        font-size: 2.5rem;
    }
    
    .booking-header__subtitle {
        font-size: 1rem;
    }
    
    .booking-services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .booking-form-wrapper {
        padding: 35px 25px;
    }
    
    .booking-form-header h2 {
        font-size: 2rem;
    }
    
    .booking-info-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .booking-header {
        padding: 80px 0 60px;
    }
    
    .booking-header__title {
        font-size: 2rem;
    }
    
    .service-select-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .booking-form-wrapper {
        padding: 25px 20px;
    }
    
    .booking-form-header h2 {
        font-size: 1.75rem;
    }
    
    .booking-form-section-title h3 {
        font-size: 1.25rem;
    }
    
    .booking-form-actions .btn {
        width: 100%;
        padding: 18px 30px;
    }
    
    .testimonial-card {
        padding: 30px;
        margin-bottom: 20px;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--orange);
    display: flex;
    align-items: center;
    position: relative;
}

.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--navy);
}

.faq-category h3 i {
    color: var(--orange);
    margin-right: 12px;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-section .accordion-button {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 25px 30px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--orange);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-body {
    padding: 30px;
    background: var(--white);
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    border-top: 1px solid #e9ecef;
}

/* ============================================
   PRIVACY POLICY & TERMS STYLES
   ============================================ */

.content-wrap {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.content-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange) 0%, var(--navy) 100%);
    border-radius: 20px 0 0 20px;
}

.content-wrap h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
    border-image-slice: 1;
    position: relative;
}

.content-wrap h2:first-of-type {
    margin-top: 0;
}

.content-wrap h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60px;
    height: 3px;
    background: var(--navy);
}

.content-wrap h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 35px;
    margin-bottom: 20px;
}

.content-wrap h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-wrap p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-wrap ul,
.content-wrap ol {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-wrap ul li,
.content-wrap ol li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.content-wrap ul li::marker {
    color: var(--orange);
}

.content-wrap ol li::marker {
    color: var(--navy);
    font-weight: 700;
}

.content-wrap strong {
    color: var(--navy);
    font-weight: 700;
}

.content-wrap .text-muted {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
    margin-bottom: 30px;
    display: inline-block;
}

.content-wrap a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-wrap a:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-category h3 {
        font-size: 1.5rem;
    }
    
    .faq-section .accordion-button {
        font-size: 1rem;
        padding: 20px 25px;
    }
    
    .faq-section .accordion-body {
        padding: 25px;
        font-size: 1rem;
    }
    
    .content-wrap {
        padding: 40px 30px;
    }
    
    .content-wrap h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-category {
        margin-bottom: 40px;
    }
    
    .faq-category h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-section .accordion-button {
        font-size: 0.95rem;
        padding: 18px 20px;
    }
    
    .faq-section .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .content-wrap {
        padding: 30px 20px;
    }
    
    .content-wrap h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }
    
    .content-wrap h3 {
        font-size: 1.3rem;
    }
    
    .content-wrap h4 {
        font-size: 1.1rem;
    }
    
    .content-wrap p,
    .content-wrap ul li,
    .content-wrap ol li {
        font-size: 1rem;
    }
}
