* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Loading Screen */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-container.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.loading-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: logoFadeIn 0.5s ease forwards;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.loading-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.progress-bar-container {
    width: 300px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background-color: #a54141;
    width: 0;
    border-radius: 2px;
    animation: progressAnimation 3s ease-out forwards;
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Responsive Loading Screen */
@media (max-width: 768px) {
    .loading-logo img {
        height: 60px;
    }

    .loading-logo {
        margin-bottom: 30px;
    }

    .progress-bar-container {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .loading-logo img {
        height: 50px;
    }

    .progress-bar-container {
        width: 200px;
        height: 3px;
    }
}

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

header {
    width: 100%;
    background-color: #fff;
}

/* Top Bar */
.top-bar {
    background-color: #36383d;
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    display: inline-flex;
    align-items: center;
}

.contact-info a i {
    margin-right: 13px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 10001;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle i {
    pointer-events: none;
}

header {
    width: 100%;
    background-color: #fff;
}

/* Top Bar */
.top-bar {
    background-color: #36383d;
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
}

/* Main Navigation - Starts relative, becomes fixed on scroll */
.main-nav {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    position: relative;
    z-index: 9999;
    transition: all 0.3s ease;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}


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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px;
}


/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links a.active,
.nav-links a:hover {
    color: #a54141;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #a54141;
}

.nav-links .fa-chevron-down {
    font-size: 12px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Responsive Navigation */
@media (max-width: 968px) {
    .top-bar .container {
        justify-content: center;
    }

    .contact-info a {
        margin-left: 15px;
        font-size: 13px;
    }

    .contact-info a i {
        margin-right: 8px;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav .container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        position: relative;
        z-index: 999;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 10002;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0 0 25px 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 16px;
        display: block;
        padding: 10px 0;
    }

    .nav-links a.active::after {
        bottom: 0;
        width: 50px;
    }

    .logo img {
        height: 45px;
    }
}

@media (max-width: 640px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .contact-info a {
        margin: 0;
        font-size: 12px;
    }

    .contact-info a i {
        margin-right: 5px;
        font-size: 11px;
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        padding: 12px 0;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background-color: #333;
}

.slider-wrapper {
    display: flex;
    width: 300%;
    /* 100% * 3 slides */
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.slide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    height: 100%;
    background-size: 100% 100% !important;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-1 {
    background-image: url('images/button-slider.jpg');
}

.slide-2 {
    background-image: url('images/zipper-slider.jpg');
}

.slide-3 {
    background-image: url('product/product3.jpg');
}

.slider-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.slider-logo-center img {
    height: 150px;
    filter: brightness(0) invert(1);
    drop-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 15;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.slider-arrow:hover {
    background-color: rgba(165, 65, 65, 0.9);
}

#prev-slide {
    left: 20px;
}

#next-slide {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 15;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #a54141;
    border-color: #a54141;
}

.dot:hover {
    background-color: #fff;
}

/* Responsive Hero Slider */
@media (max-width: 968px) {
    .hero-slider {
        height: 450px !important;
    }

    .slide {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
    }

    .slider-logo-center img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 350px !important;
    }

    .slide {
        height: 350px !important;
        min-height: 350px !important;
        max-height: 350px !important;
    }

    .slider-logo-center img {
        height: 70px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    #prev-slide {
        left: 10px;
    }

    #next-slide {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 280px !important;
    }

    .slide {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }

    .slider-logo-center img {
        height: 50px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-section .container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 30px 0 0 30px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -20px;
    width: 90%;
    height: 90%;
    border: 3px solid #a54141;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-content {
    padding: 0;
}

.about-content .pre-title {
    font-size: 13px;
    font-weight: 700;
    color: #a54141;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid #a54141;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-content .description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
    padding-left: 0;
}

.features-list i.fa-check-circle {
    color: #a54141;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive About Section */
@media (max-width: 968px) {
    .about-section .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-image {
        padding: 35px 0 0 35px;
        max-width: 700px;
    }

    .about-image::before {
        border-width: 4px;
        width: 95%;
        height: 95%;
        top: -35px;
        left: -25px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }

    .about-content .pre-title {
        font-size: 12px;
    }

    .about-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .about-content .description {
        font-size: 14px;
        text-align: left;
        margin-bottom: 25px;
    }

    .features-list li {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .about-image {
        padding: 30px 0 0 30px;
        max-width: 100%;
    }

    .about-image::before {
        border-width: 3px;
        width: 92%;
        height: 92%;
        top: -30px;
        left: -20px;
    }
}


/* Stats Section */
.stats-section {
    background-image: url('images/Trimmings.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

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

.stats-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.stats-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #b4b4b4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-box {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}


.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #a54141;
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 60px;
}

.stat-number .counter {
    display: inline-block;
}

.stat-number .plus {
    font-size: 40px;
    font-weight: 700;
}

.stat-label {
    font-size: 15px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Stats Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-box.animated .stat-number {
    animation: countUp 0.6s ease-out;
}

/* Responsive Stats Section */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-header {
        margin-bottom: 40px;
    }

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

    .stats-subtitle {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-box {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 40px;
        min-height: 50px;
    }

    .stat-number .plus {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .stats-header {
        margin-bottom: 30px;
    }

    .stats-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .stats-subtitle {
        font-size: 13px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 32px;
        min-height: 45px;
    }

    .stat-number .plus {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* Products Gallery Section */
.products-gallery {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header .pre-title {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-header .section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background-color: #f5f5f5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(165, 65, 65, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}

.gallery-overlay p {
    display: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gallery Modal/Lightbox */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.modal-close:hover {
    background-color: #f56a5c;
    border-color: #f56a5c;
    transform: rotate(90deg);
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.modal-arrow:hover {
    background-color: #f56a5c;
    border-color: #f56a5c;
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .products-gallery {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .modal-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .modal-counter {
        bottom: 15px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .products-gallery {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header .pre-title {
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .section-header .section-description {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-overlay i {
        font-size: 30px;
    }
}

/* WhatsApp button */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    z-index: 1000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* How to Order Section */
.how-to-order-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.how-to-order-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.order-step {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}


.step-icon {
    width: 80px;
    height: 80px;
    background-color: #a54141;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 36px;
    color: #fff;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 3px solid #a54141;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #a54141;
}

.order-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.order-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background-color: #222;
}

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

.why-choose-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: transparent;
    padding: 40px 20px;
    border: none;
    border-radius: 2px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 50px;
    color: #fff;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    width: 100%;
}

.feature-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Responsive How to Order Section */
@media (max-width: 768px) {
    .how-to-order-section {
        padding: 60px 0;
    }

    .how-to-order-section .section-header {
        margin-bottom: 40px;
    }

    .how-to-order-section .section-header h2 {
        font-size: 32px;
    }

    .order-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-step {
        padding: 35px 25px;
    }

    .step-number {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .how-to-order-section {
        padding: 50px 0;
    }

    .how-to-order-section .section-header h2 {
        font-size: 24px;
    }

    .order-steps {
        gap: 25px;
    }

    .order-step {
        padding: 30px 20px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 30px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
        right: 15px;
        top: -12px;
    }

    .order-step h3 {
        font-size: 20px;
    }

    .order-step p {
        font-size: 14px;
    }
}

/* Responsive Why Choose Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-header {
        margin-bottom: 40px;
    }

    .why-choose-header h2 {
        font-size: 32px;
    }

    .highlight-text {
        font-size: 16px;
    }

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

    .feature-item {
        padding: 35px 25px;
    }

    .feature-icon i {
        font-size: 45px;
    }

    .feature-content h3 {
        font-size: 19px;
    }

    .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-header h2 {
        font-size: 24px;
    }

    .highlight-text {
        font-size: 14px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-icon {
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 40px;
    }

    .feature-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .feature-content p {
        font-size: 13px;
    }
}



/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-image: url('images/site-img789.jpg');
    background-size: cover;
    background-position: center 30%;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.contact-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
}

.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    width: 50%;
    max-width: 550px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.agreement-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
    color: #666;
}

.agreement-group input[type="checkbox"] {
    margin-right: 10px;
    height: 15px;
    width: 15px;
}

.agreement-group a {
    color: #f56a5c;
    text-decoration: none;
}

.agreement-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background-color: #f56a5c;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e65645;
}

/* Responsive Contact Section */
@media (max-width: 968px) {
    .contact-section .container {
        justify-content: center;
    }

    .contact-form-wrapper {
        width: 70%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 40px 30px;
    }

    .contact-form-wrapper h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .contact-form-wrapper h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .form-group textarea {
        height: 100px;
    }

    .agreement-group {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 13px;
    }
}

/* Notification Toast - Slides from top-right */
.notification-toast {
    position: fixed;
    top: 20px;
    right: -400px;
    width: 380px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 100000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.notification-toast.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notification-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notification-toast.success .notification-icon {
    color: #4CAF50;
}

.notification-toast.error .notification-icon {
    color: #f44336;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px 0;
}

.notification-message {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.notification-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #e0e0e0;
}

.notification-progress::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    transition: width 5s linear;
}

.notification-toast.success .notification-progress::before {
    background-color: #4CAF50;
}

.notification-toast.error .notification-progress::before {
    background-color: #f44336;
}

.notification-toast.show .notification-progress::before {
    width: 100%;
}

/* Form Alert Box */
.form-alert {
    display: none;
    margin: 0 0 20px 0;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid transparent;
    font-size: 14px;
}

.form-alert.show { 
    display: block; 
}

.form-alert.success {
    background: #e6ffed;
    border-color: #4CAF50;
    color: #1f7a39;
}

.form-alert.error {
    background: #ffecec;
    border-color: #f44336;
    color: #8a1f17;
}

/* Button Loading State */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Notifications */
@media (max-width: 480px) {
    .notification-toast {
        width: calc(100% - 40px);
        right: -100%;
    }
    
    .notification-toast.show {
        right: 20px;
        left: 20px;
    }
}

/* Footer */
.site-footer {
    background-color: #191919;
    color: #a0a0a0;
    padding-top: 80px;
    font-size: 18px;
    line-height: 1.7;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-about .footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-about p {
    max-width: 350px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-widget address {
    font-style: normal;
    margin-bottom: 20px;
}

.footer-widget .footer-contact {
    color: #a0a0a0;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-widget .footer-contact:hover {
    color: #fff;
}

.footer-widget .footer-contact.phone {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-bg-text-wrapper {
    text-align: center;
    font-size: min(14vw, 180px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    user-select: none;
    line-height: 0.8;
    margin-bottom: 60px;
    white-space: nowrap;
    overflow: hidden;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 60px;
        font-size: 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    }

    .footer-about {
        grid-column: 1;
        text-align: center;
    }

    .footer-about .footer-logo {
        height: 50px;
        margin: 0 auto 20px;
        display: block;
    }

    .footer-about p {
        max-width: 100%;
        font-size: 15px;
    }

    .footer-widget h4 {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .footer-widget address {
        font-size: 15px;
    }

    .footer-widget .footer-contact {
        font-size: 15px;
    }

    .footer-widget .footer-contact.phone {
        font-size: 16px;
    }

    .footer-bg-text-wrapper {
        font-size: min(20vw, 100px);
        margin-bottom: 40px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}