body {
    background: #fff;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}



:root {
    --primary-color: #0A192F;
    /* Dark Blue */
    --secondary-color: #64FFDA;
    /* Neon Green */
    --accent-color: #FF6347;
    /* Tomato */
    --text-dark: #CCD6F6;
    /* Light Gray */
    --text-light: #8892B0;
    /* Light Gray Blue */
    --background-main: #0A192F;
    --background-card: #112240;
    /* Darker Blue */
}



.main-container-unique {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Hero Section - Banner */
.hero-banner-main {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-banner-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #173653 100%);
    opacity: 0.8;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
}

.hero-content-wrapper h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content-wrapper h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--accent-color);
    margin-bottom: 10px;
}

.hero-content-wrapper h6 {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Y2m3ws1Kqc.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.2);
    z-index: 0;
}

.styled-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.styled-button:hover {
    background-color: var(--secondary-color);
    color: var(--background-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
}

/* Features Section */
.features-section-creative {
    padding: 80px 0;
}

.DdD1wUhLnB {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    color: #389b83;
    margin-bottom: 60px;
    position: relative;
}

.DdD1wUhLnB::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

.FixvOsdEsv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.feature-card-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, #173653 100%);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--accent-color);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.5s ease-in-out;
}

.feature-card-modern:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.feature-card-modern h5 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card-modern p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* About Section */
.about-section-unique-style {
    padding: 80px 0;
}

.WfeoTRoFtA {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-image-dynamic {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image-dynamic img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.about-image-dynamic img:hover {
    transform: scale(1.03) rotate(2deg);
}

.zMeYQ9rymj {
    flex: 1.5;
    min-width: 300px;
}

.zMeYQ9rymj h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #389b83;
    margin-bottom: 20px;
}

.zMeYQ9rymj p {
    color: #000000;
    margin-bottom: 25px;
}

/* Why Choose Us Section */
.pxWV6fucBK {
    padding: 80px 0;
}

.why-us-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.why-us-card-dynamic {
    background: linear-gradient(135deg, var(--primary-color) 0%, #173653 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.why-us-card-dynamic:hover {
    transform: translateY(-10px) rotate(-1deg);
    background-color: #1a325d;
}

.why-us-card-dynamic i.fa {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-us-card-dynamic h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ce6464;
    margin-bottom: 15px;
}

.why-us-card-dynamic p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-section-artistic {
    padding: 80px 0;
}

.UTQBFKnBfr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.zcEqcxgNLd {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    height: 400px;
}

.zcEqcxgNLd:hover {
    transform: scale(1.05);
}

.zcEqcxgNLd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    transition: filter 0.4s ease;
}

.zcEqcxgNLd:hover img {
    filter: brightness(1);
}

.portfolio-caption-fluid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 34, 64, 0.8);
    backdrop-filter: blur(5px);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 10;
}

.zcEqcxgNLd:hover .portfolio-caption-fluid {
    transform: translateY(0);
}

.portfolio-caption-fluid h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.portfolio-caption-fluid span {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 767px) {
    .hero-content-wrapper h1 {
        font-size: 2rem;
    }

    .hero-content-wrapper h2 {
        font-size: 1.2rem;
    }

    .hero-content-wrapper h6 {
        font-size: 0.9rem;
    }
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111;
}

a {
    color: #111;
}

a:hover {
    color: #f4d030;
    text-decoration: none;
    transition: .5s ease-out;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
}

p {
    line-height: 26px;
}

.bg-grey {
    background: #f5f5f5;
}

.spinner4 {
    background: #333;
}

/* button */
.button {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    letter-spacing: 2px;
    margin-top: 30px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    z-index: 99;
    padding-left: 15px;
    transition: .5s ease-in;
    background: transparent;
    border: 0;
}

.button i {
    font-size: 13px;
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.button::before {
    height: 40px;
    width: 40px;
    background: #f4d030;
    border-radius: 50%;
    position: absolute;
    content: "";
    z-index: -9;
    top: -8px;
    left: 0;
}

.button:hover {
    border-color: #f4d030;
    color: #f4d030;
    background: transparent;
    transition: .5s ease-out;
    padding-right: 15px;
}

.button:hover::before {
    background: #333;
    transition: .5s ease-out;
    width: 100%;
    border-radius: 30px;
}

.button2 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    position: relative;
    z-index: 99;
    padding: 0 15px;
    background: transparent;
    border: 0;
}

.button2::before {
    height: 10px;
    width: 100%;
    background: #f4d030;
    position: absolute;
    content: "";
    z-index: -9;
    left: 0;
    bottom: 0;
}

.button2:hover {
    color: #333;
}

.button2:hover::before {
    height: 24px;
    transition: .5s ease-out;
}

/* navbar */
.navbar {
    padding: 15px 0 15px;
    transition: .5s ease-out;
    background: transparent;
}

.navbar .navbar-brand {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.navbar .navbar-brand-home {
    border-bottom: 3px solid #f4d030;
}

.navbar .navbar-nav li {
    padding: 0 15px;
}

.navbar .navbar-nav li a {
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.navbar .navbar-nav li a:last-child {
    padding-right: 0 !important;
}

.navbar .navbar-nav li:last-child {
    padding-right: 0;
}

.navbar .navbar-toggler i {
    color: #333;
}

.navbar-fixed {
    background: #f4d030;
    transition: .5s ease-out;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0);
}

.navbar-fixed .navbar-brand {
    color: #333;
}

.navbar-fixed .navbar-brand span {
    color: #f4d030;
}

.navbar-fixed .navbar-nav li a {
    color: #333;
}

.navbar-fixed .navbar-toggler i {
    color: #333;
}

.navbar-transparent {
    background: transparent !important;
}

/* haader title */
.header-title {
    margin-top: 50px;
    padding: 50px 0;
    text-align: center;

}

.header-title h3 {
    color: #333;
    font-size: 32px;
    font-weight: 600;
}

/* about us */
.about h5 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.about ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.about ul li span {
    margin-right: 5px;
}

.about h2 {
    font-weight: 600;
}

.about h2 span {
    color: #f4d030;
}

.about h6 {
    color: #333;
    margin-bottom: 28px;
    margin-top: 10px;
}

/* home intro */
.home-intro {
    background: #fff;
    padding: 70px 0 0px !important;
}

.home-intro .content {
    padding-top: 155px;
}

.home-intro h5 {
    margin-top: 40px;
}

.home-intro h2 {
    color: #222;
    font-size: 48px;
    font-weight: 600;
    margin: 25px 0;
    line-height: 54px;
}

.home-intro h2 span {
    color: #f4d030;
}

.home-intro h6 {
    color: #444;
    line-height: 28px;
    font-size: 17px;
    margin-bottom: 15px;
}

.home-intro img {
    height: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    float: right;
    margin-top: 20px;
}

/* section */
.section {
    padding: 90px 0 90px;
}

.title-section {
    text-align: center;
    margin-bottom: 50px;
}

.title-section h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.title-section h3 span {
    color: #f4d030;
}

.title-section p {
    width: 60%;
    margin: auto;
    line-height: 30px;
    font-size: 15px;
}

.title-section-two {
    text-align: left;
}

.title-section-two p {
    width: 100%;
}

/* services */
.services-home {
    background: #f4d030;
    padding: 90px 0;
    text-align: center;
}

.services-home-second {
    background: #FFFBCC;
    padding: 90px 0;
    text-align: center;
}

.services-home .content i {
    color: #111 !important;
}

.services-home h2 {
    color: #222;
    font-size: 48px;
    font-weight: 600;
    margin: 25px 0;
    line-height: 54px;
}

.services {
    padding: 90px 0 90px;
}

.services .row {
    margin-bottom: 35px;
}

.services .content {
    background: #fff;
    padding: 45px;
    left: -80px;
    height: calc(100% - 100px);
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
}

.services .content p {
    padding: 8px 0;
}

.services .content-button {
    text-align: center;
}

.services .content i {
    font-size: 54px;
    color: #f4d030;
}

.services .content h5 {
    margin: 18px 0 14px;
    font-size: 26px;
}

.services .content-left {
    background: #fff;
    padding: 45px;
    right: -80px;
    height: calc(100% - 100px);
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 99;
    text-align: right;
}

.services .content-left p {
    padding: 8px 0;
}

.services .content-left .button2 {
    float: right;
    right: 0;
    margin-right: 45px;
}

.services .content-left i {
    font-size: 54px;
    color: #f4d030;
}

.services .content-left h5 {
    margin: 25px 0 14px;
    font-size: 26px;
}

/* services page */
.services-page {
    padding-bottom: 45px;
}

.services-page .content {
    margin-bottom: 50px;
}

.services-page .content i {
    font-size: 60px;
    margin-bottom: 25px;
    color: #f4d030;
}

.services-page .content h5 {
    margin-bottom: 15px;
}

/* clients */
.client {
    padding: 90px 20px;
    background: #f5f5f5;
}

.client img {
    padding: 0 25px;
}

/*portfolio*/
.portfolio {
    text-align: center;
}

.portfolio h2 {
    color: #222;
    font-size: 48px;
    font-weight: 600;
    margin: 25px 0;
    line-height: 54px;
}

.portfolio .row .col-md-4 {
    padding: 15px;
}

.portfolio .portfolio-filter-menu {
    margin-bottom: 30px;
    text-align: center;
}

.portfolio .portfolio-filter-menu ul li {
    display: inline-block;
    margin: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    letter-spacing: 1px;
    transition: .4s ease-in-out;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
}

.portfolio .portfolio-filter-menu ul li span {
    z-index: 99;
    position: relative;
}

.portfolio .portfolio-filter-menu ul li.active {
    color: #f4d030;
}

.portfolio .content-image {
    position: relative;
}

.portfolio .content-image:hover .image-overlay {
    opacity: 0.7;
}

.portfolio .content-image:hover .portfolio-caption {
    opacity: 1;
}

.portfolio .content-image img {
    width: 100%;
    border-radius: 3px;
}

.portfolio .content-image .portfolio-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 40%;
    color: #333;
    text-align: center;
    opacity: 0;
    transition: all .5s ease;
}

.portfolio .content-image .portfolio-caption h4 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.portfolio .content-image .portfolio-caption .subtitle {
    margin-top: 22px;
    top: 52px;
    position: relative;
    text-align: right;
}

.portfolio .content-image .portfolio-caption ul li {
    display: inline-block;
    margin: 0 5px;
}

.portfolio .content-image .portfolio-caption i {
    width: 30px;
    height: 30px;
    background: #333;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

.portfolio .content-image .image-overlay {
    background: #f4d030;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
    opacity: 0;
    transition: all .5s ease;
    margin: auto;
}

/* testimonial */
.U6dK2kn0ex {
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 160px;
}

.U6dK2kn0ex span {
    font-size: 13px;
}

.U6dK2kn0ex h5 {
    margin-bottom: 3px;
}

.U6dK2kn0ex i {
    font-size: 40px;
    margin-bottom: 32px;
    color: #333;
}

.U6dK2kn0ex .carousel-indicators {
    bottom: -60px;
}

.U6dK2kn0ex .carousel-indicators .active {
    background: #f4d030;
}

.U6dK2kn0ex .carousel-indicators li {
    background: #333;
    border-radius: 50%;
    width: 15px;
    height: 14px;
    border: 0;
    margin: 0 10px;
}

/* contact */
.contact .content h4 {
    margin-top: 35px;
    margin-bottom: 14px;
}

.contact .content h4:first-child {
    margin-top: 0;
}

.contact form input,
.contact form textarea {
    border: 1px solid #ccc;
    padding: 15px 20px;
    margin-bottom: 30px;
    width: 100%;
    color: #aaa;
}

.contact .button {
    margin-top: 0;
}

.contact li {
    margin-bottom: 25px;
    font-size: 20px;
}

.contact li i {
    margin-right: 28px;
    color: #f4d030;
}

.contact .map {
    position: relative;
    top: -5px;
}

.contact .map i {
    float: left;
    margin-right: 34px;
    margin-top: 10px;
}

.contact .map p {
    overflow: hidden;
    line-height: 42px;
}

::placeholder {
    color: #aaa;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #aaa;
}

::-ms-input-placeholder {
    color: #aaa;
}

form input,
form textarea {
    border: 1px solid #ccc;
    padding: 15px 20px;
    margin-bottom: 30px;
    width: 100%;
    color: #aaa;
}

form input:focus,
form textarea:focus {
    border-color: #f4d030;
    outline: none;
}

/* footer bottom */
.footer-bottom {
    background: #021230;
    text-align: center;
    color: #eee;
    padding: 20px 0 20px;
}

/* footer */
footer {
    padding: 40px 0 38px;
    text-transform: uppercase;
    background: #f5f5f5;
    font-weight: 500;
}

footer i {
    margin-left: 10px;
}

footer ul {
    text-align: right;
}

footer ul li {
    display: inline-block;
    margin-left: 25px;
}

/*responsive*/
@media (max-width:980px) {
    .home-intro img {
        margin-top: 95px;
    }

    .home-intro .content {
        padding-top: 52px;
    }

    .services .row {
        margin-bottom: -35px;
    }

    .services .content {
        padding-right: 0;
    }

    .services .content h5 {
        margin-top: 0;
    }

    .services .content-left {
        padding-left: 0;
        margin-bottom: 85px;
    }

    .services .content-left h5 {
        margin-top: 0;
    }

    .about h2 {
        margin-top: 30px;
    }

    .about .col-md-6 {
        max-width: 100%;
        flex: 100%;
    }

    .portfolio .content-image .portfolio-caption {
        top: 20%;
    }

    .portfolio .content-image .portfolio-caption .subtitle {
        text-align: center;
        top: -8px;
    }

}

@media (max-width:767px) {
    .container {
        padding: 0 15px;
    }

    .navbar-toggler {
        border: 1px solid #333;
        border-radius: 0;
    }

    .navbar-nav {
        background: #fff;
        border: 1px solid #555;
        border-top: 0;
        outline: none;
    }

    .navbar-fixed .navbar-nav {
        background: transparent;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .client {
        padding-bottom: 55px;
    }

    .client img {
        margin-bottom: 35px;
    }

    .contact form {
        margin-top: 40px;
    }

    footer {
        text-align: center;
    }

    footer span {
        margin-bottom: 6px;
        display: block;
    }

    footer ul {
        text-align: center;
    }

    footer ul li {
        margin: 0 12px;
    }

}

@media (max-width:640px) {
    .navbar-fixed .navbar-nav li {
        padding: 0;
    }

    .navbar .navbar-nav {
        background: #fff;
        padding: 14px 0;
    }

    .navbar-fixed .navbar-nav {
        background: transparent;
        padding: 14px !important;
    }

    .navbar .navbar-nav li a {
        color: #333;
    }

    .services .content-left {
        margin-bottom: 75px;
    }

    .services .col-sm-12:last-child .content {
        margin-bottom: 0;
    }

    footer .col-sm-6 {
        margin-top: 50px;
    }

}

@media (max-width:480px) {
    .navbar-toggler {
        margin-right: 16px;
    }

    .navbar .navbar-brand {
        margin-left: 11px;
    }

    .navbar .navbar-nav {
        margin: 11px;
        margin-left: 11px !important;
    }

    .navbar-fixed .navbar-nav {
        padding: 2px;
    }

    .services .content {
        left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .services .content-left {
        right: 0;
        margin-top: 0;
        margin-bottom: 80px;
    }

    .services .content-left-img {
        display: none;
    }

    .portfolio .content-image .portfolio-caption {
        top: 37%;
    }

}

@media (max-width:360px) {
    .portfolio .content-image .portfolio-caption {
        top: 34%;
    }

}


.logo-link {
    color: #000;
    font-weight: bold;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}


foot-jdcarpets {
    display: block;
    background: #1c1c1c;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    padding: 50px 20px;
}

.jd-wrap {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
}

/* Бренд і інфо */
.jd-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

.jd-logo img {
    width: 55px;
}

.jd-domain {
    margin-top: 8px;
    color: #aaa;
    font-size: 2rem;
}

info-jd p a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 4px 0;
}

info-jd p a:hover {
    color: #00aced;
}

/* Меню горизонтально */
.jd-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 15px 0 10px;
}

.jd-menu li a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.jd-menu li a:hover {
    color: #00aced;
}

/* Соцмережі горизонтально */
social-jd {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

social-jd a svg {
    width: 28px;
    height: 28px;
    fill: #ccc;
    transition: 0.3s;
}

social-jd a:hover svg {
    fill: #00aced;
    transform: scale(1.2);
}

/* Копірайт */
copy-jd {
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 15px;
    width: 100%;
}

/* Адаптив */
@media(max-width:768px) {
    .jd-menu {
        flex-direction: column;
        gap: 10px;
    }

    social-jd {
        gap: 15px;
    }
}

.contact-block-custom {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-info-custom {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-title-custom {
    font-size: 18px;
    font-weight: 600;
    color: #0b3d91;
    margin-bottom: 5px;
}

.contact-text-custom a {
    color: #0b3d91;
    text-decoration: none;
}

.contact-text-custom a:hover {
    text-decoration: underline;
}

.J3SucE7d0z {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
}

.btn-submit-custom {
    background-color: #0b3d91;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-custom:hover {
    background-color: #06306b;
}

.map-wrapper-custom iframe {
    border-radius: 10px;
    margin-top: 15px;
}


/* Header */
.header-jimmie-ds {
    background-color: #f8f8f2;
    /* Дуже світлий сірий, майже білий */
    padding: 20px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.FCsctcQvNc {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    color: #4b4b4b;
    /* Темно-сірий */
    text-decoration: none;
}

.logo-text span {
    color: #d2691e;
    /* Теплий помаранчевий */
}

/* PC menu */
.mOwiRFOg3c ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.mOwiRFOg3c a {
    color: #4b4b4b;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.mOwiRFOg3c a:hover {
    color: #d2691e;
}

/* Burger & mobile */
#menu-toggle {
    display: none;
}

.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #4b4b4b;
}

.close-menu {
    display: none;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .mOwiRFOg3c {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #ffffff;
        padding-top: 70px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }

    .mOwiRFOg3c ul {
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
    }

    .mOwiRFOg3c a {
        font-size: 1.2rem;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 32px;
        cursor: pointer;
        color: #d2691e;
    }

    #menu-toggle:checked~.burger+.mOwiRFOg3c {
        right: 0;
    }
}

:root {
    --primary: #ff6f61;
    --secondary: #1a1a1a;
    --accent: #40c4ff;
    --bg-light: #f4f7fc;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
}





.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url('../img/K5lBBfbA1e.jpg') center/cover no-repeat;
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.2) 80%);
    z-index: 0;
}

.hero-section h1 {
    color: #eee;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.8rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s ease;
    margin-bottom: 40px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.C9kzUtn6rs {
    padding: 35px;
    position: relative;
}

.C9kzUtn6rs h3 {
    color: #389b83;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-tag {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 20px 0;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.order-btn {
    background: linear-gradient(45deg, #389b83, #e91e63);
    color: var(--text-light);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

.order-btn:hover {
    background: linear-gradient(45deg, #e91e63, #389b83);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 111, 97, 0.5);
}

.pricing-plan {
    border-radius: 20px;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-bottom: 30px;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-plan h3 {
    color: #389b83;
    font-size: 2rem;
    font-weight: 700;
}

.pricing-plan ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.pricing-plan ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.U6dK2kn0ex {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.U6dK2kn0ex:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.U6dK2kn0ex h4 {
    color: #389b83;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.SzHgI450fA {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
}

details {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

details:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

summary {
    padding: 20px;
    background: linear-gradient(90deg, #389b83 0%, var(--accent) 100%);
    color: var(--text-light);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

summary:hover {
    background: linear-gradient(90deg, var(--accent), #389b83);
}

.lSr6aeR3nT {
    padding: 25px;
    background: white;
    color: var(--text-dark);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .service-card,
    .pricing-plan,
    .U6dK2kn0ex {
        margin-bottom: 20px;
    }
}