/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/

/* Sticky Header Styles - Maximum Specificity */
body header.site-header.modern-professional-header,
html body header.site-header.modern-professional-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
}

/* Ensure main header is always visible */
body header.site-header.modern-professional-header .main-header,
html body header.site-header.modern-professional-header .main-header {
    display: block !important;
    visibility: visible !important;
    position: relative !important;
}

/* Add padding to body to prevent content overlap */
body {
    padding-top: 137px !important;
}

/* Contact Links Styling */
.contact-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.contact-link:hover {
    color: #1c63b8 !important;
    text-decoration: underline !important;
}

.contact-item {
    transition: all 0.3s ease !important;
}

.contact-item:hover {
    transform: translateY(-2px) !important;
}

/* WhatsApp Button Styling */
.contact-btn .fa-whatsapp {
    color: #25D366 !important;
    transition: all 0.3s ease !important;
}

.contact-btn:hover .fa-whatsapp {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
}

.mobile-menu-btn span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #333 !important;
    margin: 5px 0 !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0 !important;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
}

/* Mobile Navigation - Higher Specificity */
@media (max-width: 991px) {
    body .mobile-menu-btn,
    html body .mobile-menu-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
       
        border: 2px solid #000 !important;
        border-radius: 5px !important;
    }
    
    body header .main-navigation,
    html body header .main-navigation,
    body .site-header .main-navigation,
    html body .site-header .main-navigation {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 300px !important;
        height: 100vh !important;
        background: #ffffff !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 99998 !important;
        padding: 80px 20px 20px !important;
        overflow-y: auto !important;
        display: block !important;
        visibility: visible !important;
    }
    
    body header .main-navigation.mobile-open,
    html body header .main-navigation.mobile-open,
    body .site-header .main-navigation.mobile-open,
    html body .site-header .main-navigation.mobile-open {
        right: 0 !important;
    }
    
    body header .nav-menu,
    html body header .nav-menu,
    body .site-header .nav-menu,
    html body .site-header .nav-menu {
        display: block !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    body header .nav-item,
    html body header .nav-item,
    body .site-header .nav-item,
    html body .site-header .nav-item {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    body header .nav-link,
    html body header .nav-link,
    body .site-header .nav-link,
    html body .site-header .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 10px 15px !important;
        color: #333 !important;
        font-size: 16px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    body header .nav-link:hover,
    html body header .nav-link:hover,
    body .site-header .nav-link:hover,
    html body .site-header .nav-link:hover {
        background: #f8f9fa !important;
        color: #1c63b8 !important;
    }
    
    body header .nav-item.active .nav-link,
    html body header .nav-item.active .nav-link,
    body .site-header .nav-item.active .nav-link,
    html body .site-header .nav-item.active .nav-link {
        background: #1c63b8 !important;
        color: #ffffff !important;
    }
    
    .header-actions {
        margin-left: auto !important;
        margin-right: 10px !important;
    }
    
    body.mobile-menu-open {
        overflow: hidden !important;
    }
}

/* Blog Page Styles */
.blog-post-modern:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.blog-read-more:hover i {
    transform: translateX(5px) !important;
}

.blog-category-badge {
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.blog-meta span {
    font-family: 'Poppins', sans-serif !important;
}

.blog-post-title {
    transition: color 0.3s ease !important;
}

.blog-post-title:hover {
    color: #1c63b8 !important;
}

.category-list a:hover {
    color: #1c63b8 !important;
    background: rgba(28, 99, 184, 0.05) !important;
}

.tag-cloud a:hover {
    background: #1c63b8 !important;
    color: #ffffff !important;
}

.pagination-modern .page-link:hover {
    background: #1c63b8 !important;
    color: #ffffff !important;
}

.search-form-modern input:focus {
    border-color: #1c63b8 !important;
    outline: none !important;
}

.search-form-modern button:hover {
    background: #0d4a8a !important;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.5rem !important;
    }
    
    .blog-post-title {
        font-size: 1.5rem !important;
    }
    
    .blog-post-image {
        height: 200px !important;
    }
}

/* Header scroll effects */
body header.site-header.modern-professional-header.scrolled,
html body header.site-header.modern-professional-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Ensure main header stays visible when scrolled */
body header.site-header.modern-professional-header.scrolled .main-header,
html body header.site-header.modern-professional-header.scrolled .main-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Top bar hide on scroll for cleaner look */
body header.site-header.modern-professional-header.scrolled .top-info-bar,
html body header.site-header.modern-professional-header.scrolled .top-info-bar {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.top-info-bar {
    transition: all 0.3s ease !important;
}

/* Responsive adjustments for sticky header */
@media (max-width: 768px) {
    body {
        padding-top: 120px !important;
    }
    
    body header.site-header.modern-professional-header.scrolled .top-info-bar,
    html body header.site-header.modern-professional-header.scrolled .top-info-bar {
        transform: translateY(-100%) !important;
        opacity: 0 !important;
    }
    
    body header.site-header.modern-professional-header,
    html body header.site-header.modern-professional-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 100px !important;
    }
}

/* Modern Title Section Design */
.modern-title-section {
    text-align: center !important;
    margin-bottom: 5px !important;
    position: relative !important;
    padding: 15px 0 !important;
}

.title-icon-wrapper {
    margin-bottom: 25px !important;
    position: relative !important;
    display: inline-block !important;
}

.title-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    position: relative !important;
    box-shadow: 0 10px 30px rgba(28, 99, 184, 0.3) !important;
    animation: titleIconPulse 3s ease-in-out infinite !important;
}

.title-icon::before {
    content: '' !important;
    position: absolute !important;
    top: -5px !important;
    left: -5px !important;
    right: -5px !important;
    bottom: -5px !important;
    background: linear-gradient(135deg, #1c63b8, #4a90e2) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    opacity: 0.3 !important;
    animation: titleIconRotate 4s linear infinite !important;
}

.title-icon i {
    font-size: 32px !important;
    color: #000000 !important;
    font-weight: bold !important;
}

@keyframes titleIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes titleIconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modern-main-title {
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    line-height: 1.2 !important;
    font-family: 'Poppins', sans-serif !important;
}

.title-light {
    font-weight: 300 !important;
    color: #666666 !important;
    margin-right: 8px !important;
}

.title-bold {
    font-weight: 700 !important;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
}

.title-decoration {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
    gap: 15px !important;
}

.decoration-line {
    width: 60px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #1c63b8, transparent) !important;
    position: relative !important;
}

.decoration-dot {
    width: 8px !important;
    height: 8px !important;
    background: #1c63b8 !important;
    border-radius: 50% !important;
    position: relative !important;
    box-shadow: 0 0 0 3px rgba(28, 99, 184, 0.2) !important;
}

.title-subtitle {
    font-size: 16px !important;
    color: #666666 !important;
    margin: 0 !important;
    font-weight: 300 !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

/* Responsive Design for Title Section */
@media (max-width: 768px) {
    .modern-title-section {
        margin-bottom: 40px !important;
        padding: 30px 0 !important;
    }
    
    .title-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .title-icon i {
        font-size: 24px !important;
    }
    
    .modern-main-title {
        font-size: 32px !important;
    }
    
    .decoration-line {
        width: 40px !important;
    }
    
    .title-subtitle {
        font-size: 14px !important;
        max-width: 300px !important;
    }
}

@media (max-width: 576px) {
    .modern-main-title {
        font-size: 28px !important;
    }
    
    .title-subtitle {
        font-size: 13px !important;
    }
}

/* Modern Map Title Section Design */
.modern-map-title-section {
    text-align: center !important;
    margin-bottom: 10px !important;
    position: relative !important;
    padding: 5px 0 !important;
}

.map-title-icon-wrapper {
    margin-bottom: 20px !important;
    position: relative !important;
    display: inline-block !important;
}

.map-title-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    position: relative !important;
    box-shadow: 0 8px 25px rgba(28, 99, 184, 0.25) !important;
    animation: mapIconPulse 3s ease-in-out infinite !important;
}

.map-title-icon::before {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    background: linear-gradient(135deg, #1c63b8, #4a90e2) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    opacity: 0.25 !important;
    animation: mapIconRotate 4s linear infinite !important;
}

.map-title-icon i {
    font-size: 28px !important;
    color: #000000 !important;
    font-weight: bold !important;
}

@keyframes mapIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes mapIconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.map-main-title {
    font-size: 38px !important;
    font-weight: 700 !important;
    margin-bottom: 18px !important;
    position: relative !important;
    line-height: 1.2 !important;
    font-family: 'Poppins', sans-serif !important;
}

.map-title-light {
    font-weight: 300 !important;
    color: #666666 !important;
    margin-right: 8px !important;
}

.map-title-bold {
    font-weight: 700 !important;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
}

.map-title-decoration {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    gap: 12px !important;
}

.map-decoration-line {
    width: 50px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #1c63b8, transparent) !important;
    position: relative !important;
}

.map-decoration-dot {
    width: 6px !important;
    height: 6px !important;
    background: #1c63b8 !important;
    border-radius: 50% !important;
    position: relative !important;
    box-shadow: 0 0 0 2px rgba(28, 99, 184, 0.2) !important;
}

.map-title-subtitle {
    font-size: 15px !important;
    color: #666666 !important;
    margin: 0 !important;
    font-weight: 300 !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

/* Responsive Design for Map Title Section */
@media (max-width: 768px) {
    .modern-map-title-section {
        margin-bottom: 35px !important;
        padding: 30px 0 !important;
    }
    
    .map-title-icon {
        width: 55px !important;
        height: 55px !important;
    }
    
    .map-title-icon i {
        font-size: 22px !important;
    }
    
    .map-main-title {
        font-size: 32px !important;
    }
    
    .map-decoration-line {
        width: 35px !important;
    }
    
    .map-title-subtitle {
        font-size: 14px !important;
        max-width: 280px !important;
    }
}

@media (max-width: 576px) {
    .map-main-title {
        font-size: 28px !important;
    }
    
    .map-title-subtitle {
        font-size: 13px !important;
    }
}

/* Professional Contact Form Design - Matching Website Theme */
.modern-contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(28, 99, 184, 0.1) !important;
    border: 2px solid #e8f0fe !important;
    margin: 0 auto 30px !important;
    position: relative !important;
    max-width: 500px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.modern-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1c63b8, #4a90e2) !important;
    z-index: 1 !important;
}

/* Enhanced Form Header */
.form-header {
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%) !important;
    color: #ffffff !important;
    padding: 35px 30px !important;
    text-align: center !important;
    position: relative !important;
    border-bottom: none !important;
    overflow: hidden !important;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
}

.header-icon {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 15px !important;
    position: relative !important;
    z-index: 2 !important;
    backdrop-filter: blur(10px) !important;
    animation: pulse 2s infinite !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.header-icon i {
    font-size: 22px !important;
    color: #000000 !important;
    font-weight: bold !important;
}

.form-header h3 {
    margin: 0 0 21px 0 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.form-header p {
    margin: 0 !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative !important;
    z-index: 2 !important;
    font-weight: 300 !important;
}

/* Form Body */
.contact-form {
    padding: 25px 30px !important;
}

.form-row-modern {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 18px !important;
}

.input-group-modern {
    position: relative !important;
    flex: 1 !important;
    margin-bottom: 0 !important;
}

.input-group-modern.full-width {
    width: 100% !important;
    flex: none !important;
}

.input-icon-wrapper {
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
    color: #000000 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    background: rgba(28, 99, 184, 0.05) !important;
    padding: 8px !important;
    border-radius: 8px !important;
}

.textarea-group .input-icon-wrapper {
    top: 15px !important;
    transform: none !important;
}

.form-control-modern {
    width: 100% !important;
    border: 2px solid #e8f0fe !important;
    border-radius: 10px !important;
    padding: 12px 18px 12px 50px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    color: #333333 !important;
    font-weight: 400 !important;
}

.form-control-modern:focus {
    border-color: #1c63b8 !important;
    box-shadow: 0 0 0 3px rgba(28, 99, 184, 0.1) !important;
    background-color: #ffffff !important;
    outline: none !important;
    transform: translateY(-1px) !important;
}

.form-control-modern:focus ~ .input-icon-wrapper {
    color: #000000 !important;
    background: rgba(28, 99, 184, 0.1) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.textarea-group .form-control-modern:focus ~ .input-icon-wrapper {
    color: #000000 !important;
    background: rgba(28, 99, 184, 0.1) !important;
    transform: scale(1.1) !important;
}

.form-control-modern::placeholder {
    color: #999999 !important;
    font-style: normal !important;
}

.textarea-group .form-control-modern {
    resize: vertical !important;
    min-height: 90px !important;
    padding-top: 12px !important;
}

.modern-contact-form .invalid-feedback {
    color: #dc3545 !important;
    font-size: 11px !important;
    margin-top: 4px !important;
    display: none !important;
    margin-left: 40px !important;
}

.modern-contact-form .was-validated .form-control-modern:invalid ~ .invalid-feedback {
    display: block !important;
}

.modern-contact-form .was-validated .form-control-modern:invalid {
    border-color: #dc3545 !important;
}

.modern-contact-form .was-validated .form-control-modern:invalid ~ .input-icon-wrapper {
    color: #dc3545 !important;
}

/* Submit Button */
.form-actions {
    text-align: center !important;
    margin-top: 20px !important;
}

.modern-submit-btn {
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 35px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 25px rgba(28, 99, 184, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    position: relative !important;
    overflow: hidden !important;
}

.modern-submit-btn:hover {
    background: linear-gradient(135deg, #1a56a0 0%, #2570d0 100%) !important;
    box-shadow: 0 12px 35px rgba(28, 99, 184, 0.4) !important;
    transform: translateY(-2px) !important;
}

.modern-submit-btn .btn-icon {
    font-size: 12px !important;
    transition: transform 0.3s ease !important;
    color: #000000 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 4px !important;
    border-radius: 50% !important;
}

.modern-submit-btn:hover .btn-icon {
    transform: translateX(4px) rotate(5deg) !important;
}

/* Form validation enhancements */
.form-control-modern.is-valid {
    border-color: #28a745 !important;
}

.form-control-modern.is-valid ~ .input-icon-wrapper {
    color: #28a745 !important;
}

.form-control-modern.is-invalid {
    border-color: #dc3545 !important;
}

.form-control-modern.is-invalid ~ .input-icon-wrapper {
    color: #dc3545 !important;
}

/* Loading state */
.modern-submit-btn.loading {
    pointer-events: none !important;
    opacity: 0.7 !important;
}

.modern-submit-btn.loading .btn-icon {
    animation: spin 1s linear infinite !important;
}

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

/* Success message */
.form-success-message {
    background: #d4edda !important;
    color: #155724 !important;
    padding: 12px !important;
    border-radius: 6px !important;
    margin-top: 15px !important;
    text-align: center !important;
    display: none !important;
    border: 1px solid #c3e6cb !important;
}

.form-success-message.show {
    display: block !important;
}

.form-success-message i {
    color: #28a745 !important;
    margin-bottom: 6px !important;
    font-size: 20px !important;
}

.form-success-message h4 {
    color: #155724 !important;
    margin: 0 0 6px 0 !important;
    font-size: 15px !important;
}

.form-success-message p {
    color: #155724 !important;
    margin: 0 !important;
    font-size: 13px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-contact-form {
        margin: 0 auto 20px !important;
    }
    
    .form-header {
        padding: 34px 20px !important;
    }
    
    .contact-form {
        padding: 20px 20px !important;
    }
    
    .form-row-modern {
        flex-direction: column !important;
        gap: 0 !important;
        margin-bottom: 15px !important;
    }
    
    .input-group-modern {
        margin-bottom: 15px !important;
    }
    
    .form-control-modern {
        padding: 10px 15px 10px 40px !important;
        font-size: 13px !important;
    }
    
    .modern-submit-btn {
        width: 100% !important;
        padding: 12px 20px !important;
    }
}

/* Centered title styling */
.mt-separator.text-center {
    text-align: center;
    margin-bottom: 30px;
}

.mt-separator.text-center .sep-line-one {
    display: inline-block;
    position: relative;
}

.mt-separator.text-center .sep-line-one::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

/* Map Styles */
.gmap-outline {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

.gmap-outline iframe {
    width: 100% !important;
    height: 400px !important;
    border: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .modern-contact-form {
        margin: 20px 15px 0;
        border-radius: 15px;
    }
    
    .form-header {
        padding: 30px 20px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .header-icon i {
        font-size: 24px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row-modern {
        flex-direction: column;
        gap: 0;
    }
    
    .input-group-modern {
        margin-bottom: 20px;
    }
    
    .form-control-modern {
        padding: 14px 16px 14px 45px;
        font-size: 14px;
    }
    
    .modern-submit-btn {
        width: 100%;
        padding: 16px 30px;
    }
    
    .gmap-outline iframe {
        height: 300px !important;
    }
}

@media (max-width: 576px) {
    .modern-contact-form {
        margin: 20px 10px 0;
        border-radius: 12px;
    }
    
    .form-header {
        padding: 25px 15px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .gmap-outline iframe {
        height: 250px !important;
    }
}

/* Contact Info Block Styles */
.contact-info-block {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #fff;
    font-size: 18px;
}

.contact-info-text h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Modern Blog Design Styles */
.blog-post-modern {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.blog-post-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-modern:hover .blog-featured-image {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.1), rgba(42, 124, 214, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Privacy Policy Modern Styles */
.privacy-content-modern {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.05) 0%, rgba(42, 124, 214, 0.02) 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(28, 99, 184, 0.1);
}

.modern-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.modern-breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #1c63b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link:hover {
    color: #2c7cd6;
    transform: translateY(-1px);
}

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

.breadcrumb-separator {
    margin: 0 12px;
    color: #999999;
    font-size: 12px;
}

.breadcrumb-current {
    color: #666666;
    font-size: 14px;
    font-weight: 600;
}

/* Section Content Alignment */
.section-full {
    position: relative;
    overflow: hidden;
}

.section-content {
    position: relative;
    z-index: 1;
}

.tos-section-modern {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tos-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1c63b8, #2c7cd6, #4a90e2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tos-section-modern:hover::before {
    opacity: 1;
}

.tos-section-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
    position: relative;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(28, 99, 184, 0.15);
    transition: all 0.3s ease;
}

.section-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(28, 99, 184, 0.25);
}

.section-icon i {
    font-size: 20px;
    color: #000000;
    font-weight: bold;
}

.section-title {
    color: #1c63b8;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1c63b8, #2c7cd6);
    border-radius: 1px;
}

.section-body {
    margin-left: 70px;
    padding-top: 5px;
}

.section-paragraph {
    color: #444444;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.section-paragraph strong {
    color: #1c63b8;
    font-weight: 600;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(28, 99, 184, 0.1);
    border: 2px solid #e8f0fe;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1c63b8, #4a90e2);
    z-index: 1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28, 99, 184, 0.15);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.info-card-icon i {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}

.info-card-content h4 {
    color: #1c63b8;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.info-card-content p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.use-cases-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.use-case-item {
    display: flex;
    align-items: center;
    background: rgba(28, 99, 184, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #1c63b8;
    transition: all 0.3s ease;
}

.use-case-item:hover {
    background: rgba(28, 99, 184, 0.1);
    transform: translateX(5px);
}

.use-case-icon {
    width: 30px;
    height: 30px;
    background: #1c63b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.use-case-icon i {
    font-size: 14px;
    color: #ffffff;
}

.use-case-text {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
}

.sharing-notice, .privacy-notice, .security-notice {
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 2px solid rgba(28, 99, 184, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.sharing-icon, .privacy-icon, .security-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sharing-icon i, .privacy-icon i, .security-icon i {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}

.sharing-content, .privacy-content, .security-content {
    flex: 1;
}

.sharing-content h4, .privacy-content h4, .security-content h4 {
    color: #1c63b8;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.sharing-content p, .privacy-content p, .security-content p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.tracking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.tracking-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.tracking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tracking-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tracking-card-icon i {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}

.tracking-card-content h4 {
    color: #1c63b8;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.tracking-card-content p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.sharing-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.sharing-case-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sharing-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.sharing-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sharing-case-icon i {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}

.sharing-case-content h4 {
    color: #1c63b8;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.sharing-case-content p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.privacy-contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(28, 99, 184, 0.1);
    border: 2px solid #e8f0fe;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28, 99, 184, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.contact-card-icon i {
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}

.contact-card-content h4 {
    color: #1c63b8;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact-card-content p {
    color: #333333;
    font-size: 16px;
    margin: 0;
}

.contact-link {
    color: #1c63b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2c7cd6;
    text-decoration: underline;
}

.contact-action {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

.privacy-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(28, 99, 184, 0.3);
}

.privacy-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(28, 99, 184, 0.4);
    background: linear-gradient(135deg, #1c63b8 0%, #12509b 100%);
    color: #ffffff;
}

.privacy-contact-btn i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tos-section-modern {
        padding: 25px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-body {
        margin-left: 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .use-cases-list {
        grid-template-columns: 1fr;
    }
    
    .tracking-cards {
        grid-template-columns: 1fr;
    }
    
    .sharing-notice, .privacy-notice, .security-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .sharing-icon, .privacy-icon, .security-icon {
        margin: 0 auto 15px auto;
    }
}

.blog-post-modern:hover .blog-overlay {
    opacity: 1;
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(28, 99, 184, 0.3);
    z-index: 2;
}

.blog-date-badge .day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.blog-date-badge .month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.blog-content-modern {
    padding: 30px;
}

.blog-meta-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category {
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-author {
    color: #666666;
    font-size: 13px;
    font-weight: 500;
}

.blog-author i {
    margin-right: 5px;
    color: #1c63b8;
}

.blog-title-modern {
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-title-modern a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    display: block;
}

.blog-title-modern a:hover {
    color: #1c63b8;
}

.blog-excerpt-modern {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.blog-footer-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.read-more-btn {
    color: #1c63b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(28, 99, 184, 0.05);
}

.read-more-btn:hover {
    background: #1c63b8;
    color: #ffffff;
    transform: translateX(5px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.blog-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-stats span {
    color: #666666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-stats i {
    color: #1c63b8;
    font-size: 14px;
}

/* Blog Detail Page Styles */
.blog-post-detail {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.blog-detail-image {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 20px 20px 0 0;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-detail-image:hover img {
    transform: scale(1.05);
}

.blog-detail-meta {
    padding: 30px 30px 0 30px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.blog-meta-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-category {
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date, .blog-author {
    color: #666666;
    font-size: 14px;
    font-weight: 500;
}

.blog-date i, .blog-author i {
    margin-right: 8px;
    color: #1c63b8;
}

.blog-detail-content {
    padding: 0 30px 30px 30px;
}

.blog-detail-content h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

.blog-detail-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border-radius: 2px;
}

.blog-detail-content h4 {
    color: #34495e;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    margin-top: 30px;
}

.blog-detail-content p {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.blog-detail-content ul {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.blog-detail-content ul li {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.blog-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border-radius: 50%;
}

.blog-detail-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.blog-detail-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.blog-detail-content ol li {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.blog-detail-footer {
    padding: 30px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.blog-tags {
    margin-bottom: 20px;
}

.blog-tags h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.tag {
    display: inline-block;
    background: #ffffff;
    color: #1c63b8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 99, 184, 0.2);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-share h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #666666;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(28, 99, 184, 0.3);
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border-radius: 2px;
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-image:hover img {
    transform: scale(1.1);
}

.recent-post-content h4 {
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.recent-post-content h4 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    display: block;
}

.recent-post-content h4 a:hover {
    color: #1c63b8;
}

.post-date {
    color: #666666;
    font-size: 12px;
    font-weight: 500;
}

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

.categories ul li {
    margin-bottom: 10px;
    padding: 0;
}

.categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.categories ul li a:hover {
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.1), rgba(42, 124, 214, 0.05));
    color: #1c63b8;
    transform: translateX(5px);
}

.categories ul li span {
    background: #f0f0f0;
    color: #666666;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

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

.contact-widget p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.site-button {
    display: inline-block;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.site-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(28, 99, 184, 0.3);
    color: #ffffff;
}

/* Newsletter Form Styles */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-form-inner {
    position: relative;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.newsletter-input-group:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    width: 100%;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.newsletter-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    min-width: 40px;
    height: 40px;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #2c7cd6, #1c63b8);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(28, 99, 184, 0.3);
}

.newsletter-button:active {
    transform: scale(0.95);
}

.newsletter-button i {
    font-size: 14px;
    margin: 0;
}


.section-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1c63b8, #2c7cd6);
    border-radius: 2px;
}

.section-title i {
    color: #ffffff;
    font-size: 22px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(28, 99, 184, 0.25);
    transition: all 0.3s ease;
}

.section-title i:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 30px rgba(28, 99, 184, 0.35);
}

.subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 18px;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-left: 20px;
}

.subsection-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border-radius: 50%;
}

.section-content {
    font-size: 15px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    text-align: justify;
}

.tos-link {
    color: #1c63b8;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.tos-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1c63b8, #2c7cd6);
    transition: width 0.3s ease;
}

.tos-link:hover {
    color: #2c7cd6;
    background: rgba(28, 99, 184, 0.05);
}

.tos-link:hover::after {
    width: 100%;
}

.tos-example {
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.08), rgba(42, 124, 214, 0.04));
    border-left: 5px solid #1c63b8;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 12px;
    font-style: italic;
    color: #666666;
    position: relative;
    box-shadow: 0 5px 15px rgba(28, 99, 184, 0.1);
}

.tos-example::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 60px;
    color: rgba(28, 99, 184, 0.2);
    font-family: Georgia, serif;
}

.tos-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.tos-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 12px 12px 12px 35px;
}

.tos-list li:hover {
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.05), rgba(42, 124, 214, 0.02));
    transform: translateX(5px);
}

.tos-list li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 18px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(28, 99, 184, 0.3);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.08), rgba(42, 124, 214, 0.04));
    border: 2px solid rgba(28, 99, 184, 0.15);
    border-radius: 20px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-card::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-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(28, 99, 184, 0.25);
    border-color: rgba(28, 99, 184, 0.3);
}

.contact-icon {
   
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(93, 103, 114, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(28, 99, 184, 0.4);
}

.contact-icon i {
    font-size: 28px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.contact-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.contact-info p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.tos-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.05), rgba(42, 124, 214, 0.02));
    border-radius: 20px;
    border: 2px solid rgba(28, 99, 184, 0.1);
}

.tos-cta .site-button {
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(28, 99, 184, 0.3);
}

.tos-cta .site-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.tos-cta .site-button:hover::before {
    left: 100%;
}

.tos-cta .site-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(28, 99, 184, 0.4);
    color: #ffffff;
}

.tos-cta .site-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tos-cta .site-button:hover i {
    transform: translateX(3px);
}

/* Modern TOS Styles */
.tos-content-modern {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.tos-section-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(28, 99, 184, 0.08);
    border: 1px solid rgba(28, 99, 184, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tos-section-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(28, 99, 184, 0.12);
}

.section-header {
    background: linear-gradient(135deg, #1c63b8 0%, #2c7cd6 100%);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 200px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-25deg);
    transition: right 0.5s ease;
}

.tos-section-modern:hover .section-header::before {
    right: 100%;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.tos-section-modern:hover .section-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.section-icon i {
    font-size: 24px;
    color: #ffffff;
}

.section-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-body {
    padding: 40px;
}

.section-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    text-align: justify;
}

/* Agreement Notice */
.agreement-notice {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border-left: 4px solid #ffc107;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
}

.notice-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.notice-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.notice-content strong {
    color: #e65100;
    font-weight: 600;
}

/* SMS Terms Grid */
.sms-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.sms-term-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(28, 99, 184, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sms-term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(28, 99, 184, 0.05), transparent);
    transition: left 0.5s ease;
}

.sms-term-card:hover::before {
    left: 100%;
}

.sms-term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(28, 99, 184, 0.15);
    border-color: rgba(28, 99, 184, 0.2);
}

.card-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(28, 99, 184, 0.3);
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4e4e4e;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.example-box {
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.08), rgba(42, 124, 214, 0.04));
    border-left: 4px solid #1c63b8;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    position: relative;
}

.example-label {
    font-weight: 600;
    color: #1c63b8;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.example-content {
    font-style: italic;
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

/* License Info */
.license-info {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(56, 142, 60, 0.05));
    border-radius: 15px;
    padding: 25px 30px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.license-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.license-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.license-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Requirements List */
.requirements-list {
    margin-top: 25px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(56, 142, 60, 0.02));
    border-radius: 12px;
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(56, 142, 60, 0.05));
    transform: translateX(5px);
}

.requirement-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.requirement-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    font-family: 'Roboto', sans-serif;
}

/* Prohibited List */
.prohibited-list {
    margin-top: 25px;
}

.prohibited-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.05), rgba(211, 47, 47, 0.02));
    border-radius: 12px;
    border-left: 4px solid #f44336;
    transition: all 0.3s ease;
}

.prohibited-item:hover {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(211, 47, 47, 0.05));
    transform: translateX(5px);
}

.prohibited-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.prohibited-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    font-family: 'Roboto', sans-serif;
}

/* Privacy Notice */
.privacy-notice {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(25, 118, 210, 0.05));
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border: 2px solid rgba(33, 150, 243, 0.2);
    text-align: center;
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    margin: 0 auto;
}

.privacy-content {
    flex: 1;
}

.privacy-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.privacy-link:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
    color: #ffffff;
}

.privacy-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

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

/* Modern Contact Cards */
.contact-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(28, 99, 184, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(28, 99, 184, 0.05), transparent);
    transition: left 0.5s ease;
}

.contact-card-modern:hover::before {
    left: 100%;
}

.contact-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(28, 99, 184, 0.2);
    border-color: rgba(28, 99, 184, 0.3);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(28, 99, 184, 0.3);
    transition: all 0.3s ease;
}

.contact-card-modern:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(28, 99, 184, 0.4);
}

.contact-icon-wrapper i {
    font-size: 28px;
    color: #ffffff;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact-details p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    
}



.contact-action i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.contact-action:hover i {
    transform: translateX(3px);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, rgba(28, 99, 184, 0.05), rgba(42, 124, 214, 0.02));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid rgba(28, 99, 184, 0.1);
}

.contact-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1c63b8;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-cta p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1c63b8, #2c7cd6);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(28, 99, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a56a0, #2570d0);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(28, 99, 184, 0.4);
    color: #ffffff;
}

.cta-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(28, 99, 184, 0.1);
}

.modern-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.breadcrumb-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto', sans-serif;
}

.breadcrumb-link:hover {
    color: #1c63b8;
    transform: translateY(-1px);
}

.breadcrumb-separator {
    color: #999999;
    font-size: 12px;
}

.breadcrumb-current {
    color: #1c63b8;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for Modern TOS */
@media (max-width: 991px) {
    .tos-content-modern {
        padding: 0 15px;
    }
    
    .section-header {
        padding: 25px 30px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-body {
        padding: 30px 25px;
    }
    
    .sms-terms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-cards-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 25px;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-icon i {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-body {
        padding: 25px 20px;
    }
    
    .section-paragraph {
        font-size: 15px;
    }
    
    .agreement-notice {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .license-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .privacy-notice {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .contact-cta h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .section-body {
        padding: 20px 15px;
    }
    
    .section-paragraph {
        font-size: 14px;
    }
    
    .sms-term-card {
        padding: 20px 15px;
    }
    
    .card-content h4 {
        font-size: 16px;
    }
    
    .card-content p {
        font-size: 14px;
    }
    
    .contact-card-modern {
        padding: 25px 20px;
    }
    
    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon-wrapper i {
        font-size: 24px;
    }
    
    .contact-details h4 {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .modern-breadcrumb {
        flex-wrap: wrap;
        gap: 5px;
    }
}


@media (max-width: 991px) {
    .tos-content {
        padding: 35px 25px;
    }
    
    .tos-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .tos-header {
        padding: 30px 0;
    }
    
    .tos-icon {
        width: 70px;
        height: 70px;
    }
    
    .tos-icon i {
        font-size: 30px;
    }
    
    .tos-title {
        font-size: 32px;
    }
    
    .tos-content {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .section-title i {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }
    
    .subsection-title {
        font-size: 16px;
    }
    
    .section-content {
        font-size: 15px;
    }
    
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .tos-title {
        font-size: 28px;
    }
    
    .tos-content {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .section-content {
        font-size: 14px;
    }
    
    .tos-list li {
        font-size: 14px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .tos-cta .site-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Newsletter Form Responsive Styles */
@media (max-width: 767px) {
    .newsletter-input {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .newsletter-button {
        min-width: 35px;
        height: 35px;
        padding: 8px 12px;
        margin-right: 3px;
    }
    
    .newsletter-button i {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 25px;
        padding: 5px;
    }
    
    .newsletter-input {
        padding: 10px 15px;
        margin-bottom: 10px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .newsletter-button {
        width: 100%;
        border-radius: 20px;
        margin-right: 0;
        padding: 10px;
        min-width: auto;
        height: auto;
    }
    
    .newsletter-button i {
        margin-right: 5px;
    }
}

/* Newsletter Success Message */
.newsletter-success {
    color: #4CAF50;
    font-size: 13px;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: none;
}

.newsletter-error {
    color: #f44336;
    font-size: 13px;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(244, 67, 54, 0.2);
    display: none;
}

/* Responsive Blog Detail Styles */
@media (max-width: 991px) {
    .blog-detail-image {
        height: 300px;
    }
    
    .blog-detail-content {
        padding: 0 20px 20px 20px;
    }
    
    .blog-detail-meta {
        padding: 20px 20px 0 20px;
    }
    
    .blog-detail-footer {
        padding: 20px;
    }
    
    .blog-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .blog-detail-image {
        height: 250px;
    }
    
    .blog-detail-content {
        padding: 0 15px 15px 15px;
    }
    
    .blog-detail-meta {
        padding: 15px 15px 0 15px;
    }
    
    .blog-detail-footer {
        padding: 15px;
    }
    
    .blog-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-detail-content h3 {
        font-size: 20px;
        padding-left: 15px;
    }
    
    .blog-detail-content h3::before {
        width: 3px;
        height: 20px;
    }
    
    .blog-detail-content h4 {
        font-size: 18px;
    }
    
    .blog-detail-content p {
        font-size: 15px;
    }
    
    .blog-share {
        flex-wrap: wrap;
    }
    
    .recent-post-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .recent-post-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .blog-detail-image {
        height: 200px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .blog-detail-content h3 {
        font-size: 18px;
    }
    
    .blog-detail-content h4 {
        font-size: 16px;
    }
    
    .blog-detail-content p {
        font-size: 14px;
    }
}
