/* Description: Master CSS file - Chti Serrure */

/**************************/
/*     CSS Variables       */
/**************************/
:root {
    --navy: #1e3a5f;
    --navy-dark: #152d4a;
    --navy-light: #2a4d7a;
    --navy-muted: #3b5e85;
    --gold: #d4a740;
    --gold-light: #e8bf5a;
    --gold-dark: #b8912e;
    --gold-pale: #fdf6e3;
    --bg-light: #f5f6fa;
    --bg-warm: #faf9f6;
    --bg-white: #ffffff;
    --text-body: #3d4555;
    --text-muted: #6b7385;
    --text-heading: #0f2440;
    --success: #22c55e;
    --radius-sm: 0.625rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --shadow-sm: 0 1px 3px rgba(15, 36, 64, 0.06), 0 1px 2px rgba(15, 36, 64, 0.04);
    --shadow-md: 0 4px 16px -2px rgba(15, 36, 64, 0.1), 0 2px 4px rgba(15, 36, 64, 0.04);
    --shadow-lg: 0 12px 40px -8px rgba(15, 36, 64, 0.16), 0 4px 8px rgba(15, 36, 64, 0.04);
    --shadow-xl: 0 20px 60px -12px rgba(15, 36, 64, 0.2);
    --shadow-gold: 0 8px 24px -4px rgba(212, 167, 64, 0.35);
    --font-heading: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/**************************/
/*     General Styles     */
/**************************/

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    line-height: 1.2;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.4rem, 3.5vw, 2.125rem);
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.5;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h5 {
    font-size: 1.125rem;
    line-height: 1.5;
}

h6 {
    font-size: 1rem;
    line-height: 1.5;
}

.p-large {
    font-size: 1.125rem;
    line-height: 1.8;
}

.p-small {
    font-size: 0.875rem;
    line-height: 1.6;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-heading);
}

.li-space-lg li {
    margin-bottom: 0.5rem;
}

.bg-legrand {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 60%, #0c1f38 100%) !important;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

.no-line {
    text-decoration: none;
}

.no-line:hover {
    text-decoration: none;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more .fas {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--gold-dark);
}

.read-more:hover .fas {
    transform: translateX(4px);
}

.blue {
    color: var(--navy);
}

.bg-gray {
    background-color: var(--bg-light);
}

.section-title {
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Visually hidden for accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    letter-spacing: 0.02em;
}

.badge-item i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Stars */
.stars {
    margin-bottom: 0.75rem;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.stars i {
    margin-right: 1px;
}


/**************************/
/*   Mobile Call Bar      */
/**************************/
#fixed-callbar {
    margin: auto;
    background-color: white !important;
    display: none;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#fixed-callbar a {
    text-decoration: none !important;
    min-height: 44px;
}

.hero-bg {
    height: 500px;
    background-position: left;
    background-size: cover;
}

.bg-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    color: #ffffff !important;
    padding-top: 5px;
    padding-bottom: 5px;
}


/* Disponibilité - point vert pulsant */
.dispo-vert {
    height: 12px;
    width: 12px;
    background-color: #5CB85C;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: pulse-vert 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.6);
}

@keyframes pulse-vert {
    0% {
        box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.6);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(92, 184, 92, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(92, 184, 92, 0);
    }
}

@media screen and (max-width: 700px) {
    .numeroTel {
        width: 100%;
        text-decoration: none;
        color: #fff
    }

    .bandeAppel {
        width: 100%;
        display: flex;
        position: fixed;
        bottom: 0;
        text-align: center;
        z-index: 100;
        justify-content: center
    }

    .bandeAppel-container {
        padding: 8px 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center
    }

    .bandeAppel-div-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .image-tel {
        width: 35px;
        height: 35px;
        margin: 5px 14px
    }

    .bandeAppel-text-tel {
        margin-bottom: 0;
        color: white !important;
        margin-top: 0;
        font-size: 13px;
        font-weight: 600
    }

    .bandeAppel-tel {
        margin-bottom: 0;
        margin-top: 0;
        font-size: 19px;
        font-weight: 800;
        color: white !important;
    }

    .bandeAppel-prix-tel {
        color: white !important;
        margin-bottom: 0;
        margin-top: 0;
        font-size: 10px
    }

    .marged-flex-center, .presentation-div {
        width: 80%
    }

    .img-w-100-p {
        height: 43vw
    }

    .img24 {
        color: white;
    }
}


/**************************/
/*     Buttons            */
/**************************/
.btn-solid-reg {
    display: inline-block;
    padding: 1.375rem 2.25rem;
    border: 2px solid var(--navy);
    border-radius: 100px;
    background-color: var(--navy);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0;
    text-decoration: none;
    transition: var(--transition);
}

.btn-solid-reg:hover {
    background-color: var(--navy-dark);
    border-color: var(--navy-dark);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-solid-lg {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 100px;
    background-color: var(--gold);
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 0;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.shaker {
    animation: shake 1.5s cubic-bezier(.36, .07, .19, .97) both infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

.btn-solid-lg:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--text-heading);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-solid-sm {
    display: inline-block;
    padding: 1rem 1.75rem;
    border: 2px solid var(--gold);
    border-radius: 100px;
    background-color: var(--gold);
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 0;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-solid-sm:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--text-heading);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.list-success {
    list-style: none;
    padding-left: 0;
}

.list-success li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.list-success i {
    color: var(--gold) !important;
    font-size: 1.1rem;
}

.btn-outline-reg {
    display: inline-block;
    padding: 1.375rem 2.25rem;
    border: 2px solid var(--gold);
    border-radius: 100px;
    background-color: transparent;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-reg:hover {
    background-color: var(--gold);
    color: var(--text-heading);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-outline-lg {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 100px;
    background-color: transparent;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-lg:hover {
    background-color: var(--gold);
    color: var(--text-heading);
    text-decoration: none;
}

.btn-outline-sm {
    display: inline-block;
    padding: 1rem 1.75rem;
    border: 2px solid var(--gold);
    border-radius: 100px;
    background-color: transparent;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-sm:hover {
    background-color: var(--gold);
    color: var(--text-heading);
    text-decoration: none;
}


/**************************/
/*     Forms              */
/**************************/
.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-control-input,
.form-control-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1.5px solid #e0e3ea;
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-heading);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
}

.form-control-textarea {
    display: block;
    height: 10rem;
    resize: vertical;
}

.form-control-input:focus,
.form-control-textarea:focus {
    border-color: var(--navy);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.12);
}

.form-control-input:hover,
.form-control-textarea:hover {
    border-color: #b0b5c3;
}

.form-control-input::placeholder,
.form-control-textarea::placeholder {
    color: #9ca3b4;
}

.form-control-submit-button {
    display: inline-block;
    width: 100%;
    height: 3.25rem;
    border: 2px solid var(--gold);
    border-radius: 100px;
    background-color: var(--gold);
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 0;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.form-control-submit-button:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--text-heading);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.form-control-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0.875rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    background-color: var(--bg-white);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar .navbar-brand {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 126px;
    height: 32px;
}

.navbar .logo-text {
    color: var(--text-heading);
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1rem;
    text-decoration: none;
}

.offcanvas-collapse {
    position: fixed;
    top: 100px;
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: var(--bg-white);
    transition: visibility .3s ease-in-out, transform .3s ease-in-out;
    z-index: 1050;
}

.offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
}

.navbar .navbar-nav {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
}

.navbar .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background-color: var(--gold);
    border-radius: 1px;
    transition: transform 0.25s ease;
}

.navbar .nav-item .nav-link:hover::after,
.navbar .nav-item .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
    color: var(--text-heading);
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
    animation: fadeDropdown 0.2s;
}

@keyframes fadeDropdown {
    0% { opacity: 0; transform: translateY(-4px); }
    100% { opacity: 1; transform: translateY(0); }
}

.navbar .dropdown-menu {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    border: none;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
}

.navbar .dropdown-item {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 0.875rem;
    text-decoration: none;
}

.navbar .dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--text-heading);
}

.navbar .dropdown-divider {
    width: 100%;
    height: 1px;
    margin: 0.5rem auto;
    border: none;
    background-color: #e5e7eb;
}

.navbar .navbar-toggler {
    padding: 0;
    border: none;
    font-size: 1.25rem;
}


/**********************/
/*     Breadcrumbs    */
/**********************/
.breadcrumb-nav {
    background-color: var(--bg-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: none;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--navy);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--text-muted);
}


/******************/
/*     Header     */
/******************/
.header {
    padding-top: 2.5em;
    background: linear-gradient(160deg, #0f2440 0%, var(--navy) 40%, var(--navy-dark) 100%) !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(212, 167, 64, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(42, 77, 122, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.header h1,
.header h2 {
    color: #ffffff;
}

.header p,
.header .p-large {
    color: rgba(255, 255, 255, 0.88);
}

.header .h1-large {
    margin-bottom: 1.25rem;
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
}

.header .p-large {
    margin-bottom: 1.75rem;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.7;
}

.row .bande-img {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.header .image-container {
    margin-top: 3.5rem;
}


/********************/
/*     Services     */
/********************/
.cards-1 {
    padding-top: 3.5rem;
    padding-bottom: 1rem;
}

.cards-1 h2 {
    margin-bottom: 2.5rem;
}

.cards-1 .card {
    margin-bottom: 2rem;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef0f5;
    border-radius: var(--radius-md);
    transition: var(--transition-slow);
    background: var(--bg-white);
}

.cards-1 .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 167, 64, 0.3);
}

.cards-1 .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    text-align: center;
    transition: var(--transition);
    background: var(--bg-light);
}

.cards-1 .card:hover .card-icon {
    transform: scale(1.08);
    background: rgba(212, 167, 64, 0.1);
}

.cards-1 .card-icon .fas,
.cards-1 .card-icon .far {
    color: var(--navy);
    font-size: 1.5rem;
    line-height: 56px;
}

.cards-1 .card-icon.red .fas,
.cards-1 .card-icon.red .far {
    color: var(--gold-dark);
}

.cards-1 .card-icon.green {
    background-color: #e0f4ea;
}

.cards-1 .card-icon.green .fas,
.cards-1 .card-icon.green .far {
    color: var(--success);
}

.cards-1 .card-body {
    padding: 0;
}

.cards-1 .card-title {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.cards-1 .card-body p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.cards-1 .read-more {
    color: var(--navy);
    font-size: 0.8rem;
}

.cards-1 .read-more .fas {
    color: var(--gold);
}


/*********************/
/*     Details 1     */
/*********************/
.basic-1 {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}

.basic-1 .image-container {
    margin-bottom: 4rem;
}

.basic-1 .image-container img {
    border-radius: var(--radius-md);
}

.basic-1 h2 {
    margin-bottom: 1.5rem;
}

.basic-1 p {
    margin-bottom: 2rem;
}


/*********************/
/*     Details 2     */
/*********************/
.basic-2 {
    padding-top: 3rem;
    padding-bottom: 2rem;
    background-size: cover;
    color: #ffffff;
}

.basic-2 h2 {
    color: #ffffff;
}

.basic-2 p {
    color: rgba(255, 255, 255, 0.85);
}

.basic-2 .text-container {
    margin-bottom: 3rem;
}

.basic-2 h2 {
    margin-bottom: 1.5rem;
}

.basic-2 p {
    margin-bottom: 2rem;
}

.basic-2 .btn-solid-reg {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--text-heading);
    font-weight: 700;
}

.basic-2 .btn-solid-reg:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--text-heading);
    box-shadow: var(--shadow-gold);
}

.basic-2 .section-title {
    color: var(--gold);
}

.basic-2 img {
    border-radius: var(--radius-md);
}


/********************/
/*     Features     */
/********************/
.accordion-1 {
    padding-top: 9.25rem;
    padding-bottom: 9.75rem;
    background: url('../images/features-background.jpg') center center no-repeat;
    background-size: cover;
}

.accordion-1 .h2-heading {
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.accordion-1 .p-heading {
    margin-bottom: 4rem;
    color: #ffffff;
    text-align: center;
}

.accordion-1 .accordion {
    margin-bottom: 5rem;
}

.accordion-1 .accordion-item {
    margin-bottom: 2.5rem;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.accordion-1 .accordion-item:last-of-type {
    margin-bottom: 0;
}

.accordion-1 .accordion-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    text-align: center;
    background-color: var(--gold);
}

.accordion-1 .accordion-icon.blue {
    background-color: var(--navy);
}

.accordion-1 .accordion-icon.purple {
    background-color: #dc63ff;
}

.accordion-1 .accordion-icon.orange {
    background-color: var(--gold);
}

.accordion-1 .accordion-icon .fas {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 44px;
}

.accordion-1 .accordion-header {
    margin-left: 4.125rem;
    padding: 0.5rem 0;
    border: none;
    background-color: transparent;
}

.accordion-1 .accordion-header button {
    padding: 0;
    border: none;
    background-color: transparent;
    color: #ffffff;
    box-shadow: none;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.625rem;
    letter-spacing: -0.4px;
    text-align: left;
}

.accordion-1 .accordion-header button:after {
    display: none;
}

.accordion-1 .accordion-body {
    margin-left: 4.125rem;
    padding: 0.375rem 0 0 0;
    color: #ffffff;
}


/************************/
/*     Testimonials     */
/************************/
.cards-2 {
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
}

.cards-2 .h2-heading {
    margin-bottom: 3rem;
}

.cards-2 .card {
    position: relative;
    margin-bottom: 2.5rem;
    border: 1px solid #eef0f5;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    background: var(--bg-white);
}

.cards-2 .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cards-2 .card .quotes {
    position: absolute;
    top: -14px;
    right: 0;
    left: 0;
    width: 40px;
    margin-right: auto;
    margin-left: auto;
    opacity: 0.8;
}

.cards-2 .card-body {
    padding: 2.75rem 1.5rem 2.25rem;
}

.cards-2 .testimonial-author {
    margin-bottom: 0.125rem;
}

.cards-2 .occupation {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.cards-2 .card .gradient-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
}

.cards-2 .card .gradient-floor.red-to-blue {
    background: linear-gradient(to right, var(--gold), var(--navy));
}

.cards-2 .card .gradient-floor.blue-to-purple {
    background: linear-gradient(to right, var(--navy), var(--gold-light));
}

.cards-2 .card .gradient-floor.purple-to-green {
    background: linear-gradient(to right, var(--gold-light), var(--navy-light));
}


/********************/
/*    Customers     */
/********************/
.slider-1 {
    padding-top: 2rem;
    padding-bottom: 3.75rem;
    background: linear-gradient(var(--bg-light), var(--bg-white));
    text-align: center;
}

.slider-1 h4 {
    margin-bottom: 0.25rem;
}

.slider-1 .section-divider {
    margin-bottom: 1rem;
}

.slider-1 .slider-container {
    margin-bottom: 0.5rem;
    padding: 1rem 0;
}


/**********************/
/*     Invitation     */
/**********************/
.basic-3 {
    padding-top: 2rem;
    padding-bottom: 1rem;
    text-align: center;
}

.basic-3 .text-container {
    padding: 3.5rem 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, #0f2440 0%, var(--navy) 50%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.basic-3 .text-container::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 45%;
    height: 140%;
    background: radial-gradient(ellipse at top right, rgba(212, 167, 64, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.basic-3 h2 {
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
}

.basic-3 .p-large {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.basic-3 .btn-solid-lg {
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--text-heading);
    position: relative;
}

.basic-3 .btn-solid-lg:hover {
    border-color: var(--gold-light);
    background-color: var(--gold-light);
    color: var(--text-heading);
    box-shadow: var(--shadow-gold);
}


/*******************/
/*     Contact     */
/*******************/
.form-1 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.form-1 .text-container {
    margin-bottom: 3rem;
}

.form-1 .section-divider {
    margin-bottom: 1rem;
}

.form-1 h2 {
    margin-bottom: 1.5rem;
}

.form-1 .list-unstyled .fas {
    font-size: 0.875rem;
    line-height: 1.625rem;
    color: var(--gold);
}

.form-1 .list-unstyled .flex-grow-1 {
    margin-left: 0.5rem;
}

.form-1 .btn-solid-sm,
.form-1 .btn.btn-solid-sm {
    font-size: 0.85rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    text-align: left;
    background-color: var(--text-heading);
    color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer div[class*="col"] {
    position: relative;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--gold);
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer h4 {
    margin-bottom: 1.875rem;
}

.footer .fas.fa-phone {
    color: var(--gold);
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background-color: var(--text-heading);
}

.copyright p,
.copyright a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.8rem;
}

.copyright a:hover {
    color: var(--gold);
}

.copyright .list-unstyled,
.copyright .statement {
    opacity: 1;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    outline: none;
    background-color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

#myBtn:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

#myBtn img {
    margin-bottom: 0.25rem;
    width: 18px;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
    padding-top: 9rem;
    padding-bottom: 5rem;
    background-color: var(--bg-light);
}

.ex-basic-1 .list-unstyled .fas {
    font-size: 0.375rem;
    line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
    margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
    padding: 1.25rem 1.25rem 0.5rem 1.25rem;
    background-color: var(--bg-light);
}

.ex-cards-1 .card {
    border: none;
    background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
    width: 2em;
    font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
    color: var(--navy);
}

.ex-cards-1 .card .fa-stack-1x {
    width: 2em;
    color: #ffffff;
    font-weight: 700;
    line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
    margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
    margin-top: 0.125rem;
    margin-bottom: 0.5rem;
}


/******************************/
/*     Scroll Animations      */
/******************************/
.scroll-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for cards */
.cards-1 .card:nth-child(2) .scroll-animate,
.cards-2 .card:nth-child(2) { transition-delay: 0.1s; }
.cards-1 .card:nth-child(3) .scroll-animate,
.cards-2 .card:nth-child(3) { transition-delay: 0.2s; }
.cards-1 .card:nth-child(4) .scroll-animate,
.cards-2 .card:nth-child(4) { transition-delay: 0.3s; }

/* Focus visible for keyboard nav */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}


/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {

    /* Header */
    .header {
        padding-top: 4rem;
        padding-bottom: 5em;
    }

    .header .h1-large {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        line-height: 1.25;
        text-align: left;
    }

    .header .p-large {
        text-align: left;
    }

    /* Statistics */
    .counter .counter-cell {
        display: inline-block;
        margin-right: 1.5rem;
        margin-left: 1.5rem;
        vertical-align: top;
    }

    /* Extra Pages */
    .ex-basic-1 .text-box {
        padding: 1.75rem 2rem 0.875rem 2rem;
    }
}


/* Min-width 992px */
@media (min-width: 992px) {

    /* General Styles */
    .h2-heading {
        width: 35.25rem;
        margin-right: auto;
        margin-left: auto;
    }

    .p-heading {
        width: 46rem;
        margin-right: auto;
        margin-left: auto;
    }

    /* Navigation */
    .navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
        box-shadow: none;
        transition: var(--transition);
        background-color: transparent;
    }

    .navbar.top-nav-collapse {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        background-color: rgba(255, 255, 255, 0.97);
        box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
        backdrop-filter: blur(12px);
    }

    .offcanvas-collapse {
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        width: auto;
        padding-right: 0;
        padding-left: 0;
        background-color: transparent;
        overflow-y: visible;
        visibility: visible;
    }

    .offcanvas-collapse.open {
        transform: none;
    }

    .navbar .navbar-nav {
        margin-top: 0;
        margin-bottom: 0;
    }

    .navbar .nav-item .nav-link {
        padding-right: 0.875rem;
        padding-left: 0.875rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .navbar .nav-item .nav-link:hover,
    .navbar .nav-item .nav-link.active {
        color: #ffffff;
    }

    .navbar.top-nav-collapse .nav-item .nav-link {
        color: var(--text-muted);
    }

    .navbar.top-nav-collapse .nav-item .nav-link:hover,
    .navbar.top-nav-collapse .nav-item .nav-link.active {
        color: var(--text-heading);
    }

    .navbar .dropdown-menu {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        box-shadow: var(--shadow-lg);
    }

    .navbar .dropdown-divider {
        width: 90%;
    }

    .navbar .nav-item .btn-solid-sm {
        margin-top: 0;
        margin-left: 1rem;
    }

    /* Header */
    .header {
        text-align: left;
    }

    .header .text-container {
        margin-top: 3rem;
    }

    .header .image-container {
        margin-top: 0;
    }

    .header .btn-solid-lg,
    .header .btn-outline-lg {
        margin-right: 0;
        margin-left: 0;
    }

    .header .btn-solid-lg {
        margin-right: 0.5rem;
    }

    /* Trust badges */
    .trust-badges {
        justify-content: flex-start;
    }

    /* Services */
    .cards-1 .card {
        vertical-align: top;
    }

    .cards-1 .card:nth-of-type(3n+2) {
        margin-right: 2rem;
        margin-left: 2rem;
    }

    /* Details 1 */
    .basic-1 .image-container {
        margin-bottom: 0;
    }

    .basic-1 .text-container {
        margin-top: 2rem;
    }

    /* Details 2 */
    .basic-2 .text-container {
        margin-top: 3rem;
        margin-bottom: 0;
    }

    /* Testimonials */
    .cards-2 .card {
        display: inline-block;
        vertical-align: top;
    }

    .cards-2 .card:nth-of-type(3n+2) {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    /* Invitation */
    .basic-3 .text-container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .basic-3 h2 {
        width: 42rem;
        margin-right: auto;
        margin-left: auto;
    }

    .basic-3 .p-large {
        width: 35rem;
        margin-right: auto;
        margin-left: auto;
    }

    /* Footer */
    .footer h4 {
        width: 46rem;
        margin-right: auto;
        margin-left: auto;
    }

    /* Copyright */
    .copyright {
        text-align: left;
    }

    .copyright .list-unstyled li {
        display: inline-block;
        margin-right: 1rem;
    }

    .copyright .statement {
        text-align: right;
    }

    /* Extra Pages */
    .ex-cards-1 .card {
        display: inline-block;
        width: 296px;
        vertical-align: top;
    }

    .ex-cards-1 .card:nth-of-type(3n+2) {
        margin-right: 1rem;
        margin-left: 1rem;
    }
}


/* Min-width 1200px */
@media (min-width: 1200px) {

    /* General Styles */
    .container {
        max-width: 1140px;
    }

    /* Header */
    .header {
        overflow: hidden;
        padding-top: 4rem;
    }

    .header .text-container {
        margin-top: 0;
    }

    .header .image-container {
        position: relative;
    }

    .header .image-container img {
        position: absolute;
        left: 60px;
    }

    .cards-1 .card:nth-of-type(3n+2) {
        margin-right: 5.5rem;
        margin-left: 5.5rem;
    }

    /* Details 1 */
    .basic-1 .text-container {
        margin-top: 5rem;
        margin-left: 2.75rem;
    }

    /* Details 2 */
    .basic-2 .text-container {
        margin-top: 5rem;
        margin-right: 3rem;
    }

    .basic-2 .image-container {
        text-align: right;
    }

    /* Features */
    .accordion-1 .accordion {
        margin-bottom: 0;
    }

    .accordion-1 .image-container {
        text-align: right;
    }

    /* Testimonials */
    .cards-2 .card {
        width: 356px;
    }

    .cards-2 .card:nth-of-type(3n+2) {
        margin-right: 1.125rem;
        margin-left: 1.125rem;
    }

    /* Invitation */
    .basic-3 .text-container {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    /* Contact */
    .form-1 .text-container {
        margin-top: 1.5rem;
        margin-right: 2.75rem;
    }

    .form-1 form {
        margin-left: 2.75rem;
    }

    /* Extra Pages */
    .ex-cards-1 .card {
        width: 336px;
    }

    .ex-cards-1 .card:nth-of-type(3n+2) {
        margin-right: 2.875rem;
        margin-left: 2.875rem;
    }
}


/************************************/
/*     SERVICE PAGE COMPONENTS      */
/************************************/

/* Breadcrumb for service pages */
.service-breadcrumb {
    background: var(--bg-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-breadcrumb .breadcrumb {
    margin-bottom: 0;
    font-size: 0.85rem;
    background: none;
    padding: 0;
}

.service-breadcrumb .breadcrumb-item a {
    color: var(--navy);
}

.service-breadcrumb .breadcrumb-item.active {
    color: var(--text-muted);
}

/* Process Steps Section */
.process-steps {
    padding: 4rem 0;
}

.process-steps .step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.process-steps .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
}

.process-steps .step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.process-steps .step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-steps .step-connector {
    display: none;
}

@media (min-width: 768px) {
    .process-steps .step-connector {
        display: block;
        position: absolute;
        top: 2rem;
        right: -30%;
        width: 60%;
        height: 2px;
        background: linear-gradient(to right, var(--gold), transparent);
        z-index: 0;
        transform: translateY(27px);
    }
}

/* Service Features Grid */
.service-features {
    padding: 4rem 0;
}

.service-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid #eef0f5;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-features .feature-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 167, 64, 0.3);
    transform: translateY(-2px);
}

.service-features .feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.service-features .feature-icon.navy {
    background: rgba(30, 58, 95, 0.08);
    color: var(--navy);
}

.service-features .feature-icon.gold {
    background: rgba(212, 167, 64, 0.12);
    color: var(--gold-dark);
}

.service-features .feature-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.service-features .feature-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.375rem;
}

.service-features .feature-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Service Types Cards */
.service-types {
    padding: 4rem 0;
}

.service-types .type-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid #eef0f5;
    text-align: center;
    transition: var(--transition-slow);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.service-types .type-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 167, 64, 0.3);
}

.service-types .type-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.06), rgba(212, 167, 64, 0.08));
    color: var(--navy);
}

.service-types .type-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.service-types .type-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section .faq-item {
    border: 1px solid #eef0f5;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bg-white);
    transition: var(--transition);
}

.faq-section .faq-item:hover {
    border-color: rgba(30, 58, 95, 0.15);
}

.faq-section .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-heading);
    text-align: left;
    gap: 1rem;
}

.faq-section .faq-question:hover {
    color: var(--navy);
}

.faq-section .faq-question .faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--navy);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-section .faq-item.active .faq-question .faq-chevron {
    transform: rotate(180deg);
    background: var(--navy);
    color: #fff;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-section .faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
}

.stats-section .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stats-section .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stats-section .stat-number .accent {
    color: var(--gold);
}

.stats-section .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Stats on dark background */
.stats-section.stats-dark .stat-number {
    color: #fff;
}

.stats-section.stats-dark .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Emergency-specific styles */
.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 100px;
    color: #dc2626;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.emergency-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
    animation: emergencyPulse 1.5s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

.header .emergency-badge {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.25);
}

/* Guarantee Badge */
.guarantee-section {
    padding: 3.5rem 0;
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gold-pale), #fff);
    border: 1px solid rgba(212, 167, 64, 0.2);
}

.guarantee-card .guarantee-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-heading);
    box-shadow: var(--shadow-gold);
}

.guarantee-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.375rem;
}

.guarantee-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-us {
    padding: 4rem 0;
}

.why-us .reason-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid #eef0f5;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-us .reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-us .reason-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.35rem;
}

.why-us .reason-icon.icon-navy {
    background: rgba(30, 58, 95, 0.08);
    color: var(--navy);
}

.why-us .reason-icon.icon-gold {
    background: rgba(212, 167, 64, 0.12);
    color: var(--gold-dark);
}

.why-us .reason-icon.icon-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.why-us .reason-icon.icon-red {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
}

.why-us .reason-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.why-us .reason-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* How It Works Section (Homepage) */
.how-it-works {
    padding: 4rem 0;
}

.how-it-works .step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.how-it-works .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-gold);
}

.how-it-works .step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.how-it-works .step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section heading utility */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    margin-bottom: 0.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}

/* CTA Banner Inline */
.cta-inline {
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, #0f2440 0%, var(--navy) 50%, var(--navy-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.cta-inline::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 45%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(212, 167, 64, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-inline h2 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    position: relative;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
    position: relative;
}

/* Pricing hint */
.price-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(212, 167, 64, 0.12);
    border: 1px solid rgba(212, 167, 64, 0.25);
    border-radius: 100px;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
}

/* Schema FAQ page structured data helper (visible section) */
.faq-section h2 .faq-count {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

/* Improved testimonials for service pages */
.testimonials-service {
    padding: 4rem 0;
}

.testimonials-service .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid #eef0f5;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.testimonials-service .testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonials-service .testimonial-card .stars {
    margin-bottom: 0.75rem;
}

.testimonials-service .testimonial-card .testimonial-text {
    margin-bottom: 1rem;
}

.testimonials-service .testimonial-card .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonials-service .testimonial-card .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Detail section with image and content side by side */
.detail-section {
    padding: 4rem 0;
}

.detail-section .detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.detail-section .detail-content .section-title {
    margin-bottom: 0.5rem;
}

.detail-section .detail-content h2 {
    margin-bottom: 1.25rem;
}

.detail-section .detail-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.detail-section .detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.detail-section .detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.75rem;
}

.detail-section .detail-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
}

.detail-section .detail-list li i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Dark detail section */
.detail-section.detail-dark {
    background: linear-gradient(160deg, #0f2440 0%, var(--navy) 50%, var(--navy-dark) 100%);
    color: #fff;
}

.detail-section.detail-dark h2 {
    color: #fff;
}

.detail-section.detail-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.detail-section.detail-dark .section-title {
    color: var(--gold);
}

.detail-section.detail-dark .detail-list li {
    color: rgba(255, 255, 255, 0.9);
}

.detail-section.detail-dark .detail-list li i {
    color: var(--gold);
}
