/* 
  Custom CSS for Shared Components
  Converted from Tailwind CSS 
*/

/* =========================================
   FOOTER SECTION
   ========================================= */
.site-footer {
    background-color: #17212B;
    color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid #1f2937;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }
}

/* Newsletter Banner */
.footer-newsletter {
    background-image: linear-gradient(to right, #063B66, #0A6EBD);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .footer-newsletter {
        flex-direction: row;
    }
}

.footer-newsletter-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
    transform: translate(2.5rem, -2.5rem);
}

.footer-newsletter-bg-icon i {
    width: 16rem;
    height: 16rem;
    color: #ffffff;
}

.footer-newsletter-content {
    position: relative;
    z-index: 10;
    max-width: 36rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-newsletter-content {
        text-align: left;
    }
}

.footer-newsletter-badge {
    color: #F5A623;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-newsletter-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .footer-newsletter-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

.footer-newsletter-desc {
    color: #dbeafe;
    font-size: 0.875rem;
}

.footer-newsletter-form {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .footer-newsletter-form {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .footer-newsletter-form {
        width: auto;
    }
}

.newsletter-success {
    background-color: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-success i {
    width: 1.25rem;
    height: 1.25rem;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .newsletter-input-group {
        flex-direction: row;
    }
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    outline: none;
    min-width: 260px;
    width: 100%;
}

.newsletter-input::placeholder {
    color: #bfdbfe;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 2px #F5A623;
}

.newsletter-btn {
    background-color: #F5A623;
    color: #17212B;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: none;
    cursor: pointer;
}

@media (min-width: 640px) {
    .newsletter-btn {
        width: auto;
    }
}

.newsletter-btn:hover {
    background-color: #e09419;
}

.newsletter-btn i {
    width: 1rem;
    height: 1rem;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Brand Column */
.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #063B66;
    color: #ffffff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.footer-logo-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: #F5A623;
}

.footer-brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.025em;
    display: block;
    line-height: 1;
}

.footer-brand-tag {
    font-size: 0.625rem;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
}

.footer-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-icon-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background-color: #1f2937;
    color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.social-icon-btn:hover {
    background-color: #0A6EBD;
    color: #ffffff;
}

/* Links Columns */
.footer-col-title {
    color: #F5A623;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-link-item {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: color 0.2s;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.footer-link-item i {
    width: 0.875rem;
    height: 0.875rem;
    margin-right: 0.5rem;
    transition: all 0.2s;
}

.footer-link-item.text-gray-i i {
    color: #6b7280;
}

.footer-link-item.text-accent-i i {
    color: #F5A623;
}

.footer-link-item.text-accent {
    color: #F5A623;
    font-weight: 600;
}

.footer-link-item:hover {
    color: #ffffff;
}

.footer-link-item.hover-accent:hover {
    color: #F5A623;
}

.footer-link-item:hover i.text-gray-i {
    color: #F5A623;
}

.footer-link-item:hover i.group-hover-slide {
    transform: translateX(0.25rem);
}

/* Contact Column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item.items-center {
    align-items: center;
}

.footer-contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #F5A623;
    flex-shrink: 0;
}

.footer-contact-icon.mt-1 {
    margin-top: 0.125rem;
}

.footer-contact-icon.mt-2 {
    margin-top: 0.25rem;
}

.footer-contact-text {
    line-height: 1.25;
}

.footer-contact-link {
    transition: color 0.2s;
    text-decoration: none;
    color: inherit;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-muted {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Bottom Bar */
.footer-bottom-bar {
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #9ca3af;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-bar {
        flex-direction: row;
    }
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-divider {
    color: #4b5563;
}

.footer-back-to-top {
    color: #F5A623;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.footer-back-to-top:hover {
    text-decoration: underline;
}

/* =========================================
   BRANDS WE DEAL SECTION
   ========================================= */
.brands-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
    background-color: #f9fafb;
}

.brands-decor-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-image: linear-gradient(to bottom right, rgba(219, 234, 254, 0.4), transparent);
    filter: blur(24px);
    z-index: 0;
    pointer-events: none;
}

.brands-decor-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 40%;
    height: 60%;
    border-radius: 50%;
    background-image: linear-gradient(to top left, rgba(254, 243, 198, 0.4), transparent);
    filter: blur(24px);
    z-index: 0;
    pointer-events: none;
}

.brands-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .brands-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .brands-container {
        padding: 0 2rem;
    }
}

.brands-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.brands-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(219, 234, 254, 0.5);
    color: #0A6EBD;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(191, 219, 254, 0.5);
    backdrop-filter: blur(4px);
}

.brands-badge i {
    width: 0.875rem;
    height: 0.875rem;
}

.brands-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 800;
    color: #063B66;
    letter-spacing: -0.025em;
    margin: 0;
}

@media (min-width: 640px) {
    .brands-title {
        font-size: 3rem;
        line-height: 1;
    }
}

.brands-title .gradient-text {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #0A6EBD, #F5A623);
}

.brands-desc {
    color: #4b5563;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.625;
    max-width: 42rem;
    margin: 0;
}

@media (min-width: 640px) {
    .brands-desc {
        font-size: 1.125rem;
    }
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.brand-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    border: 1px solid rgba(243, 244, 246, 0.8);
    overflow: hidden;
}

.brand-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.brand-card-hover-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.brand-card:hover .brand-card-hover-bg {
    opacity: 0.05;
}

.brand-card-content {
    position: relative;
    z-index: 10;
}

.brand-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    transition: transform 0.5s ease;
}

.brand-card:hover .brand-icon-wrapper {
    transform: scale(1.1);
}

.brand-icon-wrapper i {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
}

.brand-category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.25;
    transition: color 0.3s ease;
    margin: 0;
}

.brand-card:hover .brand-category-name {
    color: #063B66;
}

.brand-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.brand-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-tag {
    border-color: #e5e7eb;
    background-color: #ffffff;
}

.brand-tag-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    opacity: 0.7;
}

/* Category Colors */
.color-amber .brand-icon-wrapper, .color-amber.brand-card-hover-bg, .color-amber .brand-tag-dot { background-image: linear-gradient(to bottom right, #fbbf24, #f97316); }
.color-blue .brand-icon-wrapper, .color-blue.brand-card-hover-bg, .color-blue .brand-tag-dot { background-image: linear-gradient(to bottom right, #60a5fa, #6366f1); }
.color-emerald .brand-icon-wrapper, .color-emerald.brand-card-hover-bg, .color-emerald .brand-tag-dot { background-image: linear-gradient(to bottom right, #34d399, #14b8a6); }
.color-red .brand-icon-wrapper, .color-red.brand-card-hover-bg, .color-red .brand-tag-dot { background-image: linear-gradient(to bottom right, #f87171, #f43f5e); }
.color-cyan .brand-icon-wrapper, .color-cyan.brand-card-hover-bg, .color-cyan .brand-tag-dot { background-image: linear-gradient(to bottom right, #22d3ee, #3b82f6); }
.color-purple .brand-icon-wrapper, .color-purple.brand-card-hover-bg, .color-purple .brand-tag-dot { background-image: linear-gradient(to bottom right, #c084fc, #d946ef); }

/* =========================================
   BREADCRUMB SECTION
   ========================================= */
.breadcrumb-section {
    position: relative;
    color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #063B66;
    overflow: hidden;
}

@media (min-width: 768px) {
    .breadcrumb-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.breadcrumb-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transform: scale(1.05);
    transition: transform 1s ease;
}

.breadcrumb-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(6, 59, 102, 0.9), rgba(6, 59, 102, 0.8), rgba(10, 110, 189, 0.7));
}

.breadcrumb-container {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .breadcrumb-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .breadcrumb-container {
        padding: 0 2rem;
    }
}

.breadcrumb-content-wrapper {
    max-width: 48rem;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #bfdbfe;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .breadcrumb-nav {
        font-size: 0.875rem;
    }
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
    text-decoration: none;
    color: inherit;
}

.breadcrumb-link:hover {
    color: #ffffff;
}

.breadcrumb-home-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: #F5A623;
}

.breadcrumb-separator {
    width: 0.75rem;
    height: 0.75rem;
    color: #9ca3af;
}

.breadcrumb-current {
    color: #F5A623;
    font-weight: 600;
}

.breadcrumb-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .breadcrumb-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .breadcrumb-title {
        font-size: 3rem;
        line-height: 1;
    }
}

.breadcrumb-subtitle {
    font-size: 1rem;
    color: #dbeafe;
    font-weight: 300;
    line-height: 1.625;
    max-width: 42rem;
    margin: 0;
}

@media (min-width: 640px) {
    .breadcrumb-subtitle {
        font-size: 1.125rem;
    }
}

/* =========================================
   CONSULTATION MODAL SECTION
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

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

.modal-container {
    background-color: #ffffff;
    border-radius: 1.5rem;
    max-width: 42rem;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background-color: #063B66;
    color: #ffffff;
    padding: 1.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #F5A623;
    color: #17212B;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.modal-header-icon i {
    width: 1.25rem;
    height: 1.25rem;
}

.modal-header-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.modal-header-subtitle {
    font-size: 0.75rem;
    color: #bfdbfe;
    margin: 0;
}

.modal-close-btn {
    color: #d1d5db;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-close-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-success-state {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-success-icon {
    width: 4rem;
    height: 4rem;
    background-color: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.modal-success-icon i {
    width: 2.5rem;
    height: 2.5rem;
}

.modal-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #063B66;
    margin: 0;
}

.modal-success-text {
    color: #4b5563;
    max-width: 28rem;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.625;
}

.modal-success-text span {
    font-weight: 600;
    color: #111827;
}

.modal-ticket-info {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    padding: 1rem;
    font-size: 0.75rem;
    text-align: left;
    max-width: 28rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-ticket-title {
    font-weight: 700;
    color: #063B66;
    display: flex;
    align-items: center;
    margin: 0;
}

.modal-ticket-title i {
    width: 1rem;
    height: 1rem;
    color: #0A6EBD;
    margin-right: 0.375rem;
}

.modal-ticket-detail {
    margin: 0;
}

.modal-ticket-detail span:first-child {
    color: #6b7280;
}

.modal-success-btn {
    margin-top: 1rem;
    background-color: #063B66;
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    align-self: center;
}

.modal-success-btn:hover {
    background-color: #0A6EBD;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .modal-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.form-input-wrapper {
    position: relative;
}

.form-input-icon {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.75rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: #111827;
    transition: all 0.2s;
    outline: none;
}

.form-input.has-icon {
    padding-left: 2.25rem;
}

.form-input:focus {
    box-shadow: 0 0 0 2px #0A6EBD;
    background-color: #ffffff;
}

textarea.form-input {
    resize: vertical;
}

.modal-form-footer {
    padding-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-privacy-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.modal-submit-btn {
    background-color: #F5A623;
    color: #17212B;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.modal-submit-btn:hover {
    background-color: #e09419;
}

/* =========================================
   FLOATING CONTACT SECTION
   ========================================= */
.floating-contact-wrapper {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.floating-contact-menu {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    padding: 1rem;
    width: 16rem;
    animation: fadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #1f2937;
}

.floating-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.5rem;
}

.floating-contact-title {
    font-weight: 700;
    color: #063B66;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-contact-close {
    color: #9ca3af;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.floating-contact-close:hover {
    color: #4b5563;
}

.floating-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: background-color 0.2s;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    font-size: 0.75rem;
    text-decoration: none;
    color: #ffffff;
}

.floating-contact-whatsapp {
    background-color: #059669;
}

.floating-contact-whatsapp:hover {
    background-color: #047857;
}

.floating-contact-call {
    background-color: #063B66;
}

.floating-contact-call:hover {
    background-color: #0A6EBD;
}

.floating-contact-quote {
    width: 100%;
    background-color: #F5A623;
    color: #17212B;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.floating-contact-quote:hover {
    background-color: #e09419;
}

.floating-contact-link i {
    width: 1rem;
    height: 1rem;
}

.floating-contact-link i.text-accent {
    color: #F5A623;
}

.floating-contact-whatsapp i {
    font-size: 1.125rem;
}

.floating-contact-btn {
    background-color: #063B66;
    color: #ffffff;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.floating-contact-btn:hover {
    background-color: #0A6EBD;
    transform: scale(1.1);
}

.floating-contact-dot {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 0.875rem;
    height: 0.875rem;
    background-color: #F5A623;
    border-radius: 50%;
}

.floating-contact-dot.animate-ping {
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.floating-contact-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.floating-contact-btn i.text-accent {
    color: #F5A623;
}

/* =========================================
   SERVICE CARD COMPONENT
   ========================================= */
.service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.375rem);
}

.service-card-img-container {
    position: relative;
    height: 13rem;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.625rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-badge i {
    width: 1.5rem;
    height: 1.5rem;
}

.service-card-title-wrapper {
    position: absolute;
    bottom: 0.75rem;
    left: 1rem;
    right: 1rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
    margin: 0;
}

.service-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-desc {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.service-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-card-feature {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #374151;
    font-weight: 500;
}

.service-card-feature i {
    width: 0.875rem;
    height: 0.875rem;
    color: #F5A623;
    margin-right: 0.375rem;
    flex-shrink: 0;
}

.service-card-feature span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.service-card-footer {
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.service-card-btn {
    width: 100%;
    background-color: #063B66;
    color: #ffffff;
    font-weight: 600;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.service-card-btn:hover {
    background-color: #0A6EBD;
}

.service-card:hover .service-card-btn {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card-btn i {
    width: 1rem;
    height: 1rem;
    color: #F5A623;
    transition: transform 0.2s;
}

.service-card:hover .service-card-btn i {
    transform: translateX(0.25rem);
}

/* =========================================
   PARTNERS LOGOS SECTION
   ========================================= */
.partners-logos-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.partners-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 640px) {
    .partners-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .partners-container {
        padding: 0 2rem;
    }
}

.partners-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partners-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17212B;
    text-align: center;
    position: relative;
    margin: 0;
    padding-bottom: 1rem;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background-color: #F5A623;
    border-radius: 0.125rem;
}

.partners-grid-8 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .partners-grid-8 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.partners-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .partners-grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.partner-logo-box {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.partner-logo-box:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo-box:hover .partner-logo-img {
    transform: scale(1.05);
}
