/**
 * Sanitary Ware Page Template Styles
 * Template: template-sanitary-ware.php
 */

/* ========== CSS Variables ========== */
:root {
    --sw-primary: #FF8C00;
    --sw-primary-dark: #e67e00;
    --sw-secondary: #1a1a1a;
    --sw-text: #333333;
    --sw-text-light: #666666;
    --sw-bg-light: #f8f9fa;
    --sw-bg-gray: #f5f5f5;
    --sw-white: #ffffff;
    --sw-border: #e0e0e0;
    --sw-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --sw-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --sw-radius: 8px;
    --sw-radius-lg: 16px;
    --sw-transition: all 0.3s ease;
    --sw-container-width: 1200px;
}

/* ========== Base Styles ========== */
.page-sanitary-ware {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    color: var(--sw-text);
    line-height: 1.6;
}

.page-sanitary-ware .elementor-container {
    max-width: var(--sw-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.page-sanitary-ware .full-width {
    width: 100%;
    position: relative;
}

.page-sanitary-ware .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--sw-secondary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-sanitary-ware .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--sw-primary);
    margin: 15px auto 0;
}

/* ========== Hero Section ========== */
.sw-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sw-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sw-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.sw-hero .hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.sw-hero .hero-content-left-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.sw-hero .hero-left {
    flex: 1;
}

.sw-hero .hero-right {
    flex-shrink: 0;
}

.sw-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--sw-white);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.sw-hero .hero-button {
    display: inline-block;
    background: var(--sw-primary);
    color: var(--sw-white);
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--sw-radius);
    text-decoration: none;
    transition: var(--sw-transition);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    white-space: nowrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.sw-hero .hero-button:hover {
    background: var(--sw-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

/* ========== Products Section ========== */
.sw-products {
    padding: 80px 0;
    background: var(--sw-white);
}

.sw-products .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sw-products .product-card {
    background: var(--sw-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sw-shadow);
    transition: var(--sw-transition);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

.sw-products .product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sw-products .product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sw-shadow-hover);
}

.sw-products .product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.sw-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sw-products .product-card:hover .product-image img {
    transform: scale(1.1);
}

.sw-products .product-button-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    text-align: center;
}

.sw-products .product-button {
    display: inline-block;
    width: auto;
    min-width: 180px;
    max-width: 90%;
    background: var(--sw-white);
    color: var(--sw-secondary);
    border: 2px solid var(--sw-secondary);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: var(--sw-transition);
    text-align: center;
}

.sw-products .product-button:hover {
    background: var(--sw-secondary);
    color: var(--sw-white);
    transform: translateY(-2px);
}

/* ========== Features Section ========== */
.sw-features {
    padding: 80px 0;
    background: var(--sw-white);
}

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

.sw-features .feature-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: var(--sw-transition);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: row;
}

.sw-features .feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.sw-features .feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sw-features .feature-card:hover {
    transform: translateX(10px);
}

.sw-features .feature-image {
    width: 25%;
    height: auto;
    min-height: 200px;
    overflow: visible;
    flex-shrink: 0;
}

.sw-features .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sw-features .feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.sw-features .feature-content {
    width: 75%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sw-features .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--sw-secondary);
    margin: 0 0 15px;
}

.sw-features .feature-desc {
    font-size: 14px;
    color: var(--sw-text-light);
    margin: 0;
    line-height: 1.7;
}

/* ========== CTA Section ========== */
.sw-cta {
    padding: 40px 0;
    background: var(--sw-white);
}

.sw-cta .cta-wrapper {
    text-align: center;
}

.sw-cta .cta-button {
    display: inline-block;
    background: var(--sw-primary);
    color: var(--sw-white);
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: var(--sw-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sw-cta .cta-button:hover {
    background: var(--sw-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* ========== Info Grid Section ========== */
.sw-info-grid {
    padding: 60px 0;
    background: var(--sw-white);
}

.sw-info-grid .info-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    margin-bottom: 50px;
}

.sw-info-grid .info-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--sw-transition);
}

.sw-info-grid .info-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sw-info-grid .info-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sw-secondary);
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sw-info-grid .info-desc {
    font-size: 14px;
    color: var(--sw-text-light);
    margin: 0;
    line-height: 1.7;
}

.sw-info-grid .info-cta {
    text-align: center;
    padding-top: 20px;
}

.sw-info-grid .info-cta-button {
    display: inline-block;
    background: var(--sw-primary);
    color: var(--sw-white);
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: var(--sw-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sw-info-grid .info-cta-button:hover {
    background: var(--sw-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* ========== Reliable Manufacturer Section ========== */
.sw-reliable-manufacturer {
    padding: 60px 0;
    background: var(--sw-white);
}

.sw-reliable-manufacturer .section-title {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sw-reliable-manufacturer .manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.sw-reliable-manufacturer .manufacturer-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--sw-transition);
}

.sw-reliable-manufacturer .manufacturer-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sw-reliable-manufacturer .manufacturer-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--sw-primary);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sw-reliable-manufacturer .manufacturer-desc {
    font-size: 15px;
    color: var(--sw-text-light);
    margin: 0;
    line-height: 1.7;
}

.sw-reliable-manufacturer .manufacturer-image {
    border-radius: var(--sw-radius-lg);
    overflow: hidden;
    box-shadow: var(--sw-shadow);
}

.sw-reliable-manufacturer .manufacturer-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Full Solution Section ========== */
.sw-full-solution {
    padding: 60px 0;
    background: var(--sw-bg-light);
}

.sw-full-solution .solution-cards {
    margin-bottom: 50px;
}

.sw-full-solution .solution-card {
    display: flex;
    gap: 50px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--sw-transition);
}

.sw-full-solution .solution-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sw-full-solution .solution-content {
    flex: 1;
}

.sw-full-solution .solution-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--sw-secondary);
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sw-full-solution .solution-title:last-child {
    margin-top: 30px;
}

.sw-full-solution .solution-desc {
    font-size: 15px;
    color: var(--sw-text-light);
    margin: 0 0 25px;
    line-height: 1.7;
}

.sw-full-solution .solution-desc:last-child {
    margin-bottom: 20px;
}

.sw-full-solution .solution-cta-button {
    display: inline-block;
    background: var(--sw-white);
    color: var(--sw-primary);
    border: 2px solid var(--sw-secondary);
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: var(--sw-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sw-full-solution .solution-cta-button:hover {
    background: var(--sw-secondary);
    color: var(--sw-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sw-full-solution .solution-image {
    flex: 1;
}

.sw-full-solution .solution-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Project Cards Section ========== */
.sw-project-cards {
    padding: 60px 0;
    background: var(--sw-white);
}

.sw-project-cards .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sw-project-cards .project-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--sw-transition);
}

.sw-project-cards .project-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sw-project-cards .project-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.sw-project-cards .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--sw-transition);
}

.sw-project-cards .project-item:hover .project-image img {
    transform: scale(1.1);
}

.sw-project-cards .project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
}

.sw-project-cards .project-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--sw-white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== FAQs Section ========== */
.sw-faqs {
    padding: 80px 0;
    background: var(--sw-bg-light);
}

.sw-faqs .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.sw-faqs .faq-item {
    background: var(--sw-white);
    border-radius: var(--sw-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--sw-shadow);
    opacity: 0;
    transform: translateY(20px);
}

.sw-faqs .faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sw-faqs .faq-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--sw-transition);
}

.sw-faqs .faq-header:hover {
    background: var(--sw-bg-gray);
}

.sw-faqs .faq-icon {
    width: 30px;
    height: 30px;
    background: var(--sw-primary);
    color: var(--sw-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--sw-transition);
}

.sw-faqs .faq-item.active .faq-icon {
    background: var(--sw-secondary);
    transform: rotate(180deg);
}

.sw-faqs .faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--sw-secondary);
    margin: 0;
    flex: 1;
}

.sw-faqs .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sw-faqs .faq-item.active .faq-content {
    max-height: 500px;
}

.sw-faqs .faq-content p {
    padding: 0 25px 20px 75px;
    margin: 0;
    color: var(--sw-text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* ========== Contact Form Section ========== */
.sw-contact-form {
    padding: 80px 0;
    background: var(--sw-white);
}

.sw-contact-form .quote-form-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
    background: var(--sw-bg-light);
    border-radius: var(--sw-radius-lg);
    padding: 40px;
    box-shadow: var(--sw-shadow);
}

.sw-contact-form .quote-form-image {
    text-align: center;
    padding: 30px;
}

.sw-contact-form .pm-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--sw-primary);
    margin-bottom: 15px;
}

.sw-contact-form .pm-badge {
    display: inline-block;
    background: var(--sw-primary);
    color: var(--sw-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sw-contact-form .form-image-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sw-secondary);
    margin: 0 0 10px;
}

.sw-contact-form .form-image-desc {
    font-size: 14px;
    color: var(--sw-text-light);
    margin: 0;
}

.sw-contact-form .quote-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--sw-secondary);
    margin: 0 0 10px;
}

.sw-contact-form .quote-form-desc {
    font-size: 14px;
    color: var(--sw-text-light);
    margin: 0 0 30px;
}

.sw-contact-form .quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sw-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sw-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.sw-contact-form .form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--sw-secondary);
    margin-bottom: 8px;
}

.sw-contact-form .form-input,
.sw-contact-form input[type="text"],
.sw-contact-form input[type="email"],
.sw-contact-form input[type="tel"],
.sw-contact-form select,
.sw-contact-form textarea {
    padding: 12px 15px;
    border: 1px solid var(--sw-border);
    border-radius: var(--sw-radius);
    font-size: 14px;
    color: var(--sw-text);
    transition: var(--sw-transition);
    background: var(--sw-white);
}

.sw-contact-form input:focus,
.sw-contact-form select:focus,
.sw-contact-form textarea:focus {
    outline: none;
    border-color: var(--sw-primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.sw-contact-form .checkbox-group {
    background: var(--sw-white);
    padding: 20px;
    border-radius: var(--sw-radius);
    border: 1px solid var(--sw-border);
}

.sw-contact-form .checkbox-group > label {
    margin-bottom: 15px;
    font-weight: 600;
}

.sw-contact-form .checkboxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sw-contact-form .checkbox-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--sw-text-light);
    cursor: pointer;
}

.sw-contact-form .checkbox-label input {
    margin-right: 8px;
    accent-color: var(--sw-primary);
}

.sw-contact-form .submit-button {
    background: var(--sw-primary);
    color: var(--sw-white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--sw-radius);
    cursor: pointer;
    transition: var(--sw-transition);
    align-self: flex-start;
}

.sw-contact-form .submit-button:hover {
    background: var(--sw-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Stagger animation delays */
.sw-products .product-card:nth-child(1) { transition-delay: 0.1s; }
.sw-products .product-card:nth-child(2) { transition-delay: 0.15s; }
.sw-products .product-card:nth-child(3) { transition-delay: 0.2s; }
.sw-products .product-card:nth-child(4) { transition-delay: 0.25s; }
.sw-products .product-card:nth-child(5) { transition-delay: 0.3s; }
.sw-products .product-card:nth-child(6) { transition-delay: 0.35s; }
.sw-products .product-card:nth-child(7) { transition-delay: 0.4s; }
.sw-products .product-card:nth-child(8) { transition-delay: 0.45s; }
.sw-products .product-card:nth-child(9) { transition-delay: 0.5s; }

.sw-features .feature-card:nth-child(1) { transition-delay: 0.1s; }
.sw-features .feature-card:nth-child(2) { transition-delay: 0.2s; }
.sw-features .feature-card:nth-child(3) { transition-delay: 0.3s; }
.sw-features .feature-card:nth-child(4) { transition-delay: 0.4s; }
.sw-features .feature-card:nth-child(5) { transition-delay: 0.5s; }
.sw-features .feature-card:nth-child(6) { transition-delay: 0.6s; }

.sw-info-grid .info-item:nth-child(1) { transition-delay: 0.1s; }
.sw-info-grid .info-item:nth-child(2) { transition-delay: 0.2s; }
.sw-info-grid .info-item:nth-child(3) { transition-delay: 0.3s; }
.sw-info-grid .info-item:nth-child(4) { transition-delay: 0.4s; }

.sw-reliable-manufacturer .manufacturer-card:nth-child(1) { transition-delay: 0.1s; }
.sw-reliable-manufacturer .manufacturer-card:nth-child(2) { transition-delay: 0.2s; }
.sw-reliable-manufacturer .manufacturer-card:nth-child(3) { transition-delay: 0.3s; }
.sw-reliable-manufacturer .manufacturer-card:nth-child(4) { transition-delay: 0.4s; }

.sw-full-solution .project-card:nth-child(1) { transition-delay: 0.1s; }
.sw-full-solution .project-card:nth-child(2) { transition-delay: 0.2s; }
.sw-full-solution .project-card:nth-child(3) { transition-delay: 0.3s; }
.sw-full-solution .project-card:nth-child(4) { transition-delay: 0.4s; }
.sw-full-solution .project-card:nth-child(5) { transition-delay: 0.5s; }
.sw-full-solution .project-card:nth-child(6) { transition-delay: 0.6s; }

/* ========== Responsive Styles ========== */
@media (max-width: 1024px) {
    .sw-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .sw-info-grid .info-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-reliable-manufacturer .manufacturer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-full-solution .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-contact-form .quote-form-wrapper {
        grid-template-columns: 1fr;
    }

    .sw-contact-form .quote-form-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .sw-hero .hero-title {
        font-size: 32px;
    }

    .sw-hero {
        min-height: 400px;
    }

    .sw-hero .hero-container {
        min-height: 400px;
    }

    .sw-hero .hero-content-left-right {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .sw-hero .hero-left,
    .sw-hero .hero-right {
        width: 100%;
    }

    .page-sanitary-ware .section-title {
        font-size: 26px;
    }

    .sw-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-features .feature-card {
        flex-direction: column;
    }

    .sw-features .feature-image {
        width: 100%;
        height: 200px;
    }

    .sw-features .feature-content {
        width: 100%;
    }

    .sw-info-grid .info-items {
        grid-template-columns: 1fr;
    }

    .sw-reliable-manufacturer .manufacturer-grid {
        grid-template-columns: 1fr;
    }

    .sw-full-solution .solution-card {
        flex-direction: column;
    }

    .sw-project-cards .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .sw-contact-form .checkboxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .sw-contact-form .quote-form-wrapper {
        padding: 25px;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .sw-hero .hero-title {
        font-size: 26px;
    }

    .page-sanitary-ware .section-title {
        font-size: 22px;
    }

    .sw-products .products-grid {
        grid-template-columns: 1fr;
    }

    .sw-project-cards .projects-grid {
        grid-template-columns: 1fr;
    }

    .sw-features,
    .sw-info-grid,
    .sw-reliable-manufacturer,
    .sw-full-solution,
    .sw-faqs,
    .sw-contact-form {
        padding: 50px 0;
    }

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

    .sw-faqs .faq-content p {
        padding-left: 25px;
    }
}
