/* Font faces */
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito/Nunito-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito/Nunito-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

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

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

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

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

:root {
    --primary: #8b4513;        /* Warm brown */
    --secondary: #2f4f4f;      /* Dark slate gray */
    --text-color: #333333;     /* Standard dark gray */
    --heading-color: #1c1c1c;  /* Near black */
    --link-color: #cd853f;     /* Warm gold/tan */
    --link-hover-color: #a0522d; /* Darker tan on hover */
}

::placeholder {
    font-size: .8rem;
    font-style: italic;
    color: rgba(58, 57, 57, 0.39);
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    padding: 0;
}

html {
    font-optical-sizing: auto;
    font-size: 100%;
    font-style: normal;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: "Nunito", sans-serif;
    line-height: inherit;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    margin: 0;
}

:focus {
    outline: 0;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important
}

.custom-form-label {
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: 700;
}

.btn-blue {
    background-color: #2490eb;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.btn-blue:hover {
    background-color: #18100f; 
    color: #ffffff;
}

.btn-grey {
    background-color: #6c757d;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.btn-grey:hover {
    background-color: #5c636a; 
    color: #ffffff;
}

.btn-blue:disabled {
    background-color: #2490eb;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.65;
}


.btn-white {
    background-color: #ffffff;
    color: var(--text-color);
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.btn-white:hover {
    background-color: #dfdcdc; 
    color: var(--text-color);
}

/* Styles for desktop menu */
header {
    border-bottom: 1px solid #ccc;
}
header .desktop-menu .desktop-menu-wrapper .top-menu {
    background-color: var(--primary);
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul {
    margin: 0;
    padding: 0;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul li {
    list-style: none;
    display: inline-block;
    color: var(--white-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul li a .email-icon {
    margin-top: 3px;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-left ul li a .phone-icon {
    margin-top: 3px;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-right ul {
    margin: 0;
    padding: 0;
    display: flex;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-right ul li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-right ul li a {
    color: #ffffff;
    padding: 10px 15px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

header .desktop-menu .desktop-menu-wrapper .top-menu .top-right ul li a:hover {
    background-color: #219294;
}

header .desktop-menu .main-menu {
    background-color: #ffffff;
    padding-top: 25px;
    padding-bottom: 25px;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .nav-menu ul {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    list-style: none;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .nav-menu ul li {
    position: relative;
    margin-right: 30px;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .nav-menu ul li a {
    font-size: 14px;  
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 22px;
    text-decoration: none;
    color: var(--text-color);
    font-family: inherit;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .cta-btn .btn-blue {
    background-color: #2490eb;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .cta-btn .btn-blue .bi {
    margin-top: 3px;
    margin-right: 5px;
}

header .desktop-menu .main-menu .main-menu-wrapper .right-content .cta-btn .btn-blue:hover {
    background-color: #18100f;
}

/*
header .desktop-menu .main-menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 1.6s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
*/

/* Styles for mobile menu */
.mobile-menu .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040; /* Bootstrap's modal z-index */
    display: none;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1041; /* Bootstrap's modal z-index + 1 */
    transition: left 0.3s ease;
}

.mobile-menu-content.show {
    left: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.mobile-menu .menu-list {
    padding: 20px 0px;
}

.mobile-menu .menu-list ul li {
    border-bottom: 1px solid #cccccc7a;
    padding: 10px 15px;
    
}

.mobile-menu .menu-list ul li:hover {
    background-color: #b6d8f5;
}

.mobile-menu .menu-list ul li a {
    text-decoration: none;
    color: var(--link-color);
    display: block;
}

.mobile-menu .menu-list ul li a:hover {
    color: var(--link-hover-color);
}


/* Main styles */
.wrapper {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Footer styles */
footer {
    position: relative;
    background-color: var(--primary);
    padding-top: 60px;
}

.no-footer {
    padding-top: 0;
}

.no-footer .copyright {
    padding-top: 10px;
    padding-bottom: 10px;
}

.no-footer .copyright p {
    margin-bottom: 0;
    font-size: .85rem;
}

footer .copyright {
    border-top: 1px solid #ffffff31;
    padding-top: 20px;
}

footer .newsletter-wrapper {
    background-color: var(--primary);
    padding: 50px 30px;
    width: 80%;
    margin: 0 auto;
}

footer .main-text h4 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
}

footer .newsletter-wrapper .form-fields {
    margin-top: 20px;
}

footer .newsletter-wrapper .form-fields .btn-white {
    margin-top: 15px;
}

@media (min-width: 992px) { 
    footer .newsletter-wrapper {
        padding-right: 40px;
        padding-left: 40px;
    }
    footer .newsletter-wrapper .form-fields {
        display: flex;
        margin-top: 0px;
    }

    footer .newsletter-wrapper .form-fields .form-control {
        padding: 10px 15px;
    }

    footer .newsletter-wrapper .form-fields .btn-white {
        margin-left: 10px;
        margin-top: 0px;
    }
}

footer .newsletter-wrapper .form-fields .form-control {
    border-radius: 3px !important;
}

footer .f-desc {
    color: #ffffff;
}


footer .social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
footer .social-icon svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    transition: all 0.3s ease;
}
  

footer .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
  

footer .social-icons a:nth-child(1) .social-icon:hover {
    background-color: #1877F2;
}
  
footer .social-icons a:nth-child(2) .social-icon:hover {
    background-color: #000000;
}
  
footer .social-icons a:nth-child(3) .social-icon:hover {
    background-color: #FF0050;
}
  
footer .social-icons a:nth-child(4) .social-icon:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

footer h5 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

footer .custom-list li {
    position: relative;
    padding-left: 25px; /* Adjust spacing for icon */
    margin-bottom: 10px; /* Adjust spacing between list items */
}

footer .custom-list li a {
    text-decoration: none;
    color: #ffffff;
}

footer .custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffffff" class="bi bi-chevron-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>') no-repeat center center;
    background-size: 16px 16px; /* Ensure the icon is properly sized */
  }

  footer .custom-contact-list li {
    display: flex;
    align-items: center;
    color: #ffffff; /* Ensure the text is white */
    margin-bottom: 10px; /* Spacing between list items */
  }
  
  footer .custom-contact-list svg {
    margin-right: 10px; /* Spacing between icon and text */
    fill: #ffffff; /* Change the SVG color to white */
  }
  
/* FAQ styles */
.faq-header {
    background-color: #f7faff;
    padding: 100px 25px;
}

.accordion-button:not(.collapsed) {
    background-color: #2490eb;
    color: #ffffff;
    font-weight: 600;
}

.accordion-button {
    background-color: #f4f6f9;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: var(--bs-accordion-btn-icon-transform);
}

.custom-page-content p {
    font-family: inherit;
    font-size: 1.1rem;
}

.custom-page-title h1 {
    font-size: 2.4rem;
    font-weight: 800;
}

.custom-page-content ul {
    list-style:disc;
    padding-left: 2.5rem;
}

.custom-page-content h2 {
    font-family: inherit;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2rem;
}

.custom-page-content h3 {
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 2rem;
}

/* Cookie Consent Banner Styles - CookieYes inspired design */

/* Overlay */
.cc-overlay-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: none;
    animation: cc-fade-in 0.3s ease-in-out;
}

/* Main container */
.cc-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000000;
    display: none;
    animation: cc-slide-up 0.3s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
}

.cc-inner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

/* Header */
.cc-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.cc-cookie-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.cc-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cc-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Categories */
.cc-categories {
    margin-bottom: 30px;
}

.cc-category {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.cc-category:hover {
    border-color: #8b4513;
}

.cc-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.cc-category-header:hover {
    background-color: #f0f1f3;
}

.cc-category-info {
    flex: 1;
}

.cc-category-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cc-category-desc {
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Toggle switch */
.cc-toggle-wrapper {
    position: relative;
    display: inline-block;
}

.cc-toggle {
    width: 52px;
    height: 28px;
    position: relative;
    display: inline-block;
}

.cc-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cc-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.cc-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cc-toggle input:checked + .cc-toggle-slider {
    background-color: #8b4513;
}

.cc-toggle input:checked + .cc-toggle-slider:before {
    transform: translateX(24px);
}

.cc-toggle input:disabled + .cc-toggle-slider {
    background-color: #8b4513;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Category content */
.cc-category-content {
    padding: 0 20px 20px 20px;
    display: none;
    background-color: #ffffff;
}

.cc-category-content.active {
    display: block;
}

.cc-category-details {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Action buttons */
.cc-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cc-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    display: inline-block;
}

.cc-btn-primary {
    background-color: #8b4513;
    color: white;
}

.cc-btn-primary:hover {
    background-color: #a0522d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cc-btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.cc-btn-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-1px);
}

.cc-btn-link {
    background-color: transparent;
    color: #8b4513;
    text-decoration: underline;
}

.cc-btn-link:hover {
    color: #a0522d;
}

/* Cookie settings button */
.cc-cookie-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #a0522d;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999998;
    transition: all 0.3s ease;
}

.cc-cookie-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cc-cookie-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.cc-cookie-button-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Expand icon */
.cc-expand-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.cc-category.expanded .cc-expand-icon {
    transform: rotate(180deg);
}

/* Animations */
@keyframes cc-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes cc-slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cc-inner-wrapper {
        padding: 20px;
    }

    .cc-title {
        font-size: 20px;
    }

    .cc-description {
        font-size: 14px;
    }

    .cc-category-title {
        font-size: 16px;
    }

    .cc-category-header {
        padding: 15px;
    }

    .cc-actions {
        flex-direction: column;
    }

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

    .cc-cookie-button {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
    }

    .cc-cookie-button svg {
        width: 25px;
        height: 25px;
    }

    .cc-cookie-button-img {
        width: 25px;
        height: 25px;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .cc-inner-wrapper {
        padding: 25px;
    }

    .cc-actions {
        justify-content: flex-end;
    }
}

/* Accessibility */
.cc-toggle input:focus + .cc-toggle-slider {
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3);
}

.cc-btn:focus {
    outline: 3px solid rgba(33, 150, 243, 0.5);
    outline-offset: 2px;
}

.cc-category-header:focus {
    outline: 3px solid rgba(33, 150, 243, 0.5);
    outline-offset: -3px;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .cc-container {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }

    .cc-title,
    .cc-category-title {
        color: #e0e0e0;
    }

    .cc-description,
    .cc-category-desc,
    .cc-category-details {
        color: #b0b0b0;
    }

    .cc-category {
        border-color: #333;
    }

    .cc-category-header {
        background-color: #2a2a2a;
    }

    .cc-category-header:hover {
        background-color: #333;
    }

    .cc-btn-secondary {
        background-color: #333;
        color: #e0e0e0;
    }

    .cc-btn-secondary:hover {
        background-color: #404040;
    }
}