/* Font Families */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-400italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-500italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display/playfair-display-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'Roboto', sans-serif;
    padding-top: 76px;
    color: #000000;
}

body.offcanvas-open {
    padding-right: 0 !important;
}

body.modal-open,
.fixed-top,
.sticky-top {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: rgba(248, 249, 250, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 991.98px) {
    .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 70px);
    }
    
    .logo-img {
        height: clamp(32px, 8vw, 48px);
        max-width: 100%;
        width: auto;
    }
    
    .navbar-toggler {
        flex: 0 0 auto;
        min-width: 44px;
        border: none;
    }
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:focus-visible {
    outline: none;
    box-shadow: none;
}

.navbar-nav .nav-item {
    margin: 0 0.8rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    color: #333;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f3b90e;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #f3b90e;
}

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

.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-section h2.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-cta-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: min(100%, 520px);
    margin: 0 auto;
}

.hero-cta-secondary .btn {
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.hero-section p.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header (for secondary pages) */
.page-header {
    position: relative;
    padding: 3rem 0 3rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header .row {
    display: flex;
    align-items: center;
    min-height: 200px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
}

.spec-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.spec-list > li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.spec-list > li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #f3b90e;
    font-weight: bold;
}

.spec-list ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.spec-list ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.spec-list ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
}

.checkmark-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.checkmark-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.checkmark-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #f3b90e;
    font-weight: bold;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    padding-left: 1.5rem;
    border-left: 4px solid #f3b90e;
    margin: 1.5rem 0;
}

/* Feature Cards */
.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.btn-primary {
    background-color: #0a37b3;
    color: #ffffff;
    border: 1px solid #f3b90e;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #f3b90e;
    color: #1a1a1a;
    border-color: #f3b90e;
}

/* Contact Form */
.contact-form {
    max-width: 100%;
}

.contact-captcha-block .cf-turnstile-lazy {
    min-height: 65px;
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #f3b90e;
    box-shadow: 0 0 0 0.2rem rgba(243, 185, 14, 0.25);
    outline: none;
}

.contact-form .form-control[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-options .form-check {
    margin: 0;
}

.contact-options .form-check-input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.contact-options .form-check-input:checked {
    background-color: #f3b90e;
    border-color: #f3b90e;
}

.contact-options .form-check-label {
    margin-left: 0.5rem;
    cursor: pointer;
    color: #333;
}

/* Footer */
footer {
    margin-top: 0;
}

.footer-dark {
    background-color: #1a1a1a;
    background-image: url('../img/footer-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.footer-dark .container {
    position: relative;
    z-index: 1;
}

.footer-logo-section {
    margin-bottom: 4rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-navigation {
    padding-bottom: 3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f3b90e;
}

.footer-copyright-section {
    margin-top: 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
    opacity: 0.8;
}

.footer-copyright .site-version {
    opacity: 0.7;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    body {
        padding-top: 75px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section h2.hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-section p.hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 72px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section h2.hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section p.hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-logo {
        height: 40px;
        max-width: calc(100vw - 2rem);
    }
    
    .btn.btn-primary {
        width: 100%;
    }
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1040;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Roboto', sans-serif;
}

.whatsapp-toggle {
    position: relative;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    animation: whatsapp-bounce 2.8s ease-in-out infinite;
}

.whatsapp-toggle::before,
.whatsapp-toggle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background: rgba(37, 211, 102, 0.25);
    z-index: -1;
    animation: whatsapp-pulse 2.4s ease-out infinite;
}

.whatsapp-toggle::after {
    inset: -15px;
    animation-delay: 0.8s;
}

.whatsapp-toggle:hover {
    background: #1fbd5a;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45);
}

.whatsapp-icon,
.whatsapp-close-icon {
    width: 26px;
    height: 26px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-close-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(-45deg) scale(0.75);
}

.whatsapp-widget.is-open .whatsapp-icon {
    opacity: 0;
    transform: rotate(45deg) scale(0.75);
}

.whatsapp-widget.is-open .whatsapp-close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.whatsapp-widget.is-open .whatsapp-toggle {
    animation: none;
}

.whatsapp-notification {
    position: absolute;
    top: 0;
    right: -1px;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #ff4d4f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.whatsapp-widget.is-open .whatsapp-notification {
    display: none;
}

.whatsapp-teaser {
    position: relative;
    min-width: 244px;
    height: 54px;
    box-sizing: border-box;
    margin-bottom: 0;
    padding: 0 3.05rem 0 1rem;
    border-radius: 999px;
    background: #ffffff;
    color: #1f2933;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform-origin: right center;
    animation:
        whatsapp-teaser-in 0.45s ease both,
        whatsapp-teaser-breathe 3.2s ease-in-out 0.55s infinite;
}

.whatsapp-teaser span {
    display: block;
    color: #25d366;
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.whatsapp-teaser strong {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.12;
}

.whatsapp-teaser i,
.whatsapp-teaser i::before,
.whatsapp-teaser i::after {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #80e7a6;
    animation: whatsapp-dot-typing 1.35s ease-in-out infinite;
    will-change: opacity, transform;
}

.whatsapp-teaser i {
    right: 1.28rem;
    top: 50%;
    margin-top: -3px;
    animation-delay: 0.18s;
}

.whatsapp-teaser i::before,
.whatsapp-teaser i::after {
    content: '';
    top: 0;
}

.whatsapp-teaser i::before {
    right: 10px;
    animation-delay: 0s;
}

.whatsapp-teaser i::after {
    left: 10px;
    animation-delay: 0.36s;
}

.whatsapp-widget.is-open .whatsapp-teaser {
    visibility: hidden;
    opacity: 0;
    animation: none;
    pointer-events: none;
    transform: translateX(12px) scale(0.95);
}

.whatsapp-chat-card {
    position: absolute;
    right: 0;
    bottom: 5.5rem;
    width: min(340px, calc(100vw - 2rem));
    overflow: hidden;
    border-radius: 18px;
    background: #f7efe4;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-widget.is-open .whatsapp-chat-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.whatsapp-chat-header {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    align-items: center;
    padding: 1.05rem;
    background: #087565;
    color: #ffffff;
}

.whatsapp-agent-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.whatsapp-agent-avatar img {
    width: 30px;
    height: 30px;
}

.whatsapp-agent-status {
    position: absolute;
    right: 0;
    bottom: 1px;
    width: 11px;
    height: 11px;
    border: 2px solid #087565;
    border-radius: 50%;
    background: #25d366;
}

.whatsapp-chat-kicker,
.whatsapp-chat-title,
.whatsapp-chat-status,
.whatsapp-message p {
    margin: 0;
}

.whatsapp-chat-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.whatsapp-chat-title {
    margin-top: 0.15rem;
    font-size: 0.9rem;
    font-weight: 800;
}

.whatsapp-chat-status {
    margin-top: 0.1rem;
    font-size: 0.76rem;
}

.whatsapp-close {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.14);
    opacity: 1;
}

.whatsapp-chat-body {
    padding: 1rem;
    background-image:
        radial-gradient(rgba(8, 117, 101, 0.08) 1px, transparent 1px),
        radial-gradient(rgba(8, 117, 101, 0.06) 1px, transparent 1px);
    background-position: 0 0, 20px 20px;
    background-size: 40px 40px;
}

.whatsapp-chat-date {
    margin-bottom: 0.75rem;
    color: #9c9285;
    font-size: 0.78rem;
    text-align: center;
}

.whatsapp-message {
    position: relative;
    max-width: 260px;
    padding: 0.85rem 1rem 1.35rem;
    border-radius: 8px;
    background: #ffffff;
    color: #2b3137;
    font-size: 0.9rem;
    line-height: 1.45;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.whatsapp-message p + p {
    margin-top: 0.35rem;
}

.whatsapp-message-time {
    position: absolute;
    right: 0.8rem;
    bottom: 0.55rem;
    color: #a7a7a7;
    font-size: 0.66rem;
}

.whatsapp-chat-cta {
    margin: 0.75rem;
    min-height: 48px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-chat-cta:hover {
    background: #1fbd5a;
    color: #ffffff;
    transform: translateY(-1px);
}

.whatsapp-chat-cta svg {
    width: 20px;
    height: 20px;
}

@keyframes whatsapp-pulse {
    0% {
        opacity: 0.65;
        transform: scale(0.85);
    }
    70% {
        opacity: 0;
        transform: scale(1.35);
    }
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    8% {
        transform: translateY(-5px);
    }
    16% {
        transform: translateY(0);
    }
}

@keyframes whatsapp-teaser-in {
    from {
        opacity: 0;
        transform: translateX(16px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes whatsapp-teaser-breathe {
    0%, 100% {
        transform: translateX(0) scale(1);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    }
    50% {
        transform: translateX(-4px) scale(1.015);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    }
}

@keyframes whatsapp-dot-typing {
    0%, 70%, 100% {
        opacity: 0.45;
        transform: scale(0.72);
    }
    35% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-widget {
        right: 1rem;
        bottom: 1rem;
    }

    .whatsapp-toggle {
        width: 54px;
        height: 54px;
    }

    .whatsapp-teaser {
        display: none;
    }

    .whatsapp-chat-card {
        bottom: 4.85rem;
        width: calc(100vw - 2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-toggle,
    .whatsapp-toggle::before,
    .whatsapp-toggle::after,
    .whatsapp-teaser {
        animation: none;
    }

    .whatsapp-toggle,
    .whatsapp-chat-card,
    .whatsapp-icon,
    .whatsapp-close-icon,
    .whatsapp-chat-cta,
    .thank-you-whatsapp-cta {
        transition: none;
    }

    .thank-you-whatsapp-cta {
        animation: none;
    }
}

/* Thank You Page */
.thank-you-body {
    padding-top: 0;
    background: #fbfaf7;
}

.thank-you-body #mainNavbar,
.thank-you-body .footer-dark,
.thank-you-body .whatsapp-widget {
    display: none;
}

.thank-you-page {
    min-height: 100vh;
    padding: 1.25rem 0 4.5rem;
    background-color: #fbfaf7;
    background-image:
        linear-gradient(rgba(17, 24, 39, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
}

.thank-you-topbar {
    width: min(100% - 3rem, 1120px);
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.thank-you-logo {
    width: min(620px, 64vw);
    height: auto;
    display: block;
}

.thank-you-back-link,
.thank-you-return > a {
    color: #2b3137;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.thank-you-back-link:hover,
.thank-you-return > a:hover {
    color: #f3b90e;
}

.thank-you-hero {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-check {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    border: 2px solid #f3b90e;
    border-radius: 50%;
    background: #51565f;
    color: #f3b90e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(81, 86, 95, 0.18);
}

.thank-you-check svg {
    width: 44px;
    height: 44px;
}

.thank-you-kicker,
.thank-you-whatsapp-kicker {
    margin: 0;
    color: #f3b90e;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.48em;
    text-transform: uppercase;
}

.thank-you-title {
    margin: 1rem 0 1.6rem;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 0.95;
}

.thank-you-title span,
.thank-you-title em {
    display: block;
}

.thank-you-title span {
    color: #000000;
    font-size: clamp(3.1rem, 7vw, 4.9rem);
    font-weight: 700;
    font-style: normal;
}

.thank-you-title em {
    color: #f3b90e;
    font-size: clamp(2.75rem, 6.4vw, 4.35rem);
    font-weight: 400;
    font-style: italic;
}

.thank-you-divider {
    width: 92px;
    height: 1px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(90deg, transparent, #f3b90e, transparent);
}

.thank-you-intro {
    max-width: 770px;
    margin: 0 auto;
    color: #111827;
    font-size: 1.08rem;
    line-height: 1.65;
}

.thank-you-intro strong {
    font-weight: 800;
}

.thank-you-intro-secondary {
    margin-top: 0.9rem;
}

.thank-you-benefits {
    margin: 2.5rem auto 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    max-width: 680px;
}

.thank-you-benefit {
    min-height: 66px;
    padding: 0.85rem 1rem;
    border-radius: 5px;
    background: rgba(167, 169, 173, 0.82);
    color: #2f3338;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.35;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.thank-you-benefit span {
    color: #f3b90e;
    flex: 0 0 auto;
    display: inline-flex;
}

.thank-you-benefit svg {
    width: 17px;
    height: 17px;
}

.thank-you-whatsapp-card {
    max-width: 768px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.05rem);
    border: 1px solid rgba(243, 185, 14, 0.75);
    border-radius: 16px;
    background: #535861;
    color: #000000;
    box-shadow: 0 24px 55px rgba(28, 32, 38, 0.18);
}

.thank-you-whatsapp-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.42em;
}

.thank-you-whatsapp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.thank-you-whatsapp-icon svg {
    width: 19px;
    height: 19px;
}

.thank-you-whatsapp-card h2 {
    margin: 0 0 1.35rem;
    color: #000000;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.65rem, 3.2vw, 2rem);
    font-weight: 500;
}

.thank-you-whatsapp-card > p:not(.thank-you-whatsapp-note) {
    max-width: 620px;
    margin: 0;
    color: #090b0f;
    font-size: 1.02rem;
    line-height: 1.7;
}

.thank-you-whatsapp-cta {
    position: relative;
    width: min(100%, 540px);
    min-height: 68px;
    margin: 2.2rem auto 0.85rem;
    padding: 1rem 1.35rem;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.04rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 40px -10px rgba(37, 211, 102, 0.6);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    animation: wa-pulse 2.4s ease-in-out infinite;
}

.thank-you-whatsapp-cta:hover {
    background: #1fbd5a;
    color: #ffffff;
    transform: scale(1.02);
}

.thank-you-whatsapp-cta svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

@keyframes wa-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px -10px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 10px 40px -10px rgba(37, 211, 102, 0.6), 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

.thank-you-whatsapp-note {
    margin: 0;
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.86rem;
    font-style: italic;
    text-align: center;
}

.thank-you-return {
    margin: 3rem 0 0;
    text-align: center;
}

.thank-you-return > a {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.thank-you-alt-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin: 2.5rem auto 0;
    max-width: 720px;
}

.thank-you-alt-actions .btn {
    flex: 1 1 200px;
    min-height: 3.25rem;
    padding: 1rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
}

.thank-you-alt-actions .btn:hover,
.thank-you-alt-actions .btn:focus {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .thank-you-page {
        padding: 1rem 0 3rem;
        background-size: 42px 42px;
    }

    .thank-you-topbar {
        width: min(100% - 2rem, 1120px);
        align-items: center;
        margin-bottom: 2rem;
    }

    .thank-you-logo {
        width: min(66vw, 360px);
    }

    .thank-you-back-link {
        font-size: 0.82rem;
    }

    .thank-you-check {
        width: 78px;
        height: 78px;
        margin-bottom: 1.55rem;
    }

    .thank-you-check svg {
        width: 36px;
        height: 36px;
    }

    .thank-you-kicker,
    .thank-you-whatsapp-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.28em;
    }

    .thank-you-intro {
        font-size: 0.98rem;
    }

    .thank-you-benefits {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 2rem auto 3rem;
        max-width: 360px;
    }

    .thank-you-alt-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
    }

    .thank-you-alt-actions .btn {
        flex: 1 1 auto;
        width: 100%;
    }

    .thank-you-whatsapp-card {
        padding: 1.6rem;
        border-radius: 14px;
    }

    .thank-you-whatsapp-cta {
        min-height: 58px;
        font-size: 0.9rem;
    }
}

/* Specification Items */
.spec-image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.spec-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.spec-item {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
}

.spec-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
    line-height: 1.4;
}

.hover-image {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    height: auto;
}

.hover-image:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Offcanvas width */
.offcanvas.offcanvas-end {
    width: 600px;
    max-width: 90vw;
}

/* Offcanvas logo */
.offcanvas-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* News Blocks */
.news-block-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.news-block-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.news-block {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-block-link:hover .news-block {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.news-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.news-block-link:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #999;
}

.news-date {
    color: #999;
}

.news-author {
    color: #999;
    position: relative;
    padding-left: 1rem;
}

.news-author::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}

.news-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

@media (max-width: 991.98px) {
    .news-image-wrapper {
        height: 220px;
    }
    
    .news-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .news-image-wrapper {
        height: 200px;
    }
    
    .news-content {
        padding: 1.25rem;
    }
    
    .news-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .news-meta {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        gap: 0.75rem;
    }
    
    .news-author {
        padding-left: 0.75rem;
    }
    
    .news-intro {
        font-size: 0.95rem;
    }
}

/* News Detail Page */
.back-to-news-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.back-to-news-link:hover {
    color: #f3b90e;
    text-decoration: none;
    opacity: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #666;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.article-date {
    color: #666;
}

.article-author {
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.article-author::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666;
}

.article-content {
    padding-top: 2rem;
}

.article-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
}

.article-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-image-wrapper {
    margin: 2.5rem 0;
}

.article-image-wrapper img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .back-to-news-link {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .article-meta {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-author {
        padding-left: 0;
    }
    
    .article-author::before {
        display: none;
    }
    
    .article-content {
        padding-top: 1.5rem;
    }
    
    .article-content .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .article-heading {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .article-image-wrapper {
        margin: 1.5rem 0;
    }
    
    .article-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Explore / Design Page Tabs */
.explore-nav-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 76px;
    z-index: 1020;
    background-color: #ffffff;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 0;
    padding: 1.5rem 0 1rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    left: 0;
    right: 0;
}

.explore-nav-scroll {
    overflow: visible;
}

.explore-nav {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    border-bottom: none;
}

.explore-nav .nav-item {
    margin: 0 0.5rem;
}

.explore-nav .nav-link {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    padding: 0rem 0.5rem;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-nav .nav-link:hover {
    color: #f3b90e;
    border-bottom-color: #f3b90e;
    background: transparent;
}

.explore-nav .nav-link.active {
    color: #333;
    border-bottom-color: #f3b90e;
    background: transparent;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
}

/* Gallery Grid */
.gallery-grid {
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    display: block;
}

.tab-pane img {
    width: 100%;
    height: 234px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.ga-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .explore-nav-wrapper {
        top: 72px;
        padding: 0.75rem 0;
    }
    
    .explore-nav-scroll {
        padding: 0;
    }
    
    .explore-nav-scroll .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .explore-nav {
        justify-content: center;
        margin-bottom: 0;
        padding: 0;
        gap: 0.25rem;
    }
    
    .explore-nav .nav-item {
        margin: 0.25rem;
        flex: 0 0 auto;
    }
    
    .explore-nav .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .explore-nav-wrapper {
        padding: 0.6rem 0;
    }
    
    .explore-nav-scroll .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .explore-nav {
        gap: 0.2rem;
    }
    
    .explore-nav .nav-item {
        margin: 0.2rem;
    }
    
    .explore-nav .nav-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        letter-spacing: 0.3px;
    }
}

/* YouTube Video Link */
.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF0000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: transparent;
}

.youtube-link:hover {
    color: #ffffff;
    background-color: #FF0000;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.youtube-link:focus {
    outline: 2px solid #FF0000;
    outline-offset: 2px;
}

.youtube-link::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF0000'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.youtube-link:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .youtube-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .youtube-link::before {
        width: 20px;
        height: 20px;
    }
}

/* GLightbox - Hide titles and descriptions */
.gslide-title,
.gslide-description,
.gslide-description.description-bottom {
    display: none !important;
}

/* Accessibility: Fix contrast for links in bg-light sections (excluding navbar) */
a.contrast-link {
    color: #0a37b3 !important;
    text-decoration: underline;
    font-weight: 500;
}

a.contrast-link:focus {
    color: #082a8a !important;
    text-decoration: underline;
}

#faqAccordion .accordion-button {
    font-size: 1.15rem;
    font-weight: 700 !important;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background-color: var(--bs-light);
    color: inherit;
}

#faqAccordion .accordion-button:focus,
#faqAccordion .accordion-button:focus-visible {
    box-shadow: none;
    outline: none;
}