:root {
    --primary-red: #FF1044;
    --dark-bg: #2c3e50;
    --light-gray: #ecf0f1;
}

body {
  background: #ffffff;
  color: #303044;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

p {
  padding: 0;
  max-width: 100%;
  line-height: inherit;
}

a {
  display: block;
}

a:hover {
  text-decoration: none;
}

button:hover {
  background: none;
  border: none;
}

img {
  vertical-align: middle;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-strip {
  padding: 0;
}

.header-nav {
    background: #EFF6FB;
    padding: 22px 0;
}

.badge {
    font-size: 16px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #303044;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.mobile-menu-toggle:hover {
    color: var(--primary-red);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #EFF6FB;
    color: #303044;
}

.mobile-menu a:hover {
    color: var(--primary-red);
    background: #ffffff;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.hero-section {
    padding: 48px 0;
    text-align: center;
}

.hero-title {
    font-family: "Audiowide", sans-serif;
    font-size: 54px;
    line-height: 62px;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-subtitle {
    max-width: 100%;
    margin-bottom: 32px;
}

.btn-primary {
    font-family: "Audiowide", sans-serif;
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 0;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    text-transform: capitalize;
}

.btn-primary:hover {
    background-color: #c20b33;
}

.store-image {
    width: 100%;
    object-fit: cover;
    margin: 48px 0 0;
}

.products-section {
    padding: 64px 0;
}

.section-title {
    font-family: "Audiowide", sans-serif;
    text-align: center;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 64px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    text-align: center;
    padding: 36px 34px;
    background: #EFF6FB;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-icon {
    color: var(--primary-red);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title {
    font-size: 24px;
}

.offers-section {
    padding: 64px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}

.offer-card {
    background-color: #ffffff;
    overflow: hidden;
    border: 3px solid #EFF6FB;
}

.offer-image {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
}

.offer-content {
    padding: 34px 24px;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

.offer-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.offer-desc {
    margin: 0;
}

.services-section {
    padding: 64px 0 128px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background-color: #101025BF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    padding: 64px;
    text-align: center;
}

.service-card * {
  position: relative;
  z-index: 4;
}

.service-card:nth-child(1) {
    background-image: url(../image/service-1.jpg);
}

.service-card:nth-child(2) {
    background-image: url(../image/service-2.jpg);
}

.service-card::after {
    content: '';
    background: #101025BF;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}        

.service-title {
    font-family: "Audiowide", sans-serif;
    font-size: 36px;
    line-height: 42px;
    font-weight: 400;
    margin-bottom: 24px;
}

.service-desc {
    text-align: start;
    margin-bottom: 32px;
}

.service-link {
    font-family: "Audiowide", sans-serif;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    color: var(--primary-red) !important;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-link::after {
    content: '';
    background-image: url(../image/arrow-rigth.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 16px;
    margin-left: 10px;
}

.feedback-section {
    padding: 106px 0 130px;
    background: #EFF6FB;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.feedback-card {
    background-color: #ffffff;
    padding: 54px 24px;
    text-align: center;
    border: 2px solid #EFF6FB;
    align-content: center;
}

.feedback-text {
    font-size: 16px;
    line-height: 24px;
    font-style: italic;
    margin-bottom: 16px;
}

.feedback-author {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 !important;
}

.location-section {
    padding: 106px 0 64px;
}

.location-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
}

.location-grid-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.location-image {
    width: 100%;
    object-fit: cover;
}

.map-container {
    width: 100%;
    height: 100%;
    background: #EFF6FB;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    margin: 0;
    border: none;
}

.contact-section {
    padding: 42px 0 128px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 64px;
}

.contact-form {
    background: #EFF6FB;
    padding: 60px 62px;
}

.form-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.form-group-message {
    grid-column: 1/-1;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    font-family: "Raleway", sans-serif;
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #30304426;
    background: #ffffff;
    border-radius: 0;
    font-size: 18px;
    line-height: 24px;
    height: 62px;
    margin: 0;
    color: #303044;
    outline: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 0;
    background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #303044;
}

.form-group textarea {
    height: 126px;
    resize: none;
}

.btn-primary-form {
    max-width: 100%;
    grid-column: 1/-1;
}

.contact-info {
    align-content: center;
}

.contact-item {
    font-size: 24px;
    line-height: 34px;
    display: flex;
    align-items: flex-start;
}

.contact-item img {
  margin-right: 14px;
}

.contact-item p {
    margin: 0;
    word-break: break-all;
}

.contact-item + .contact-item {
  margin-top: 30px;
}

.contact-item strong {
  font-weight: 700;
}

.footer {
    background: #EFF6FB;
    padding: 24px 0;
    font-size: 16px;
    line-height: 24px;
}

.footer-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
}

.footer-content::after {
    content: '';
    height: 2px;
    position: absolute;
    left: -100px;
    right: -100px;
    bottom: 0;
    background: #3030441A;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    color: #303044;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-reserved {
    margin: 0;
    padding-top: 24px;
}

/* features */

.features-section {
    padding: 0 0 84px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.features-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.features-box {
    background: #EFF6FB;
    padding: 48px 48px 58px;
    align-content: center;
    justify-items: center;
    font-size: 24px;
    line-height: 36px;
}

.features-box h2 {
    font-family: "Audiowide", sans-serif;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 36px;
    text-align: center;
}

.features-box p {
    text-align: center;
}

.features-box p strong {
    font-weight: 700;
}

.features-box ul {
    list-style-type: disc;
    padding-left: 20px;
}

.features-box ul li + li {
    margin-top: 12px;
}

.features-box ul li::marker {
    color: var(--primary-red);
    padding-left: 20px;
}

.features-box .contact-item + .contact-item {
    margin-top: 6px;
}

.features-box .contact-item {
    justify-content: center;
}

.features-box .contact-info {
    margin-top: 36px;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* info */
.info-section {
    padding: 48px 0 64px;
}

.info-content h1 {
    font-family: "Audiowide", sans-serif;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
    text-align: center;
}

.info-content h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-content h3 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.info-content p {
    margin-bottom: 14px;
}

.info-content ul {
    list-style-type: disc;
    padding-left: 24px;
}

.info-content li {
    margin-bottom: 8px;
}

.info-content a {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-red);
}

.popup-box {
    display: none;
    padding: 10% 24px 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(48, 48, 68, 0.8);
}

.popup-content {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    text-align: center;
    padding: 40px;
}

.popup-box .btn-primary {
    margin: 0 auto;
}

.popup-content h3 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 4px;
}

.popup-content p {
    margin-bottom: 24px;
}


/* Mobile Styles */

@media (max-width: 1450px) {
    .footer-content::after {
        left: 0;
        right: 0;
    }
}

@media (max-width: 1036px) {
    .header-nav-dev {
        display: flex;
        justify-content: center;
    }

    .badge {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .features-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 26px;
    }

    .header-nav .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-nav-dev {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        flex-direction: column;
    }

    .mobile-menu.show {
        display: flex;
    }

    .badge img {
        width: 260px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 42px;
    }

    .section-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 32px;
    }

    .products-section {
        padding: 48px 0;
    }

    .product-title {
        font-size: 20px;
        line-height: 28px;
    }

    .offers-section {
        padding: 48px 0;
    }

    .offer-content {
        font-size: 20px;
        line-height: 28px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 48px 0 64px;
    }

    .service-card {
        padding: 48px 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-title {
        font-size: 30px;
        line-height: 38px;
    }

    .feedback-section {
        padding: 48px 0 64px;
    }

    .location-section {
        padding: 64px 0 48px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 48px 0 64px;
    }

    .contact-form {
        padding: 40px 24px;
    }

    .contact-item {
        font-size: 18px;
        line-height: 28px;
    }

    .form-box {
        grid-template-columns: 1fr;
    }

    .form-group-message {
        grid-column: auto;
    }

    .btn-primary-form {
        grid-column: auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .features-box {
        padding: 40px 24px 40px;
        font-size: 18px;
        line-height: 28px;
    }

    .features-box h2 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 24px;
    }

    .features-box .contact-item {
        justify-content: flex-start;
    }

    .features-box .contact-item p {
        text-align: left;
    }
}