/* ============================================
   Modern Homepage Styles
   ============================================ */

/* Global Mobile Fixes */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #616161;
    line-height: 1.6;
}

* {
    box-sizing: border-box;
}

/* Color Variables */
:root {
    --primary-color: #17284c;
    --primary-dark: #0d1626;
    --primary-light: #00a2e2;
    --secondary-color: #17284c;
    --accent-color: #fe8f00;
    --text-dark: #17284c;
    --text-light: #666666;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Header Styles
   ============================================ */

.modern-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1000;
}

.header-top-bar {
    background: #17284c;
    padding: 20px 0;
}

.header-top-bar .container {
    display: flex;
    align-items: center;
}

.header-top-bar .row {
    width: 100%;
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo a {
    background: white;
    padding: 15px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.header-logo .logo-img {
    max-height: 80px;
    width: auto;
    display: block;
}

.header-cta .btn-header-cta {
    background: #fe8f00;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-cta .btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #ff9f1a;
}

.modern-navbar {
    background: #17284c;
    border-bottom: 1px solid var(--border-color);
}

.modern-navbar .container {
    position: relative;
}

.modern-navbar .navbar-header {
    text-align: center;
}

.modern-navbar .navbar-toggle {
    display: none;
}

.modern-navbar .navbar-collapse {
    display: block !important;
    height: auto !important;
}

.modern-navbar .navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.navbar-center {
    float: none;
    text-align: center;
}

.modern-navbar .navbar-nav > li {
    margin: 0 5px;
}

.modern-navbar .navbar-nav > li > a {
    color: white;
    font-weight: 500;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 16px;
    text-transform: none;
}

.modern-navbar .navbar-nav > li > a:hover {
    color: #fe8f00;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    background: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 162, 226, 0.03) 0%, rgba(254, 143, 0, 0.03) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #17284c;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666666;
}

.hero-cta {
    margin-top: 30px;
}

.btn-hero-primary {
    background: #fe8f00;
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #ff9f1a;
    color: white;
    text-decoration: none;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.hero-image-tall {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.hero-image-tall img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Quick Links Section
   ============================================ */

.quick-links-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

.quick-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.quick-link-pill:hover {
    background: #00a2e2;
    color: white;
    border-color: #00a2e2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.quick-link-pill i {
    font-size: 18px;
}

/* ============================================
   Featured Products Section
   ============================================ */

.featured-products-section {
    padding: 60px 15px;
    background: white;
}

.featured-products-section .container {
    padding-left: 30px;
    padding-right: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #00a2e2;
}

.product-card-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: #17284c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-icon i {
    font-size: 30px;
    color: white;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #00a2e2;
}

.product-card-body {
    padding: 30px;
    flex: 1;
}

.product-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
}

.product-meta i {
    color: #fe8f00;
}

.product-card-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-card-footer .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.product-card-footer .btn-outline {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
}

.product-card-footer .btn-outline:hover {
    border-color: #00a2e2;
    color: #00a2e2;
    background: var(--bg-light);
}

.product-card-footer .btn-primary {
    background: #fe8f00;
    border: none;
    color: white;
}

.product-card-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #ff9f1a;
}

.view-all-products {
    margin-top: 40px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Additional Bootstrap button variants */
.btn-outline {
    background: transparent;
    color: #17284c;
    border: 2px solid #17284c;
}

.btn-outline:hover {
    background: #17284c;
    color: white;
    border-color: #17284c;
    text-decoration: none;
}

.btn-default {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-default:hover {
    background: #e9ecef;
    color: #333;
    text-decoration: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.raised {
    box-shadow: var(--shadow-md);
}

.round {
    border-radius: 50px;
}

.btn-250 {
    min-width: 250px;
}

/* Button base class */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    cursor: pointer;
}

.button:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

/* Button variants */
.button-default {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.button-default:hover {
    background: #f8f9fa;
    color: #17284c;
    border-color: #17284c;
}

/* Button modifiers */
.button-block {
    display: block;
    width: 100%;
}

.button-highlight {
    background: #fe8f00;
    color: white !important;
    border-color: #fe8f00;
    font-weight: 600;
}

.button-highlight:hover {
    background: #e57f00;
    color: white !important;
    border-color: #e57f00;
}

.button-primary {
    background: #17284c;
    color: white !important;
    border-color: #17284c;
    font-weight: 600;
}

.button-primary:hover {
    background: #0f1a31;
    color: white !important;
    border-color: #0f1a31;
}

/* ============================================
   Footer Styles
   ============================================ */

.modern-footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column {
    margin-bottom: 30px;
}

.footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #fe8f00;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .header-top-bar .row {
        align-items: center;
    }
    
    .header-logo .logo-img {
        max-height: 60px;
    }
    
    .header-cta .btn-header-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .header-top-bar {
        padding: 15px 0;
    }
    
    .header-top-bar .row {
        flex-direction: column;
        text-align: center;
    }
    
    .header-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .header-logo .logo-img {
        max-height: 60px;
    }
    
    .header-cta {
        width: 100%;
        text-align: center;
    }
    
    .header-cta .btn-header-cta {
        display: inline-flex;
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .modern-navbar .navbar-toggle {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 10px 12px;
        margin: 10px auto;
        display: block;
        float: none;
    }
    
    .modern-navbar .navbar-toggle .icon-bar {
        background-color: white;
        height: 3px;
        border-radius: 2px;
        display: block;
        width: 22px;
        margin-top: 4px;
        transition: all 0.3s ease;
    }

    .modern-navbar .navbar-toggle .icon-bar:first-child {
        margin-top: 0;
    }

    .modern-navbar .navbar-toggle.active {
        background: rgba(255, 255, 255, 0.2);
    }

    .modern-navbar .navbar-toggle:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .modern-navbar .navbar-collapse {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        display: none !important;
        height: auto !important;
    }

    .modern-navbar .navbar-collapse.in {
        display: block !important;
    }

    .modern-navbar .navbar-nav {
        margin: 0;
        padding: 0;
        display: block !important;
        flex-direction: column !important;
    }
    
    .modern-navbar .navbar-nav > li {
        margin: 0;
        width: 100%;
        display: block;
        float: none;
    }
    
    .modern-navbar .navbar-nav > li > a {
        text-align: center;
        padding: 12px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        width: 100%;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn-hero-primary,
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .quick-links-grid {
        gap: 10px;
    }
    
    .quick-link-pill {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .product-card-footer {
        flex-direction: column;
    }
    
    .product-card-footer .btn {
        width: 100%;
    }
    
    .footer-column {
        margin-bottom: 40px;
    }
}

/* ============================================
   Modern Modal Styles
   ============================================ */

.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-body .button,
.modal-body .btn {
    border-radius: 50px !important;
}

.modal-header {
    background: #fe8f00;
    color: white;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    padding: 25px 30px;
}

.modal-header .modal-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.modal-header .close {
    color: white;
    opacity: 0.8;
    font-size: 32px;
    font-weight: 300;
    text-shadow: none;
}

.modal-header .close:hover {
    opacity: 1;
    color: white;
}

.modal-body {
    padding: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.modal-body h4 {
    color: #17284c;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body label {
    color: #17284c;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.modal-body .form-control {
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus {
    border-color: #00a2e2;
    box-shadow: 0 0 0 3px rgba(0, 162, 226, 0.1);
    outline: none;
}

.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 20px 30px;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

.modal-footer .btn {
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-footer .btn-default {
    background: white;
    border: 2px solid #e5e7eb;
    color: #666666;
}

.modal-footer .btn-default:hover {
    background: #f9fafb;
    border-color: #00a2e2;
    color: #00a2e2;
}

.modal-footer .btn-primary {
    background: #fe8f00;
    border: none;
    color: white;
}

.modal-footer .btn-primary:hover {
    background: #ff9f1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 143, 0, 0.3);
}

.modal-backdrop.in {
    opacity: 0.6;
}

/* Force modals to appear on top */
.modal {
    z-index: 999999 !important;
}

.modal-backdrop {
    z-index: 999998 !important;
}

.modal-dialog {
    z-index: 1000000 !important;
}

.modal-content {
    z-index: 1000001 !important;
}

/* Success/Error Icons in Modals */
.modal-body .cta {
    text-align: center;
    padding: 20px 0;
}

.modal-body .cta .heavy {
    color: #17284c;
    font-weight: 700;
}

/* ============================================
   Modern Generic Pages Styles
   ============================================ */

.page-header-modern {
    background: rgba(0, 0, 0, 0.7);
    padding: 50px 0 40px;
    border-bottom: 4px solid #fe8f00;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 15px;
    padding: 12px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
}

.breadcrumb-modern .breadcrumb-item {
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.breadcrumb-modern .breadcrumb-item i {
    font-size: 16px;
}

.breadcrumb-modern .breadcrumb-item:hover {
    color: #fe8f00;
}

.breadcrumb-modern .breadcrumb-separator {
    color: #cccccc;
    font-weight: 300;
}

.breadcrumb-modern .breadcrumb-current {
    color: #17284c;
    font-weight: 400;
}

.page-title-modern {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: none;
}

.content-section-modern {
    padding: 60px 0;
    background: white;
}

.content-article-modern {
    background: white;
}

.content-subtitle-modern {
    font-size: 28px;
    font-weight: 700;
    color: #17284c;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #17284c;
    display: inline-block;
}

.content-body-modern {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
}

.content-body-modern h2,
.content-body-modern h3,
.content-body-modern h4 {
    color: #17284c;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-body-modern h2 {
    font-size: 32px;
}

.content-body-modern h3 {
    font-size: 24px;
}

.content-body-modern h4 {
    font-size: 20px;
}

.content-body-modern p {
    margin-bottom: 20px;
}

.content-body-modern ul,
.content-body-modern ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-body-modern li {
    margin-bottom: 10px;
}

.content-body-modern a {
    color: #00a2e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-body-modern a:hover {
    color: #17284c;
    text-decoration: underline;
}

.content-body-modern blockquote {
    background: #f9fafb;
    border-left: 4px solid #fe8f00;
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
}

.content-body-modern img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.content-body-modern table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.content-body-modern table th,
.content-body-modern table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.content-body-modern table th {
    background: #17284c;
    color: white;
    font-weight: 600;
}

.content-body-modern table tr:nth-child(even) {
    background: #f9fafb;
}

.content-body-modern strong,
.content-body-modern b {
    color: #17284c;
    font-weight: 700;
}

@media (max-width: 767px) {
    .page-header-modern {
        padding: 35px 0 30px;
    }
    
    .breadcrumb-modern {
        font-size: 13px;
        padding: 10px 15px;
        gap: 8px;
    }
    
    .page-title-modern {
        font-size: 32px;
        letter-spacing: -0.3px;
    }
    
    .content-subtitle-modern {
        font-size: 24px;
    }
    
    .content-body-modern {
        font-size: 15px;
    }
}

/* ============================================
   Modern Services Page Styles
   ============================================ */

.services-section-modern {
    padding: 60px 0;
    background: white;
}

.service-card-modern {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00a2e2;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #17284c 0%, #00a2e2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon-modern i {
    font-size: 35px;
    color: white;
}

.service-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #17284c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-title-modern a {
    color: #17284c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title-modern a:hover {
    color: #00a2e2;
}

.service-description-modern {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
    flex: 1;
}

.service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fe8f00;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link-modern:hover {
    color: #17284c;
    gap: 12px;
}

.service-link-modern i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-link-modern:hover i {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .service-card-modern {
        padding: 30px 25px;
    }
    
    .service-title-modern {
        font-size: 22px;
    }
    
    .service-description-modern {
        font-size: 15px;
    }
}

/* ============================================
   Modern Blog Listing Styles
   ============================================ */

.page-subtitle-modern {
    font-size: 18px;
    color: white;
    margin-top: 10px;
    font-weight: 400;
}

.blog-listing-section-modern {
    padding: 60px 0;
    background: white;
}

.blog-filters-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
    justify-content: center;
}

.blog-filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: white;
    border: 2px solid #e5e7eb;
    color: #666666;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-filter-btn:hover {
    background: #17284c;
    border-color: #17284c;
    color: white;
    text-decoration: none;
}

.blog-filter-btn.active {
    background: #fe8f00;
    border-color: #fe8f00;
    color: white;
}

.blog-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.blog-card-col {
    display: flex;
    margin-bottom: 30px;
}

.blog-card-modern {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00a2e2;
}

.blog-card-categories {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-category-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(254, 143, 0, 0.1);
    color: #fe8f00;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blog-category-badge:hover {
    background: #fe8f00;
    color: white;
    text-decoration: none;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-title a {
    color: #17284c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #00a2e2;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-card-meta i {
    color: #fe8f00;
    font-size: 16px;
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #17284c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card-link:hover {
    color: #fe8f00;
    gap: 12px;
    text-decoration: none;
}

.blog-card-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(3px);
}

.blog-pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 30px 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #17284c;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #fe8f00;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 143, 0, 0.3);
}

.pagination-btn.disabled {
    background: #e5e7eb;
    color: #999999;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-info {
    font-size: 15px;
    color: #666666;
    font-weight: 600;
}

@media (max-width: 767px) {
    .blog-filters-modern {
        padding: 20px 15px;
    }
    
    .blog-filter-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .blog-card-modern {
        padding: 25px 20px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-pagination-modern {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Blog Post Page Styles
   ============================================ */

.blog-post-section-modern {
    padding: 60px 0;
    background: var(--bg-white);
}

.blog-post-modern {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.blog-post-categories {
    margin-bottom: 20px;
}

.blog-post-title-modern {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post-meta-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 15px;
}

.blog-meta-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.blog-post-content-modern {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.blog-post-content-modern h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-content-modern h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content-modern h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.blog-post-content-modern p {
    margin-bottom: 20px;
}

.blog-post-content-modern ul,
.blog-post-content-modern ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-post-content-modern li {
    margin-bottom: 10px;
}

.blog-post-content-modern img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.blog-post-content-modern blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
}

.blog-post-content-modern a {
    color: var(--primary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-content-modern a:hover {
    color: var(--accent-color);
}

.blog-post-footer-modern {
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

/* Sidebar Styles */
.blog-sidebar-modern {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 20px;
}

.sidebar-heading-modern {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.recent-posts-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-post-modern {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-post-modern:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sidebar-post-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-title a:hover {
    color: var(--accent-color);
}

.sidebar-post-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.sidebar-post-category {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-category:hover {
    color: var(--accent-color);
}

.sidebar-post-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog-post-modern {
        padding: 30px;
    }
    
    .blog-post-title-modern {
        font-size: 32px;
    }
    
    .blog-sidebar-modern {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-post-modern {
        padding: 20px;
    }
    
    .blog-post-title-modern {
        font-size: 28px;
    }
    
    .blog-post-content-modern h2 {
        font-size: 26px;
    }
    
    .blog-post-content-modern h3 {
        font-size: 22px;
    }
    
    .blog-post-meta-modern {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   Product Details Page Styles
   ============================================ */

.product-details-section-modern {
    padding: 60px 0;
    background: var(--bg-white);
}

.product-detail-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.product-detail-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.product-detail-header {
    background: #17284c;
    color: white;
    padding: 40px;
    text-align: center;
}

.product-price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price-description {
    margin-top: 20px;
    font-size: 15px;
    opacity: 0.95;
}

.turnaround-time-header {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.turnaround-time-header i {
    font-size: 20px;
    color: #fe8f00;
}

.product-detail-actions {
    padding: 30px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.product-detail-actions .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.product-detail-actions .btn-primary:hover {
    background: #e57f00;
    border-color: #e57f00;
}

.product-detail-description {
    padding: 40px;
    border-bottom: 1px solid var(--border-color);
}

.detail-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.product-detail-description p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-detail-meta {
    padding: 30px 40px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.meta-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-content strong {
    font-size: 16px;
    color: var(--primary-color);
}

.meta-content span {
    font-size: 15px;
    color: var(--text-light);
}

.product-detail-documents {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.product-detail-footer {
    padding: 30px 40px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .product-detail-header {
        padding: 30px 20px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .product-detail-description,
    .product-detail-documents,
    .product-detail-footer {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .product-details-section-modern {
        padding: 40px 0;
    }
    
    .product-detail-summary {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .product-detail-header {
        padding: 25px 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .product-detail-actions {
        padding: 20px;
    }
    
    .product-detail-description,
    .product-detail-meta,
    .product-detail-documents,
    .product-detail-footer {
        padding: 20px;
    }
}

/* ============================================
   FAQ Page Styles
   ============================================ */

.faq-section-modern {
    padding: 60px 0;
    background: var(--bg-white);
}

.faq-intro {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.faq-accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item-modern {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 20px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    border-top: 1px solid var(--border-color);
}

.faq-answer-content {
    padding: 25px 30px;
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-edit-btn {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Sidebar Styles */
.faq-sidebar-modern {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 20px;
}

.sidebar-header-modern {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 25px;
}

.sidebar-header-modern i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.sidebar-header-modern h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.sidebar-categories-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-category-modern {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-white);
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    transition: background 0.3s ease;
}

.category-header:hover {
    background: var(--bg-light);
}

.category-header i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.category-header[aria-expanded="false"] i {
    transform: rotate(-90deg);
}

.category-items {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bg-white);
}

.category-items li {
    border-top: 1px solid var(--border-color);
}

.category-items li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-items li a:hover {
    color: var(--accent-color);
    background: var(--bg-light);
    padding-left: 25px;
}

.category-items li a i {
    color: var(--accent-color);
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .faq-sidebar-modern {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 767px) {
    .faq-section-modern {
        padding: 40px 0;
    }
    
    .faq-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer-content {
        padding: 20px;
    }
    
    .faq-sidebar-modern {
        padding: 20px;
    }
}

/* ============================================
   Instant Search Page Styles
   ============================================ */

.instant-search-section-modern {
    padding: 60px 0;
    background: white;
}

.instant-search-card-fullwidth {
    background: #f9fafb;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.instant-search-content {
    padding: 40px;
}

.instant-search-instructions {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #00a2e2;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.instant-search-instructions h3 {
    color: #17284c;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instant-search-instructions h3 i {
    color: #00a2e2;
    font-size: 24px;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.instruction-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.instruction-number {
    background: #00a2e2;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.instruction-item p {
    margin: 0;
    color: #17284c;
    font-size: 14px;
    line-height: 1.6;
}

.instruction-item strong {
    color: #17284c;
    display: block;
    margin-bottom: 4px;
}

.instant-search-form {
    margin-top: 30px;
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.search-tab {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab:hover {
    color: #00a2e2;
}

.search-tab.active {
    color: #00a2e2;
    border-bottom-color: #00a2e2;
}

.search-tab i {
    font-size: 18px;
}

.search-section {
    display: none;
}

.search-section.active {
    display: block;
}

.btn-coordinate-search {
    background: #00a2e2;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.btn-coordinate-search:hover {
    background: #0091cc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-coordinate-search i {
    font-size: 18px;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-label-modern {
    display: block;
    font-weight: 600;
    color: #17284c;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-label-modern i {
    margin-right: 8px;
    color: #00a2e2;
    font-size: 18px;
}

.form-control-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    color: #17284c;
}

.form-control-modern:focus {
    outline: none;
    border-color: #00a2e2;
    box-shadow: 0 0 0 3px rgba(0, 162, 226, 0.1);
}

.form-control-modern:disabled {
    background: #f9fafb;
    color: #666666;
    cursor: not-allowed;
}

.form-control-modern::placeholder {
    color: #9ca3af;
}

.form-help-text {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #666666;
    font-style: italic;
}

/* ============================================
   Payment Page Styles
   ============================================ */

.payment-details-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.payment-details-section:last-of-type {
    border-bottom: none;
}

.section-heading {
    color: #17284c;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading i {
    color: #00a2e2;
    font-size: 26px;
}

.payment-amount {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
}

.payment-button-section {
    margin-top: 40px;
    text-align: center;
}

.btn-payment {
    background: linear-gradient(135deg, #fe8f00 0%, #ff9f1a 100%);
    color: white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(254, 143, 0, 0.3);
}

.btn-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 143, 0, 0.4);
    color: white;
    text-decoration: none;
}

.btn-payment i {
    font-size: 24px;
}

.payment-processor {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.payment-processor p {
    color: #666666;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.payment-processor img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .section-heading {
        font-size: 20px;
    }
    
    .btn-payment {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .payment-details-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .section-heading {
        font-size: 18px;
    }
    
    .btn-payment {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }
}

.instant-search-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-instant-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    text-align: center;
    width: 100%;
}

.btn-instant-primary {
    background: #fe8f00;
    color: white;
}

.btn-instant-primary:hover {
    background: #ff9f1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.btn-price-text {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.btn-instant-secondary {
    background: #00a2e2;
    color: white;
}

.btn-instant-secondary:hover {
    background: #0091cc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

.btn-instant-outline {
    background: white;
    color: #17284c;
    border-color: #17284c;
}

.btn-instant-outline:hover {
    background: #17284c;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.map-container-modern {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid #e5e7eb;
}

#map-canvas {
    width: 100%;
    height: 500px;
}

@media (max-width: 991px) {
    .instant-search-section-modern {
        padding: 40px 0;
    }
    
    .instant-search-content {
        padding: 30px 20px;
    }
    
    .instant-search-header h2 {
        font-size: 22px;
    }
    
    #map-canvas {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .instant-search-header {
        padding: 20px;
    }
    
    .instant-search-header h2 {
        font-size: 18px;
    }
    
    .instant-search-content {
        padding: 20px 15px;
    }
    
    .btn-instant-search {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    #map-canvas {
        height: 300px;
    }
}

/* ============================================
   Toastr Custom Styling
   ============================================ */

/* Override Toastr styles for better consistency with site theme */
#toast-container > div {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 20px;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

#toast-container > .toast-success {
    background-color: #28a745;
    background-image: none !important;
}

#toast-container > .toast-error {
    background-color: #dc3545;
    background-image: none !important;
}

#toast-container > .toast-info {
    background-color: #00a2e2;
    background-image: none !important;
}

#toast-container > .toast-warning {
    background-color: #ffc107;
    background-image: none !important;
    color: #333;
}

#toast-container > div:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#toast-container .toast-close-button {
    opacity: 0.8;
    font-size: 20px;
    font-weight: normal;
}

#toast-container .toast-close-button:hover {
    opacity: 1;
}

#toast-container .toast-progress {
    opacity: 0.4;
    background-color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Utility Classes
   ============================================ */

.align-items-center {
    display: flex;
    align-items: center;
}

.text-right {
    text-align: right;
}

@media (max-width: 767px) {
    .text-right {
        text-align: center;
    }
}

/* ============================================
   Status Page Styles
   ============================================ */

/* Common section padding for status pages */
.status-section {
    padding: 60px 0;
}

/* Message card - base style */
.message-card {
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

/* Success variant */
.message-card-success {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

/* Error/Rejected variant */
.message-card-error {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
}

/* Warning/Alert variant */
.message-card-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

/* Message card icon */
.message-card-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.message-card-icon-success {
    color: #28a745;
}

.message-card-icon-error {
    color: #dc3545;
}

.message-card-icon-warning {
    color: #856404;
}

/* Message card text */
.message-card-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
}

/* Action buttons container */
.action-buttons {
    text-align: center;
    margin-top: 30px;
}

/* Service Icons - Larger and More Prominent */
.bordered-icon-sm {
    border-radius: 50%;
    border: 2px solid #D2D2D2;
    color: #ff9811;
    background-color: transparent;
    text-align: center;
    font-size: 48px !important;
    padding-top: 30px;
    height: 110px;
    width: 110px;
    display: inline-block;
    transition: all 0.3s ease;
}

.bordered-icon-color {
    background-color: #17284c;
    color: #fff !important;
    border: 2px solid transparent;
}

.bordered-icon-color:hover,
.bordered-icon-color:focus {
    background-color: #fe8f00;
    border: 2px solid #fe8f00;
    color: #fff !important;
    transform: scale(1.05);
}

/* Deeds Office Offline Overlay */
.deeds-offline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.deeds-offline-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 30px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3);
    text-align: center;
    transform: rotate(-5deg);
    border: 4px solid white;
}

.deeds-offline-banner i {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.deeds-offline-banner span {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* SweetAlert core styling */
.swal2-popup {
    border-radius: 14px !important;
    padding: 32px 40px !important;
}

.swal2-popup .swal2-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.swal2-popup .swal2-html-container,
.swal2-popup .swal2-content {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #333;
}

/* Offline specific styling */
.swal2-popup.deeds-offline-dialog {
    background-color: #fe8f00 !important;
    color: white !important;
    text-align: center;
    width: 520px !important;
    max-width: 520px !important;
}

.swal2-popup.deeds-offline-dialog .swal2-title {
    font-size: 30px;
    font-weight: 700;
    color: white !important;
}

.swal2-popup.deeds-offline-dialog .swal2-html-container {
    color: white !important;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

.swal2-popup.deeds-offline-dialog .swal2-footer {
    color: rgba(255,255,255,0.85);
}

.swal2-popup .swal2-styled {
    min-width: 190px;
    padding: 16px 28px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: none;
}

.swal2-popup .swal2-styled.swal2-confirm {
    background: #fe8f00;
    color: #fff;
}

.swal2-popup .swal2-styled.swal2-cancel,
.swal2-popup .swal2-styled.swal2-deny {
    background: #17284c;
    color: #fff;
}

.swal2-popup .swal2-styled:focus {
    box-shadow: 0 0 0 3px rgba(254, 143, 0, 0.35);
}

.swal2-popup .swal2-styled:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.swal2-popup .swal2-footer {
    border-top: none;
    margin-top: 25px;
    padding-top: 0;
}

.swal2-popup .swal-alt-link {
    display: inline-block;
    background: #17284c;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.swal2-popup .swal-alt-link:hover {
    text-decoration: none;
    filter: brightness(1.05);
}
