/**
* Template Name: Remember
* Template URL: https://bootstrapmade.com/remember-free-multipurpose-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #1a2744; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #C9A84C; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #1a2744; /* The default color of the main navmenu links */
    --nav-hover-color: #C9A84C; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #1a2744; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #C9A84C; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #1a2744;
    --default-color: #ffffff;
    --heading-color: #C9A84C;
    --surface-color: #1a2744;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

.main {
    min-height: 90vh;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

    .pulsating-play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-play-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .pulsating-play-btn:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .pulsating-play-btn:hover:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

    .pulsating-play-btn:hover:after {
        border-left: 15px solid var(--accent-color);
        transform: scale(20);
    }

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* Email Form
------------------------------*/
.email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: email-form-loading 1s linear infinite;
    }

@keyframes email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #ffffff;
    --default-color: #1a2744;
    --heading-color: #1a2744;
    --contrast-color: #1a2744;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

    .header .header-content {
        padding: 20px 0;
        position: relative;
        z-index: 2;
    }

    .header .logo {
        line-height: 1;
        text-decoration: none;
    }

    .header .logo-img {
        max-height: 80px;
        width: auto;
    }

    .header .sitename {
        font-size: 18px;
        font-weight: 700;
        color: var(--heading-color);
        text-align: center;
        margin: 5px 0 0 0;
        letter-spacing: 2px;
    }

    .header .nav-wrapper {
        margin-left: auto;
        gap: 20px;
    }

.header-contact {
    display: flex;
    align-items: center;
    color: #1a2744;
}

    .header-contact i {
        font-size: 24px;
        color: #C9A84C;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.contact-label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

.contact-phone {
    font-size: 18px;
    font-weight: 700;
    color: #1a2744;
    text-decoration: none;
    transition: color 0.3s;
}

    .contact-phone:hover {
        color: #C9A84C;
    }

/* Mobile Call Button */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 100px;
    background: #C9A84C;
    color: #1a2744;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

    .mobile-call-button i {
        font-size: 20px;
    }

    .mobile-call-button:hover {
        background: #1a2744;
        color: #C9A84C;
        transform: scale(1.05);
        text-decoration: none;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
    }

    50% {
        box-shadow: 0 8px 35px rgba(201, 168, 76, 0.8);
    }

    100% {
        box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
    }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: #1a2744;
    background: #C9A84C;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 30px;
    margin: 0;
    border-radius: 0;
    transition: 0.3s;
    text-transform: uppercase;
    font-family: var(--nav-font);
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
}

    .header .btn-getstarted:hover,
    .header .btn-getstarted:focus:hover {
        color: #ffffff;
        background: #1a2744;
    }

@media (min-width: 1630px) {
    /*  .header .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }*/

    /* .header-top-border {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 50%;
        height: 16px;
        background: linear-gradient(90deg, #1a2744 0%, #1a2744 35%, transparent 25%) 0 0 / 100% 2px, linear-gradient(90deg, #1a2744 0%, #1a2744 35%, transparent 25%) 0 6px / 100% 2px;
        background-repeat: no-repeat;
        z-index: 1;
    }*/
}

@media (max-width: 1199px) {
    .header .logo {
    }



    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 8px 20px;
        font-size: 12px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.15);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 20px;
            font-size: 14px;
            font-family: var(--nav-font);
            text-transform: uppercase;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            letter-spacing: 0.5px;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu li:last-child a {
            padding-right: 20px;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #1a2744;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #1a2744;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(255, 255, 255, 0.95);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    position: relative;
    padding-bottom: 50px;
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
}

    .footer .footer-top {
        padding-top: 50px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .footer .footer-about .logo {
        line-height: 1;
        margin-bottom: 25px;
    }

        .footer .footer-about .logo img {
            max-height: 40px;
            margin-right: 6px;
        }

        .footer .footer-about .logo span {
            color: var(--heading-color);
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: var(--heading-font);
        }

    .footer .footer-about p {
        font-size: 14px;
        font-family: var(--heading-font);
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 16px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: var(--accent-color);
                }

    .footer .footer-contact p {
        margin-bottom: 5px;
    }

    .footer .copyright {
        padding-top: 25px;
        padding-bottom: 25px;
        background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    }

        .footer .copyright p {
            margin-bottom: 0;
        }

    .footer .credits {
        margin-top: 6px;
        font-size: 13px;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

    .page-title h1 {
        font-size: 24px;
        font-weight: 700;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 85px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        margin: 0;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
        font-family: var(--default-font);
    }

    .section-title div {
        color: var(--heading-color);
        margin: 10px 0 0 0;
        font-size: 32px;
        font-weight: 700;
        font-family: var(--heading-font);
    }

        .section-title div .description-title {
            color: var(--accent-color);
        }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 90vh;
    position: relative;
    padding: 140px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.65) 50%, rgba(201, 168, 76, 0.2) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #ffffff;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #C9A84C;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
}

.hero-cta-banner {
    background: #C9A84C;
    padding: 15px 30px;
    text-align: center;
    margin-bottom: -1px;
    border-radius: 10px 10px 0 0;
}

.cta-banner-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2744;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-cards-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

    .hero-card:hover {
        border-color: #C9A84C;
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
    }

.hero-card-icon {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1a2744;
    transition: all 0.3s ease;
}

.hero-card:hover .hero-card-icon {
    background: #1a2744;
    color: #C9A84C;
}

.hero-card-icon i,
.hero-card-icon svg {
    font-size: 36px;
    width: 36px;
    height: 36px;
}

.hero-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.hero-card-btn {
    background: #C9A84C;
    color: #1a2744;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

    .hero-card-btn:hover {
        background: #1a2744;
        color: #C9A84C;
        transform: scale(1.05);
    }

/* Trust Badges */
.trust-badges {
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    text-align: center;
}

    .trust-badge i {
        font-size: 28px;
        color: #C9A84C;
    }

    .trust-badge span {
        font-size: 13px;
        font-weight: 600;
        color: #1a2744;
    }

@media (max-width: 991px) {
    .hero {
        min-height: 80vh;
        padding: 120px 0 60px 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-cards-wrapper {
        padding: 20px 15px;
    }

    .hero-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }

    .hero-card-icon {
        width: 60px;
        height: 60px;
    }

        .hero-card-icon i,
        .hero-card-icon svg {
            font-size: 30px;
            width: 30px;
            height: 30px;
        }

    .cta-banner-title {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        display: flex;
        align-items: flex-start;
        margin-top: 40px;
    }

    .about .content ul i {
        flex-shrink: 0;
        font-size: 48px;
        color: var(--accent-color);
        margin-right: 20px;
        line-height: 0;
    }

    .about .content ul h5 {
        font-size: 18px;
        font-weight: 700;
    }

    .about .content ul p {
        font-size: 15px;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Social Proof Section
--------------------------------------------------------------*/
.social-proof-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

    .social-proof-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        border-color: #C9A84C;
    }

.social-proof-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C9A84C 0%, #1a2744 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

    .social-proof-icon i {
        font-size: 40px;
        color: #ffffff;
    }

.social-proof-number {
    font-size: 48px;
    font-weight: 800;
    color: #1a2744;
    margin-bottom: 10px;
}

.social-proof-label {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    padding: 50px 30px;
    transition: all ease-in-out 0.3s;
    height: 100%;
    position: relative;
}

    .why-us .card-item span {
        color: var(--accent-color);
        display: block;
        font-size: 28px;
        font-weight: 700;
    }

    .why-us .card-item h4 {
        font-size: 24px;
        font-weight: 600;
        padding: 0;
        margin: 20px 0;
    }

        .why-us .card-item h4 a {
            color: var(--heading-color);
        }

    .why-us .card-item p {
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin: 0;
        padding: 0;
    }

    .why-us .card-item:hover {
        background: var(--accent-color);
        padding: 30px 30px 70px 30px;
    }

        .why-us .card-item:hover span,
        .why-us .card-item:hover h4 a,
        .why-us .card-item:hover p {
            color: var(--contrast-color);
        }

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding: 10px 0;
}

    .stats .stats-item {
        padding: 30px;
        width: 100%;
    }

        .stats .stats-item span {
            font-size: 48px;
            display: block;
            color: var(--accent-color);
            font-weight: 700;
        }

        .stats .stats-item p {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding: 0;
            margin: 0;
            font-family: var(--heading-font);
            font-size: 15px;
            font-weight: 600;
        }

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

    .call-to-action img {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .call-to-action:before {
        content: "";
        background: linear-gradient(135deg, rgba(26, 39, 68, 0.92) 0%, rgba(26, 39, 68, 0.85) 100%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .call-to-action .container {
        position: relative;
        z-index: 3;
    }

.cta-content {
    color: #ffffff;
}

.cta-badge {
    display: inline-block;
    background: #C9A84C;
    color: #1a2744;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.call-to-action h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-highlights {
    margin-bottom: 30px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 16px;
}

    .cta-highlight i {
        color: #C9A84C;
        font-size: 20px;
    }

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.cta-btn-primary {
    background: #C9A84C;
    color: #1a2744;
}

    .cta-btn-primary:hover {
        background: #ffffff;
        color: #1a2744;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
    }

.cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

    .cta-btn-secondary:hover {
        background: #ffffff;
        color: #1a2744;
    }

.quick-quote-form {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

    .quick-quote-form h4 {
        color: #1a2744;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
    }

    .quick-quote-form .form-control {
        border: 2px solid #e0e0e0;
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s;
    }

        .quick-quote-form .form-control:focus {
            border-color: #C9A84C;
            box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.25);
        }

.btn-submit-quote {
    width: 100%;
    background: #C9A84C;
    color: #1a2744;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-submit-quote:hover {
        background: #1a2744;
        color: #C9A84C;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 991px) {
    .cta-content {
        text-align: center;
    }

    .cta-highlights {
        text-align: left;
        display: inline-block;
    }

    .cta-buttons {
        justify-content: center;
    }

    .call-to-action h3 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Service Area Section
--------------------------------------------------------------*/
.service-area-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 20px;
}

.service-area-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.city-column h5 {
    font-size: 18px;
    font-weight: 700;
    color: #C9A84C;
    margin-bottom: 15px;
}

.city-column ul {
    list-style: none;
    padding: 0;
}

    .city-column ul li {
        padding: 8px 0;
        color: #1a2744;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .city-column ul li i {
            color: #C9A84C;
            font-size: 14px;
        }

.delivery-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.delivery-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

    .delivery-badge i {
        font-size: 32px;
        color: #C9A84C;
    }

    .delivery-badge strong {
        display: block;
        color: #1a2744;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .delivery-badge span {
        color: #666;
        font-size: 14px;
    }

.zip-checker h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 15px;
}

.zip-checker .input-group {
    margin-bottom: 10px;
}

.zip-checker .form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 15px;
}

    .zip-checker .form-control:focus {
        border-color: #C9A84C;
        box-shadow: none;
    }

.btn-check-zip {
    background: #C9A84C;
    color: #1a2744;
    font-weight: 700;
    padding: 12px 25px;
    border: none;
    transition: all 0.3s;
}

    .btn-check-zip:hover {
        background: #1a2744;
        color: #C9A84C;
    }

.service-area-map {
    position: relative;
}

    .service-area-map img {
        border-radius: 15px;
    }

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 39, 68, 0.9);
    padding: 15px 20px;
    border-radius: 10px;
}

    .map-overlay p {
        color: #ffffff;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .map-overlay i {
        color: #C9A84C;
        font-size: 20px;
    }

@media (max-width: 768px) {
    .cities-grid,
    .delivery-info {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    position: relative;
}

    .services .service-item .icon {
        background: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        transition: 0.5s;
        border: 1px solid var(--accent-color);
        margin-right: 20px;
    }

        .services .service-item .icon i {
            color: var(--contrast-color);
            font-size: 24px;
            line-height: 0;
        }

    .services .service-item:hover .icon {
        background: var(--surface-color);
    }

        .services .service-item:hover .icon i {
            color: var(--accent-color);
        }

    .services .service-item .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        .services .service-item .title a {
            color: var(--heading-color);
        }

            .services .service-item .title a:hover {
                color: var(--accent-color);
            }

    .services .service-item .description {
        line-height: 24px;
        font-size: 14px;
    }

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

    .portfolio .portfolio-filters li {
        cursor: pointer;
        display: inline-block;
        padding: 0;
        font-size: 18px;
        font-weight: 500;
        margin: 0 10px;
        line-height: 1;
        transition: all 0.3s ease-in-out;
    }

        .portfolio .portfolio-filters li:hover,
        .portfolio .portfolio-filters li.filter-active {
            color: var(--accent-color);
        }

        .portfolio .portfolio-filters li:first-child {
            margin-left: 0;
        }

        .portfolio .portfolio-filters li:last-child {
            margin-right: 0;
        }

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

    .portfolio .portfolio-content img {
        transition: 0.3s;
        position: relative;
        z-index: 1;
    }

    .portfolio .portfolio-content .portfolio-info {
        background-color: var(--background-color);
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding: 25px 20px;
        position: relative;
        z-index: 2;
    }

        .portfolio .portfolio-content .portfolio-info h4 {
            font-size: 18px;
            font-weight: 600;
            padding-right: 50px;
        }

            .portfolio .portfolio-content .portfolio-info h4 a {
                color: var(--heading-color);
                transition: 0.3s;
            }

                .portfolio .portfolio-content .portfolio-info h4 a:hover {
                    color: var(--accent-color);
                }

        .portfolio .portfolio-content .portfolio-info p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 14px;
            margin-bottom: 0;
            padding-right: 50px;
        }

    .portfolio .portfolio-content:hover img {
        transform: scale(1.1);
    }

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
}

    .team .member img {
        border-radius: 15px;
        overflow: hidden;
    }

    .team .member .member-content {
        padding: 0 20px 30px 20px;
    }

    .team .member h4 {
        font-weight: 700;
        margin-top: 16px;
        margin-bottom: 2px;
        font-size: 20px;
    }

    .team .member span {
        font-style: italic;
        display: block;
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

    .team .member .social {
        margin-top: 15px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

        .team .member .social a {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            transition: 0.3s;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
        }

            .team .member .social a:hover {
                color: var(--accent-color);
                border-color: var(--accent-color);
            }

        .team .member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    position: relative;
}

    .testimonials:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .testimonials .testimonials-bg {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .testimonials .container {
        position: relative;
        z-index: 3;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        text-align: center;
    }

        .testimonials .testimonial-item .testimonial-img {
            width: 100px;
            border-radius: 50%;
            border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
            margin: 0 auto;
        }

        .testimonials .testimonial-item h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0 5px 0;
        }

        .testimonials .testimonial-item h4 {
            font-size: 14px;
            margin: 0 0 15px 0;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

        .testimonials .testimonial-item .stars {
            margin-bottom: 15px;
        }

            .testimonials .testimonial-item .stars i {
                color: #ffc107;
                margin: 0 1px;
            }

        .testimonials .testimonial-item .quote-icon-left,
        .testimonials .testimonial-item .quote-icon-right {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-size: 26px;
            line-height: 0;
        }

        .testimonials .testimonial-item .quote-icon-left {
            display: inline-block;
            left: -5px;
            position: relative;
        }

        .testimonials .testimonial-item .quote-icon-right {
            display: inline-block;
            right: -5px;
            position: relative;
            top: 10px;
            transform: scale(-1, -1);
        }

        .testimonials .testimonial-item p {
            font-style: italic;
            margin: 0 auto 15px auto;
        }

    .testimonials .swiper-wrapper {
        height: auto;
    }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: color-mix(in srgb, var(--default-color), transparent 50%);
            opacity: 0.5;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--default-color);
            opacity: 1;
        }

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    margin: 2rem;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    font-size: 48px;
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
}

    .pricing h4 sup {
        font-size: 28px;
    }

    .pricing h4 span {
        color: color-mix(in srgb, var(--default-color), transparent 60%);
        font-size: 18px;
    }

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

    .pricing ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
    }

    .pricing ul i {
        color: #059652;
        font-size: 24px;
        padding-right: 3px;
    }

    .pricing ul .na {
        color: color-mix(in srgb, var(--default-color), transparent 60%);
    }

        .pricing ul .na i {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
        }

        .pricing ul .na span {
            text-decoration: line-through;
        }

.pricing .buy-btn {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    background-color: var(--background-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
}

    .pricing .buy-btn:hover {
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
    }

.pricing .featured {
    z-index: 10;
}

    .pricing .featured .pricing-item {
        background: var(--accent-color);
    }

@media (min-width: 992px) {
    .pricing .featured .pricing-item {
        transform: scale(1.02, 1.1);
    }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
    color: var(--contrast-color);
}

.pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

    .pricing .featured .buy-btn:hover {
        background: color-mix(in srgb, var(--background-color), transparent 92%);
    }

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
    margin-top: 15px;
}

    .faq .faq-container .faq-item {
        background-color: color-mix(in srgb, var(--default-color), transparent 96%);
        position: relative;
        padding: 20px;
        margin-bottom: 20px;
        overflow: hidden;
        transition: 0.3s;
    }

        .faq .faq-container .faq-item:last-child {
            margin-bottom: 0;
        }

        .faq .faq-container .faq-item h3 {
            font-weight: 600;
            font-size: 18px;
            line-height: 24px;
            margin: 0 30px 0 32px;
            transition: 0.3s;
            cursor: pointer;
        }

            .faq .faq-container .faq-item h3 span {
                color: var(--accent-color);
                padding-right: 5px;
            }

            .faq .faq-container .faq-item h3:hover {
                color: var(--accent-color);
            }

        .faq .faq-container .faq-item .faq-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: 0.3s ease-in-out;
            visibility: hidden;
            display: none;
            opacity: 0;
        }

            .faq .faq-container .faq-item .faq-content p {
                margin-bottom: 0;
                overflow: hidden;
            }

        .faq .faq-container .faq-item .faq-icon {
            position: absolute;
            top: 22px;
            left: 20px;
            font-size: 20px;
            line-height: 0;
            transition: 0.3s;
            color: var(--accent-color);
        }

        .faq .faq-container .faq-item .faq-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 16px;
            line-height: 0;
            transition: 0.3s;
            cursor: pointer;
        }

            .faq .faq-container .faq-item .faq-toggle:hover {
                color: var(--accent-color);
            }

    .faq .faq-container .faq-active {
        transition: 0.2s;
    }

        .faq .faq-container .faq-active h3,
        .faq .faq-container .faq-active h3:hover,
        .faq .faq-container .faq-active .faq-toggle,
        .faq .faq-container .faq-active .faq-icon,
        .faq .faq-container .faq-active .faq-content {
        }

        .faq .faq-container .faq-active .faq-content {
            grid-template-rows: 1fr;
            visibility: visible;
            display: block;
            opacity: 1;
            padding-top: 10px;
        }

        .faq .faq-container .faq-active .faq-toggle {
            transform: rotate(90deg);
        }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.email-form {
    height: 100%;
}

    .email-form input[type=text],
    .email-form input[type=email],
    .email-form textarea {
        font-size: 14px;
        padding: 10px 15px;
        box-shadow: none;
        border-radius: 0;
        color: var(--default-color);
        background-color: color-mix(in srgb, var(--background-color), transparent 50%);
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }

        .email-form input[type=text]:focus,
        .email-form input[type=email]:focus,
        .email-form textarea:focus {
            border-color: var(--accent-color);
        }

        .email-form input[type=text]::placeholder,
        .email-form input[type=email]::placeholder,
        .email-form textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .email-form button[type=submit] {
        color: var(--contrast-color);
        background: var(--accent-color);
        border: 0;
        padding: 10px 30px;
        transition: 0.4s;
        border-radius: 50px;
    }

        .email-form button[type=submit]:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
        }

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

    .portfolio-details .swiper-button-prev:after,
    .portfolio-details .swiper-button-next:after {
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.15);
        font-size: 24px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .portfolio-details .swiper-button-prev:hover:after,
    .portfolio-details .swiper-button-next:hover:after {
        background-color: rgba(0, 0, 0, 0.3);
    }

@media (max-width: 575px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .portfolio-details .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .portfolio-details .portfolio-info h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
    }

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .portfolio-details .portfolio-info ul li {
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
    }

    .portfolio-details .portfolio-info ul strong {
        text-transform: uppercase;
        font-weight: 400;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 14px;
    }

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

    .portfolio-details .portfolio-info .btn-visit:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

    .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid var(--background-color);
        float: left;
        margin: 0 10px 0 0;
    }

    .portfolio-details .portfolio-description .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 15px 0 5px 0;
        padding-top: 20px;
    }

    .portfolio-details .portfolio-description .testimonial-item h4 {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .portfolio-details .portfolio-description .testimonial-item p {
        font-style: italic;
        margin: 0 0 15px 0 0 0;
        padding: 0;
    }

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

    .service-details .service-box + .service-box {
        margin-top: 30px;
    }

    .service-details .service-box h4 {
        font-size: 20px;
        font-weight: 700;
        border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

.service-details .services-list {
    background-color: var(--surface-color);
}

    .service-details .services-list a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        background-color: color-mix(in srgb, var(--default-color), transparent 96%);
        display: flex;
        align-items: center;
        padding: 12px 15px;
        margin-top: 15px;
        transition: 0.3s;
    }

        .service-details .services-list a:first-child {
            margin-top: 0;
        }

        .service-details .services-list a i {
            font-size: 16px;
            margin-right: 8px;
            color: var(--accent-color);
        }

        .service-details .services-list a.active {
            color: var(--contrast-color);
            background-color: var(--accent-color);
        }

            .service-details .services-list a.active i {
                color: var(--contrast-color);
            }

        .service-details .services-list a:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
            color: var(--accent-color);
        }

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .service-details .download-catalog a:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .service-details .download-catalog a:last-child {
        padding-bottom: 0;
    }

    .service-details .download-catalog a i {
        font-size: 24px;
        margin-right: 8px;
        color: var(--accent-color);
    }

    .service-details .download-catalog a:hover {
        color: var(--accent-color);
    }

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

    .service-details .help-box .help-icon {
        font-size: 48px;
    }

    .service-details .help-box h4,
    .service-details .help-box a {
        color: var(--contrast-color);
    }

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .service-details ul li {
        padding: 5px 0;
        display: flex;
        align-items: center;
    }

    .service-details ul i {
        font-size: 20px;
        margin-right: 8px;
        color: var(--accent-color);
    }

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# Tent Configuration Styles
--------------------------------------------------------------*/
.tent-config {
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
}

    .tent-config:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.tent-header {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

    .tent-header h3 {
        margin-bottom: 20px;
        color: var(--heading-color);
        font-size: 24px;
    }

    .tent-header h4 {
        margin-bottom: 15px;
    }

.tent-capacity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0;
}

    .tent-capacity i {
        font-size: 20px;
    }

.tent-configurations {
    margin-top: 20px;
}

.config-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

    .config-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: var(--accent-color);
    }

.config-option {
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .config-option:last-child {
        margin-bottom: 0;
    }

    .config-option:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
        transform: scale(1.02);
    }

.config-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .config-image img,
    .config-image svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .config-image svg {
        transition: all 0.3s ease;
    }

.config-option:hover .config-image svg {
    transform: scale(1.05);
}

.config-details {
    flex: 1;
    text-align: left;
}

.config-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 8px;
}

    .config-label i {
        color: var(--accent-color);
        font-size: 18px;
    }

    .config-label strong {
        font-size: 20px;
        font-weight: 700;
        color: var(--accent-color);
    }

.config-description {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .config-option {
        flex-direction: column;
        text-align: center;
    }

    .config-image {
        width: 100px;
        height: 100px;
    }

    .config-details {
        text-align: center;
    }

    .config-label {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Accessories Section Styles
--------------------------------------------------------------*/
.accessory-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
}

    .accessory-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    }

.accessory-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #2e463b 30%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

    .accessory-icon-wrapper::before {
        content: '';
        position: absolute;
        inset: -5px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #2e463b 30%));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

.accessory-card:hover .accessory-icon-wrapper::before {
    opacity: 0.3;
}

.accessory-icon-wrapper i {
    font-size: 36px;
    color: var(--contrast-color);
    transition: all 0.3s ease;
}

.accessory-card:hover .accessory-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

    .accessory-card:hover .accessory-icon-wrapper i {
        transform: scale(1.1);
    }

.accessory-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accessory-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.accessory-price {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.price-unit {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.price-request {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
}

.accessory-description {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .accessory-card {
        padding: 25px 20px;
    }

    .accessory-icon-wrapper {
        width: 70px;
        height: 70px;
    }

        .accessory-icon-wrapper i {
            font-size: 32px;
        }

    .accessory-title {
        font-size: 16px;
    }

    .price-amount {
        font-size: 28px;
    }
}
