/* Professional Typography */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

body > header + * {
    flex: 1;
}

/* Custom Header Styles */
.custom-header {
    background-color: #0d4f78;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-header .navbar {
    padding: 1rem 0;
}

/* Logo Styling */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 2rem;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

.logo-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.625rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    text-transform: uppercase;
}

/* Language Switcher */
.language-switcher {
    margin-left: 2.5rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    /*background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);*/
}

.language-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.language-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
}

.language-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
	border-radius: 10px;
}

.language-link .fi {
    font-size: 1.25rem;
    line-height: 1;
	border-radius: 3px;
}

.language-code {
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link:focus {
    color: #ffffff;
    outline: none;
}

/* Hamburger Menu Icon */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .custom-header .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        margin-right: 1rem;
    }
    
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0.125rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1.25rem;
        display: block;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
        padding-left: 1.5rem;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        padding-left: 0;
        border-left: none;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .language-selector {
        justify-content: center;
        width: 100%;
    }
    
    .language-link {
        flex: 1;
        justify-content: center;
    }
}

/* Tablet Styles */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
    }
}

/* Large Screen Adjustments */
@media (min-width: 1200px) {
    .custom-header .navbar {
        padding: 1.125rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
    }
    
    .logo-img {
        height: 60px;
        max-width: 240px;
    }
}

/* Ensure clickable areas are adequate on touch devices */
@media (hover: none) and (pointer: coarse) {
    .navbar-nav .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Footer Styles */

.blink {
  animation: blinkAnim 1.2s infinite;
  color: #e87524 !important;
}

@keyframes blinkAnim {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Footer Styles */
.custom-footer {
    background-color: #0d4f78;
    color: #ffffff;
    margin-top: auto;
}

.footer-main {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-about {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    margin-top: 1rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.footer-contact li i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 20px;
}

.footer-contact li span {
    flex: 1;
    line-height: 1.5;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-logo-img {
        height: 45px;
        max-width: 180px;
    }
    
    .footer-about {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-title:first-of-type {
        margin-top: 0;
    }
    
    .footer-contact li {
        margin-bottom: 0.875rem;
        font-size: 0.85rem;
    }
}

@media (min-width: 992px) {
    .footer-main {
        padding: 3.5rem 0 2.5rem;
    }
}

/* About Page Styles */

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #0d4f78;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #1565a0;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    padding: 0 0.5rem;
}

/* About Content Section */
.about-content-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.about-content-text {
    padding-right: 2rem;
}

.about-content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
}

.about-content-body p {
    margin-bottom: 1.5rem;
}

.about-content-body p:last-child {
    margin-bottom: 0;
}

.about-content-body h2,
.about-content-body h3,
.about-content-body h4 {
    color: #0d4f78;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content-body ul,
.about-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-content-body li {
    margin-bottom: 0.5rem;
}

.about-content-image {
    text-align: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-content-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 15px rgba(232, 117, 36, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    border-radius: 12px;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.about-image-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    padding: 4rem 2rem;
    text-align: center;
    color: #6c757d;
}

.about-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: #adb5bd;
}

.about-image-placeholder p {
    margin: 0;
    font-size: 1rem;
}

/* Features Section */
.about-features-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 0;
    line-height: 1.3;
}

.features-title .highlight {
    color: #e87524;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 79, 120, 0.15);
    border-color: #0d4f78;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 0;
    line-height: 1.4;
}

/* About Page Responsive */
@media (max-width: 991.98px) {
    .about-content-section {
        padding: 3rem 0;
    }
    
    .about-content-text {
        padding-right: 0;
        margin-top: 2rem;
    }
    
    .about-content-title {
        font-size: 1.9rem;
    }
    
    .about-content-body {
        font-size: 0.95rem;
    }
    
    .image-badge {
        bottom: 15px;
        right: 15px;
        padding: 0.75rem 1.25rem;
        min-width: 100px;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .about-features-section {
        padding: 3rem 0;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem 1.5rem;
        min-height: 220px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
    }
    
    .feature-card-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .about-content-title {
        font-size: 1.7rem;
    }
    
    .about-content-body {
        font-size: 0.9rem;
    }
    
    .features-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 200px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 15px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-card-title {
        font-size: 1.05rem;
    }
    
    .image-badge {
        bottom: 10px;
        right: 10px;
        padding: 0.625rem 1rem;
        min-width: 90px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

/* Contact Page Styles */

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e87524;
    margin-bottom: 1rem;
}

.contact-page-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0;
}

.contact-info-card {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 79, 120, 0.15);
    border-color: #0d4f78;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.contact-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 0.75rem;
}

.contact-card-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d4f78;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e87524;
}

.contact-address {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Support Info Section */
.support-info-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.support-content {
    background: #ffffff;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.support-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e87524;
    margin-bottom: 2rem;
    text-align: center;
}

.support-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.support-item i {
    font-size: 2rem;
    color: #0d4f78;
    margin-top: 0.25rem;
    min-width: 30px;
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 0.5rem;
}

.support-item p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e87524;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0d4f78;
    box-shadow: 0 3px 10px rgba(13, 79, 120, 0.1);
}

.faq-header {
    padding: 0;
}

.faq-button {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    background-color: #f8f9fa;
}

.faq-button:hover {
    background-color: #f8f9fa;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d4f78;
    flex: 1;
    padding-right: 1rem;
}

.faq-button i {
    font-size: 1.2rem;
    color: #0d4f78;
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0;
}

.faq-content {
    padding: 0 2rem 1.5rem 2rem;
    color: #495057;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-content p {
    margin-bottom: 1rem;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* Contact Page Responsive */
@media (max-width: 991.98px) {
    .contact-info-section,
    .support-info-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 80px;
        height: 80px;
        border-radius: 18px;
    }
    
    .contact-icon i {
        font-size: 2.2rem;
    }
    
    .support-content {
        padding: 2rem 1.5rem;
    }
    
    .support-title {
        font-size: 1.75rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-button {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-page-title {
        font-size: 1.75rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.25rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        border-radius: 15px;
    }
    
    .contact-icon i {
        font-size: 2rem;
    }
    
    .contact-card-title {
        font-size: 1.2rem;
    }
    
    .support-content {
        padding: 1.5rem 1rem;
    }
    
    .support-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .support-item i {
        margin-top: 0;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-button {
        padding: 1rem 1.25rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-content {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Blog Page Styles */

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.blog-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e87524;
    margin-bottom: 1rem;
}

.blog-page-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 79, 120, 0.15);
    border-color: #0d4f78;
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 65%;
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
    color: #ffffff;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 3px 10px rgba(232, 117, 36, 0.3);
    border-radius: 8px;
}

.blog-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-meta-item {
    font-size: 0.875rem;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item i {
    font-size: 1rem;
    color: #0d4f78;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-title a {
    color: #0d4f78;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #e87524;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e87524;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    color: #0d4f78;
    gap: 0.75rem;
}

.blog-read-more i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.blog-empty i {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 1.5rem;
    display: block;
}

.blog-empty h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 0.75rem;
}

.blog-empty p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Blog Pagination */
.blog-pagination {
    text-align: center;
    padding: 2rem 0;
}

.blog-pagination .pagination {
    justify-content: center;
    margin-bottom: 0;
}

.blog-pagination .pagination .page-link {
    color: #0d4f78;
    border: 1px solid #e9ecef;
    padding: 0.625rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.blog-pagination .pagination .page-link:hover {
    background-color: #0d4f78;
    color: #ffffff;
    border-color: #0d4f78;
}

.blog-pagination .pagination .page-item.active .page-link {
    background-color: #e87524;
    border-color: #e87524;
    color: #ffffff;
}

.blog-pagination .pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #f8f9fa;
    border-color: #e9ecef;
    cursor: not-allowed;
}

/* Blog Page Responsive */
@media (max-width: 991.98px) {
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-page-title {
        font-size: 2rem;
    }
    
    .blog-page-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-date-badge {
        top: 10px;
        right: 10px;
        padding: 0.625rem 0.875rem;
        min-width: 55px;
    }
    
    .blog-day {
        font-size: 1.35rem;
    }
    
    .blog-month {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .blog-page-title {
        font-size: 1.75rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-date-badge {
        top: 8px;
        right: 8px;
        padding: 0.5rem 0.75rem;
        min-width: 50px;
    }
    
    .blog-day {
        font-size: 1.2rem;
    }
    
    .blog-month {
        font-size: 0.65rem;
    }
    
    .blog-empty {
        padding: 3rem 1.5rem;
    }
    
    .blog-empty i {
        font-size: 3rem;
    }
    
    .blog-empty h3 {
        font-size: 1.3rem;
    }
}

/* Blog Detail Page Styles */

/* Blog Detail Section */
.blog-detail-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.blog-detail-article {
    background: #ffffff;
}

.blog-detail-image {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 0;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    padding: 0;
}

.blog-detail-meta {
    margin-bottom: 1.5rem;
}

.blog-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e87524;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.blog-detail-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #495057;
}

.blog-detail-body p {
    margin-bottom: 1.5rem;
}

.blog-detail-body p:last-child {
    margin-bottom: 0;
}

.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4 {
    color: #0d4f78;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-detail-body h2 {
    font-size: 1.8rem;
}

.blog-detail-body h3 {
    font-size: 1.5rem;
}

.blog-detail-body h4 {
    font-size: 1.3rem;
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-detail-body li {
    margin-bottom: 0.75rem;
}

.blog-detail-body img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}

.blog-detail-body blockquote {
    border-left: 4px solid #e87524;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6c757d;
}

.blog-detail-body a {
    color: #0d4f78;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-detail-body a:hover {
    color: #e87524;
}

/* Sidebar Styles */
.blog-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-widget-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e87524;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

/* Recent Posts Widget */
.sidebar-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-post-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-post-link:hover {
    transform: translateX(5px);
}

.sidebar-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-post-link:hover .sidebar-post-image img {
    transform: scale(1.1);
}

.sidebar-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar-post-link:hover .sidebar-post-title {
    color: #e87524;
}

.sidebar-post-date {
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sidebar-post-date i {
    font-size: 0.85rem;
    color: #0d4f78;
}

/* Contact Widget */
.sidebar-contact-widget {
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    color: #ffffff;
    border: none;
}

.sidebar-contact-widget .sidebar-widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sidebar-contact-list li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-list i {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 0.25rem;
    min-width: 20px;
    flex-shrink: 0;
}

.sidebar-contact-list span {
    flex: 1;
}

/* Blog Detail Responsive */
@media (max-width: 991.98px) {
    .blog-detail-section {
        padding: 3rem 0;
    }
    
    .blog-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .blog-detail-title {
        font-size: 1.9rem;
    }
    
    .blog-detail-body {
        font-size: 1rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .sidebar-widget-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-title {
        font-size: 1.7rem;
    }
    
    .blog-detail-body {
        font-size: 0.95rem;
    }
    
    .blog-detail-body h2 {
        font-size: 1.5rem;
    }
    
    .blog-detail-body h3 {
        font-size: 1.3rem;
    }
    
    .blog-detail-body h4 {
        font-size: 1.15rem;
    }
    
    .sidebar-widget {
        padding: 1.25rem;
    }
    
    .sidebar-post-image {
        width: 70px;
        height: 70px;
    }
    
    .sidebar-post-title {
        font-size: 0.9rem;
    }
    
    .sidebar-contact-list li {
        font-size: 0.9rem;
    }
}

/* Home Page - Hero Banner Styles */

.hero-banner-section {
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-form-wrapper {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.hero-form-card {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}

.hero-form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 0.5rem;
    line-height: 1.3;
	letter-spacing: -0.01rem;
}

.hero-form-title .highlight {
    color: #e87524;
}

.hero-form-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Form Progress */
.form-progress {
    position: relative;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
    overflow: visible;
}

.progress-bar {
    background: linear-gradient(90deg, #e87524 0%, #ff8c42 100%);
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0d4f78;
}

/* Form Styles */
.hero-estimation-form {
    margin-top: 0;
}

.form-label {
    font-weight: 600;
    color: #0d4f78;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control,
.form-select {
    border: 1.5px solid #e9ecef;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d4f78;
    box-shadow: 0 0 0 0.2rem rgba(13, 79, 120, 0.15);
    outline: none;
}

.form-control.is-invalid,
.form-select.is-invalid,
select.is-invalid {
    border-color: #dc3545 !important;
    border-width: 2px;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus,
select.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback,
select.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    margin-top: 0.35rem;
    border: 2px solid #e9ecef;
}

.form-check-input:checked {
    background-color: #e87524;
    border-color: #e87524;
}

.form-check-input:focus {
    border-color: #0d4f78;
    box-shadow: 0 0 0 0.2rem rgba(232, 117, 36, 0.25);
}

.form-check-label {
    color: #495057;
    font-size: 0.95rem;
    margin-left: 0.5rem;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-left: none;
    color: #6c757d;
    font-weight: 500;
}

.input-group .form-control {
    border-right: none;
}

.file-upload-area {
    border: 2px dashed #e9ecef;
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: #0d4f78;
    background-color: #ffffff;
}

.file-upload-area input[type="file"] {
    margin-bottom: 0.75rem;
}

.file-upload-hint {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* Form Buttons */
.btn-form-submit {
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-form-submit:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #e87524 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 117, 36, 0.3);
    color: #ffffff;
}

.btn-form-back {
    background-color: #f8f9fa;
    color: #0d4f78;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.btn-form-back:hover {
    background-color: #e9ecef;
    border-color: #0d4f78;
    color: #0d4f78;
}

/* Hero Slider */
#heroSlider {
    position: relative;
    z-index: 2;
    min-height: 550px;
}

.carousel-inner {
    height: 100%;
}

.hero-slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 550px;
    position: relative;
}

.hero-slide-image {
    width: 100%;
    max-width: 550px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-slide-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.hero-slide-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-slide-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slide-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

/* Hero Banner Responsive */
@media (max-width: 1199.98px) {
    .hero-banner-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-form-card {
        padding: 2rem;
    }
    
    .hero-slide-title {
        font-size: 1.5rem;
    }
    
    .hero-slide-description {
        font-size: 0.95rem;
    }
    
    #heroSlider {
        min-height: 480px;
    }
    
    .hero-slide-content {
        min-height: 480px;
    }
}

@media (max-width: 991.98px) {
    .hero-banner-section {
        padding: 2rem 0;
    }
    
    .hero-form-wrapper {
        padding: 0.5rem 0;
        margin-bottom: 2rem;
    }
    
    .hero-form-card {
        padding: 1.5rem;
    }
    
    .hero-form-title {
        font-size: 1.3rem;
    }
    
    .hero-slide-title {
        font-size: 1.4rem;
    }
    
    .hero-slide-description {
        font-size: 0.9rem;
    }
    
    #heroSlider {
        min-height: 420px;
    }
    
    .hero-slide-content {
        min-height: 420px;
        padding: 1.25rem;
    }
    
    .hero-slide-image {
        max-width: 100%;
        margin-bottom: 1.25rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 38px;
        height: 38px;
    }
    
    .carousel-control-prev {
        left: 8px;
    }
    
    .carousel-control-next {
        right: 8px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-form-card {
        padding: 1.25rem;
    }
    
    .hero-form-title {
        font-size: 1.05rem;
    }
    
    .hero-form-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-slide-title {
        font-size: 1.25rem;
    }
    
    .hero-slide-description {
        font-size: 0.85rem;
    }
    
    #heroSlider {
        min-height: 380px;
    }
    
    .hero-slide-content {
        min-height: 380px;
        padding: 1rem;
    }
    
    .hero-slide-image {
        margin-bottom: 1rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }
    
    .btn-form-next,
    .btn-form-submit,
    .btn-form-back {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.features-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 0;
    line-height: 1.3;
}

.features-main-title .highlight {
    color: #e87524;
}

.feature-box {
    background: #ffffff;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d4f78 0%, #e87524 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 79, 120, 0.12);
    border-color: #0d4f78;
}

.feature-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 20px;
}

.feature-box:hover .feature-box-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
}

.feature-box-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.feature-box-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-box:hover .feature-box-title {
    color: #e87524;
}

.feature-box-text {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-feature-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 117, 36, 0.3);
}

.btn-feature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 117, 36, 0.4);
    color: #ffffff;
}

.btn-feature-cta i {
    font-size: 1.2rem;
}

/* Features Section Responsive */
@media (max-width: 991.98px) {
    .features-section {
        padding: 4rem 0;
    }
    
    .features-main-title {
        font-size: 1.9rem;
    }
    
    .feature-box {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-box-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
        border-radius: 18px;
    }
    
    .feature-box-icon i {
        font-size: 2.25rem;
        display: block;
        line-height: 1;
    }
    
    .feature-box-title {
        font-size: 1.25rem;
    }
    
    .btn-feature-cta {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .features-section {
        padding: 3rem 0;
    }
    
    .features-main-title {
        font-size: 1.6rem;
    }
    
    .feature-box {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-box-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    .feature-box-icon i {
        font-size: 2rem;
        display: block;
        line-height: 1;
    }
    
    .feature-box-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-box-text {
        font-size: 0.95rem;
    }
    
    .btn-feature-cta {
        font-size: 0.95rem;
        padding: 0.75rem 1.75rem;
    }
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.advantages-header {
    margin-bottom: 2rem;
}

.advantages-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.advantages-title .highlight {
    color: #e87524;
}

.advantages-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.advantage-card {
    background: #ffffff;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 79, 120, 0.15);
    border-color: #0d4f78;
}

.advantage-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
}

.advantage-icon i {
    font-size: 2rem;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.advantage-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 0;
    line-height: 1.4;
}

.advantage-card:hover .advantage-card-title {
    color: #e87524;
}

.advantages-content {
    padding-left: 2rem;
}

.advantages-content-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.advantages-content-title .highlight {
    color: #e87524;
}

.advantages-content-text {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.advantages-image-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.advantages-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.advantages-image:hover {
    transform: translateY(-5px);
}

.btn-advantages-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 79, 120, 0.25);
}

.btn-advantages-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 79, 120, 0.35);
    color: #ffffff;
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
}

.btn-advantages-cta i {
    font-size: 1.2rem;
}

/* Advantages Section Responsive */
@media (max-width: 991.98px) {
    .advantages-section {
        padding: 4rem 0;
    }
    
    .advantages-title {
        font-size: 1.75rem;
    }
    
    .advantages-subtitle {
        font-size: 1rem;
    }
    
    .advantages-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .advantages-content-title {
        font-size: 1.6rem;
    }
    
    .advantages-content-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-card {
        min-height: 130px;
        padding: 1.5rem 1.25rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.875rem;
    }
    
    .advantage-icon i {
        font-size: 1.75rem;
    }
    
    .advantage-card-title {
        font-size: 1rem;
    }
    
    .btn-advantages-cta {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .advantages-section {
        padding: 3rem 0;
    }
    
    .advantages-title {
        font-size: 1.5rem;
    }
    
    .advantages-subtitle {
        font-size: 0.95rem;
    }
    
    .advantages-content-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .advantages-content-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .advantage-card {
        min-height: 120px;
        padding: 1.25rem 1rem;
    }
    
    .advantage-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.75rem;
        border-radius: 12px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
    
    .advantage-card-title {
        font-size: 0.95rem;
    }
    
    .advantages-image-wrapper {
        margin-top: 1.5rem;
    }
    
    .btn-advantages-cta {
        font-size: 0.95rem;
        padding: 0.75rem 1.75rem;
    }
}

/* Home FAQ Section */
.home-faq-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.home-faq-image-wrapper {
    text-align: center;
    padding-right: 2rem;
}

.home-faq-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.home-faq-image:hover {
    transform: translateY(-5px);
}

.home-faq-content {
    padding-left: 1rem;
}

.home-faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.home-faq-title .highlight {
    color: #e87524;
}

.home-faq-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.home-faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    background: #ffffff;
    transition: all 0.3s ease;
}

.home-faq-item:hover {
    border-color: #0d4f78;
    box-shadow: 0 3px 10px rgba(13, 79, 120, 0.1);
}

.home-faq-header {
    padding: 0;
}

.home-faq-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-faq-button:not(.collapsed) {
    background-color: #f8f9fa;
}

.home-faq-button:hover {
    background-color: #f8f9fa;
}

.home-faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0d4f78;
    flex: 1;
    padding-right: 1rem;
}

.home-faq-button i {
    font-size: 1.1rem;
    color: #0d4f78;
    transition: transform 0.3s ease;
}

.home-faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.home-faq-body {
    padding: 0;
}

.home-faq-content-text {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: #495057;
    line-height: 1.7;
    font-size: 0.95rem;
}

.home-faq-content-text p {
    margin-bottom: 1rem;
}

.home-faq-content-text p:last-child {
    margin-bottom: 0;
}

/* Home FAQ Section Responsive */
@media (max-width: 991.98px) {
    .home-faq-section {
        padding: 4rem 0;
    }
    
    .home-faq-image-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .home-faq-content {
        padding-left: 0;
    }
    
    .home-faq-title {
        font-size: 1.9rem;
    }
    
    .home-faq-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .home-faq-button {
        padding: 1.1rem 1.25rem;
    }
    
    .home-faq-question {
        font-size: 1rem;
    }
    
    .home-faq-content-text {
        padding: 0 1.25rem 1.1rem 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .home-faq-section {
        padding: 3rem 0;
    }
    
    .home-faq-title {
        font-size: 1.6rem;
    }
    
    .home-faq-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .home-faq-button {
        padding: 1rem 1.1rem;
    }
    
    .home-faq-question {
        font-size: 0.95rem;
    }
    
    .home-faq-content-text {
        padding: 0 1.1rem 1rem 1.1rem;
        font-size: 0.9rem;
    }
}

/* Home Blog Section */
.home-blog-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.home-blog-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.home-blog-title .highlight {
    color: #e87524;
}

.home-blog-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.btn-home-blog {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 79, 120, 0.25);
}

.btn-home-blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 79, 120, 0.35);
    color: #ffffff;
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
}

.btn-home-blog i {
    font-size: 1.2rem;
}

/* Home Blog Section Responsive */
@media (max-width: 991.98px) {
    .home-blog-section {
        padding: 4rem 0;
    }
    
    .home-blog-title {
        font-size: 1.9rem;
    }
    
    .home-blog-subtitle {
        font-size: 1rem;
    }
    
    .btn-home-blog {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .home-blog-section {
        padding: 3rem 0;
    }
    
    .home-blog-title {
        font-size: 1.6rem;
    }
    
    .home-blog-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-home-blog {
        font-size: 0.95rem;
        padding: 0.75rem 1.75rem;
    }
}

/* Step Form Section */
.step-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: calc(100vh - 200px);
}

.step-form-wrapper {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.step-form-card {
    background: #ffffff;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}

.step-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-form-title .highlight {
    color: #e87524;
}

.step-form-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.step-estimation-form {
    margin-top: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.options-checkbox-wrapper {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-top: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 1rem;
}

.form-section-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.btn-form-back {
    background-color: #f8f9fa;
    color: #0d4f78;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-form-back:hover {
    background-color: #e9ecef;
    border-color: #0d4f78;
    color: #0d4f78;
}

/* Image Upload Styles */
.image-upload-wrapper {
    margin-top: 1rem;
}

.image-upload-area {
    border: 2px dashed #e9ecef;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-upload-area:hover,
.image-upload-area.drag-over {
    border-color: #0d4f78;
    background-color: #ffffff;
}

.upload-icon {
    font-size: 3rem;
    color: #0d4f78;
    margin-bottom: 1rem;
}

.upload-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 0.5rem;
}

.upload-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0.5rem 0;
}

.upload-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.upload-btn:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #e87524 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 117, 36, 0.3);
}

.upload-hint {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 1rem;
    margin-bottom: 0;
}

.image-preview-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.preview-item {
    position: relative;
    aspect-ratio: 1;
}

.preview-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.preview-item:hover .preview-image-wrapper {
    border-color: #0d4f78;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: rgba(220, 53, 69, 0.9);
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.preview-remove:hover {
    background-color: #dc3545;
    transform: scale(1.1);
}

@media (max-width: 575.98px) {
    .image-upload-area {
        padding: 2rem 1rem;
    }
    
    .upload-icon {
        font-size: 2rem;
    }
    
    .image-preview-gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }
}

@media (max-width: 991.98px) {
    .step-form-card {
        padding: 2rem;
    }
    
    .step-form-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .step-form-section {
        padding: 2rem 0;
    }
    
    .step-form-card {
        padding: 1.5rem;
    }
    
    .step-form-title {
        font-size: 1.5rem;
    }
    
    .step-form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Thank You Section */
.thank-you-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-wrapper {
    width: 100%;
}

.thank-you-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-icon i {
    font-size: 4rem;
    color: #ffffff;
    display: block;
    line-height: 1;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d4f78;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.thank-you-title .highlight {
    color: #e87524;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
}

.thank-you-message {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thank-you-message p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin: 0;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0d4f78;
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(13, 79, 120, 0.25);
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 79, 120, 0.35);
    background: linear-gradient(135deg, #e87524 0%, #ff8c42 100%);
    color: #ffffff;
}

.thank-you-actions .btn-outline-primary {
    border: 2px solid #0d4f78;
    color: #0d4f78;
    background: transparent;
}

.thank-you-actions .btn-outline-primary:hover {
    background: #0d4f78;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Thank You Section Responsive */
@media (max-width: 991.98px) {
    .thank-you-section {
        padding: 4rem 0;
    }
    
    .thank-you-card {
        padding: 3rem 2rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.1rem;
    }
    
    .thank-you-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .thank-you-section {
        padding: 3rem 0;
    }
    
    .thank-you-card {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .thank-you-icon i {
        font-size: 3rem;
    }
    
    .thank-you-title {
        font-size: 1.75rem;
    }
    
    .thank-you-subtitle {
        font-size: 1rem;
    }
    
    .thank-you-message {
        padding: 1.5rem;
    }
    
    .thank-you-message p {
        font-size: 1rem;
    }
    
    .info-item {
        padding: 1.25rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon i {
        font-size: 1.25rem;
    }
    
    .info-content h4 {
        font-size: 0.95rem;
    }
    
    .info-content p {
        font-size: 0.85rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn {
        width: 100%;
    }
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fixed-contact-btn {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.fixed-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
	border-radius: 50px;
}

.fixed-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.fixed-phone-btn {
    background: linear-gradient(135deg, #0d4f78 0%, #1565a0 100%);
    color: #ffffff;
	border-radius: 50px;
}

.fixed-phone-btn:hover {
    background: linear-gradient(135deg, #1565a0 0%, #0d4f78 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(13, 79, 120, 0.4);
    color: #ffffff;
}

.fixed-contact-btn i {
    font-size: 1.75rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.fixed-contact-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.fixed-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid currentColor;
    opacity: 0.6;
    animation: pulse 2s infinite;
    pointer-events: none;
	border-radius: 50px;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.fixed-contact-btn:hover .fixed-btn-pulse {
    animation: pulseHover 1s infinite;
}

@keyframes pulseHover {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Responsive Fixed Contact Buttons */
@media (max-width: 991.98px) {
    .fixed-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 0.875rem;
    }
    
    .fixed-contact-btn {
        width: 55px;
        height: 55px;
    }
    
    .fixed-contact-btn i {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .fixed-contact-buttons {
        bottom: 12px;
        right: 12px;
        gap: 0.75rem;
    }
    
    .fixed-contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .fixed-contact-btn i {
        font-size: 1.5rem;
    }
    
    .fixed-btn-pulse {
        border-width: 1.5px;
    }
}

@media (max-width: 375px) {
    .fixed-contact-buttons {
        bottom: 10px;
        right: 10px;
        gap: 0.625rem;
    }
    
    .fixed-contact-btn {
        width: 48px;
        height: 48px;
    }
    
    .fixed-contact-btn i {
        font-size: 1.4rem;
    }
}

/* Loading spinner animation */
@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.preview-loading-placeholder {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

