* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{overflow-x:hidden}
:root {
    --primary-color: #17474d;
    --secondary-color: #5f8b92;
    --accent-color: #c77b43;
    --dark-color: #0f2f35;
    --warm-color: #c77b43;
    --aqua-color: #9bc4c8;
    --light-color: #f3f7f6;
    --soft-color: #d9b184;
    --white: #ffffff;
    --text-color: #27363a;
    --border-radius: 8px;
    --shadow: 0 16px 32px rgba(15, 36, 43, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark-color);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }

p {
    margin-bottom: 16px;
    color: #526468;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    font-size: 18px;
    color: #607378;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 96px;
    height: 4px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, #c77b43 0 35%, var(--secondary-color) 35% 100%);
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(24, 49, 57, 0.16);
}
.btn-orange{
    
    background-color: var(--warm-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(24, 49, 57, 0.16);
}
.btn-orange:hover{
   background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-primary:hover {
    background-color: var(--warm-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
}

/* =========================
   NAVBAR
========================= */
.header {
    background: #04252f;
    color: var(--white);
}

.navbar {
    padding: 0;
    background: rgba(15, 36, 43, 0.42);
    position: relative;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 92px;
    position: relative;
    overflow: visible;
}

.logo {
    width: 40%;
    flex-shrink: 0;
}

.logo img {
    width: 80%;
    display: block;
}
.logo  a{padding-bottom: 0; margin-bottom: 0;}
.nav-toggle {
    display: none;
}

.nav-toggle-btn {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
}

.nav-links a:hover {
    color: var(--white);
    opacity: 0.85;
}

.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 12px;
}

/* مهم جدًا: override ل bootstrap */
.navbar .dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    min-width: 230px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: rgba(20, 56, 63, 0.98);
    border: 1px solid rgba(95, 139, 146, 0.25);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 999;
}

.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.navbar .dropdown-menu li {
    display: block;
}

.navbar .dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #ffffff;
    white-space: nowrap;
    background: transparent;
}

.navbar .dropdown-menu a:hover {
    background: rgba(199, 123, 67, 0.12);
    color: #c77b43;
    opacity: 1;
}

.nav-quote {
    padding: 14px 16px;
    line-height: 1;
    flex-shrink: 0;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 1100px) {
    .nav-wrap {
        min-height: 86px;
    }

    .logo {
        width: auto;
        margin-right: auto;
    }

    .logo img {
        width: 190px;
        max-width: 100%;
    }

    .nav-toggle-btn {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius);
        background-color: rgba(199, 123, 67, 0.42);
        color: var(--white);
        cursor: pointer;
        order: 3;
        font-size: 18px;
    }

    .nav-quote {
        order: 2;
        margin-left: auto;
        padding: 12px 14px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        left: 20px;
        right: 20px;
        z-index: 60;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border-radius: var(--border-radius);
        background: rgba(7, 28, 32, 0.95);
        box-shadow: var(--shadow);
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-links > li > a {
        display: flex;
        justify-content: space-between;
        padding: 11px 14px;
        border-radius: var(--border-radius);
        background-color: rgba(199, 123, 67, 0.18);
        color: var(--white);
    }

    .nav-links > li > a:hover {
        background-color: rgba(199, 123, 67, 0.32);
        color: var(--white);
        opacity: 1;
    }

    .navbar .dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border-color: rgba(199, 123, 67, 0.16);
        background: rgba(0, 0, 0, 0.35);
    }

    .navbar .dropdown:hover > .dropdown-menu,
    .navbar .dropdown:focus-within > .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-menu a {
        color: var(--white);
    }

    .navbar .dropdown-menu a:hover {
        color: #ead4b8;
        background: rgba(199, 123, 67, 0.12);
    }
}

@media (max-width: 768px) {
    .nav-links {
        left: 12px;
        right: 12px;
    }
}

/* Hero */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1000px rgba(15, 47, 53, 0.72);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(155, 188, 194, 0.2);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 999px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats */
.stats,
.about,
.projects,
.faq {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
        var(--light-color);
}

.stats {
    margin-top: -50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    position: relative;
    background: var(--white);
    padding: 32px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(95, 139, 146, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 3s ease-in-out infinite;
}

.stat-icon i {
    color: #fff;
    font-size: 28px;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--warm-color);
    margin-bottom: 8px;
}

.stat-item p {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card,
.offer-card,
.project-card,
.testimonial-card,
.faq-list details,
.contact-form {
    border: 1px solid rgba(95, 139, 146, 0.18);
}

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 250%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(25deg);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 120%;
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 10px 20px rgba(24, 49, 57, 0.16);
}

.service-icon i {
    color: #ffffff;
    font-size: 28px;
    transition: transform 0.35s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-6px) rotate(-4deg) scale(1.05);
    background: linear-gradient(135deg, #ead4b8, #d9b184);
    box-shadow: 0 16px 28px rgba(24, 49, 57, 0.22);
}

.service-card:hover .service-icon i {
    color: var(--dark-color);
    transform: scale(1.12);
}

/* Offers */
.offers {
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.offer-card {
    position: relative;
    min-height: 340px;
    padding: 36px;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/2.jpg") center/cover no-repeat;
    opacity: 0.16;
}

.offer-card > * {
    position: relative;
}

.offer-card h3 {
    color: var(--white);
    font-size: 30px;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.88);
}

.offer-card .btn-primary {
    background: linear-gradient(135deg, #d9b184, #c99a68);
    color: var(--dark-color);
}

.offer-card .btn-primary:hover {
    background: linear-gradient(135deg, #c99a68, #b98755);
    color: white;
}

.featured-offer {
    background: var(--dark-color);
}

.offer-label,
.section-kicker {
    display: inline-block;
    margin-bottom: 17px;
    color: #e78540;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px #04252f
}

.offer-price {
  background: #e78540;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  margin-bottom: 30px;
}

/* About */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    list-style: none;
    margin: 32px 0;
    padding: 0;
}

.features-list li {
    padding: 12px 0 12px 36px;
    position: relative;
}

.features-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--warm-color);
    font-weight: 700;
    font-size: 20px;
}

.about-image img,
.project-card img {
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.about-image img {
    height: 400px;
    display: block;
    box-shadow: var(--shadow);
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.process-step:hover {
    background-color: rgba(234, 212, 184, 0.24);
}

.process-step p {
    color: var(--dark-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #c77b43;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.step-number p {
    color: #ffffff;
    margin: 0;
    line-height: 1;
    text-align: center;
}

.process-step:hover .step-number {
    transform: scale(1.12);
    filter: brightness(1.08);
    box-shadow: 0 14px 28px rgba(199, 123, 67, 0.38);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}
.why-choose-section .features-list{font-weight: 500; color: #5f8b92; font-size: large   ;}
/* نفس projects-grid لكن باسم جديد */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* نفس project-card بالظبط */
.why-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 47, 53, 0.16);
    border-color: rgba(199, 123, 67, 0.32);
}

/* الصورة زي ما كانت */
.why-card img {
    height: 250px;
    border-radius: 0;
    display: block;
    width: 100%;
    transition: transform 0.35s ease;
}

.why-card:hover img {
    transform: scale(1.08);
}

/* نفس padding القديم */
.why-card h2,
.why-card p {
    padding: 0 24px;
}

.why-card h2 {
    margin-top: 20px;
}

.why-card p {
    padding-bottom: 24px;
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonial-slider-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 64px) / 3);
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    min-height: 250px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card h4 {
    margin-bottom: 4px;
    font-size: 18px;
}

.testimonial-card span {
    color: #607378;
    font-size: 14px;
}

.testimonial-nav {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 24px;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-list details {
    background: var(--white);
    border: 1px solid rgba(95, 127, 134, 0.28);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-list details:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 47, 53, 0.16);
    border-color: rgba(199, 123, 67, 0.32);
}

.faq-list summary {
    padding: 22px 26px;
    cursor: pointer;
    color: var(--dark-color);
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--warm-color);
    font-size: 24px;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list details p {
    margin: 0;
    padding: 0 26px 24px;
}

/* Contact */
.contact {
    background:
        linear-gradient(135deg, rgba(23, 71, 77, 0.95), rgba(15, 47, 53, 0.98)),
        var(--dark-color);
    color: var(--white);
}

.contact h2 {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 22px 44px rgba(15, 47, 53, 0.18);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(95, 127, 134, 0.28);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: #fbfcfb;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(155, 196, 200, 0.22);
}

.subject {
    display: none !important;
}

.btn-submit,
.send {
    width: 100%;
    border: none;
    background: #c77b43;
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover,
.send:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 24px 0;
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: var(--border-radius);
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 20;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animations */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 1100px) {
    .nav-wrap {
        min-height: 86px;
    }

    .logo {
        width: auto;
        margin-right: auto;
    }

    .logo img {
        width: 190px;
        max-width: 100%;
    }

    .nav-toggle-btn {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius);
        background-color: rgba(199, 123, 67, 0.42);
        color: var(--white);
        cursor: pointer;
        order: 3;
        font-size: 18px;
    }

    .nav-quote {
        order: 2;
        margin-left: auto;
        padding: 12px 14px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        left: 20px;
        right: 20px;
        z-index: 60;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border-radius: var(--border-radius);
        background: rgba(7, 28, 32, 0.95);
        box-shadow: var(--shadow);
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-links > li > a {
        display: flex;
        justify-content: space-between;
        padding: 11px 14px;
        border-radius: var(--border-radius);
        background-color: rgba(199, 123, 67, 0.18);
        color: var(--white);
    }

    .nav-links > li > a:hover {
        background-color: rgba(199, 123, 67, 0.32);
        color: var(--white);
        opacity: 1;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-color: rgba(199, 123, 67, 0.16);
        background: rgba(0, 0, 0, 0.35);
        display: none;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: var(--white);
        background: transparent;
    }

    .dropdown-menu a:hover {
        color: #ead4b8;
        background: rgba(199, 123, 67, 0.12);
    }
}

@media (max-width: 992px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }

    .stats-grid,
    .process-grid,
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper,
    .contact-wrapper,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 32px) / 2);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .projects-grid,
    .offers-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-track {
        gap: 0;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-slider-wrap {
        gap: 10px;
    }

    .testimonial-nav {
        width: 42px;
        height: 42px;
    }

    section {
        padding: 60px 0;
    }

    .offer-card {
        min-height: 280px;
    }

    .faq-list summary {
        padding: 20px;
    }

    .faq-list details p {
        padding: 0 20px 20px;
    }

    .hero {
        padding: 80px 0 90px;
    }

    .nav-links {
        left: 12px;
        right: 12px;
    }
}
.btn-wd{ width: 200px;}