body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: aliceblue;
    overflow-x: hidden;
}

.about-delay-0 {
    animation-delay: 0s;
}

.about-delay-1 {
    animation-delay: 0.15s;
    margin-top: 20px;
}

.about-delay-2 {
    animation-delay: 0.3s;
    margin-top: 20px;
}

.header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    height: 50px;
}

.header .main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.header .main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.banner {
    background-color: #d4f1c5;
    text-align: center;
    padding: 50px 20px;
}

.banner h1 {
    color: #2e7d32;
    font-size: 2.2rem;
}

.gmt-product-details {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px;
    gap: 50px;
   
    margin-top: 100px;

}

.gmt-product-image {
    flex: 1;
    transition: all 0.8s ease-out;
}

.gmt-product-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    max-height: 600px;
}

.gmt-product-description {
    flex: 1;
    transition: all 0.8s ease-out;
    max-width: 600px;
}

.gmt-product-description h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.gmt-product-description p {
    color: #555;
    line-height: 1.6;
}

.why-best {
    background-image: url('../images/good-morning-towel/background.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 50px 20px;
}

.why-best-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-best h2 {
    font-size: 2.1rem;
    margin-bottom: 20px;
    width: 156%;
    margin-left: -197px;
    color: white;
}

.why-best p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.why-best-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.why-best-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    color: #fff;
}

.why-best-list li i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.why-best-list li h3 {
    margin: 0 0 5px 0;
    font-size: 1.05rem;
    font-weight: bold;
    color: #fff;
}

.why-best-list li p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #fff;
}

.stylish-bullet {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stylish-bullet li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    line-height: 1.6;
    color: #333;
    font-size: 1.05rem;
}

.stylish-bullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stylish-bullet li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.gm-stylish-bullet {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gm-stylish-bullet li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 3px;
    line-height: 1.6;
    color: #333;
    font-size: 1.05rem;
}

.gm-stylish-bullet {
    padding-top: 15px;
}

.gm-stylish-bullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gm-stylish-bullet li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.good-morning-towel-doing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-doing-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.about-doing-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.about-doing-item h3 {
    font-size: 1.05rem;
    color: #fff;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

.about-doing-item span {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
    display: block;
}

.about-doing-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #fff;
}

.about-doing-icon {
    font-size: 20px;
    color: #2e7d32;
    width: 40px;
    height: 40px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gmt-specialized-section {
    padding: 20px 20px;
    background-color: antiquewhite;
}

.gmt-specialized-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.gmt-specialized-content {
    flex: 1;
    margin-top: -18px;
}

.gmt-specialized-image {
    flex: 1;
}

.gmt-specialized-content h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.gmt-specialized-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 30px;
}

.gmt-category-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gmt-category-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.gmt-category-item i {
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.gmt-category-offset-1 i,
.gmt-category-offset-2 i {
    margin-top: 0;
}

.category-text h4 {
    font-size: 1.05rem;
    color: #333;
    margin: 0 0 6px;
}

.category-text p {
    font-size: 0.96rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.gmt-specialized-image img {
    width: 162%;
    height: auto;
    /* border-radius: 10px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 620px;
}

.versatile-applications {
    padding: 142px 20px;
    background-color: #fff;
}

.versatile-applications .section-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.versatile-applications .section-title::after {
    content: '';
    display: block;
    width: 300px;
    height: 4px;
    background-color: #2e7d32;
    /* green underline */
    margin: 12px auto 0;
    border-radius: 2px;
}

.versatile-applications .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-top: -132px
}

.section-title {
    font-size: 2.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-left: 0;
}

.section-description {
    font-size: 1rem;
    color: #555;
    text-align: left;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(293px, 1fr));
    gap: 25px;
    justify-content: center;
    margin-bottom: 50px;
}

.application-card {
    background-color: #fff;
    border: 2px solid green;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.application-card h4 {
    font-size: 1.05rem;
    color: #2e7d32;
    margin-bottom: 12px;
    font-weight: bold;
}

.application-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.section-footer {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 1274px;
    margin: 0 auto;
}

.sizes-capacities {
    padding: 0px 20px;
    background-color: beige;
}

.sizes-capacities-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.sizes-capacities-image {
    flex: 1;
}

.sizes-capacities-image img {
    width: 130%;
    height: auto;
    /* border-radius: 10px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-left: -19px;
}

.sizes-capacities-content {
    flex: 1;
}

.sizes-capacities-content .section-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    text-align: left;
}

.sizes-capacities-content .section-title::after {
    display: none;
    content: none;
}

.sizes-capacities-content p {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sustainability-heading {
    color: #fff;
    font-size: 2.1rem;
    margin-bottom: 20px;
}

.sustainability-text {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.sustainability-image {
    width: 100%;
    max-width: 373px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

.gm-faq-title {
    text-align: center;
}

/* GMT Banner Section - Matching Bio Banner Style */
.gmt-banner {
    background-image: url('../images/banner-about.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 90px;
    padding: 70px 0 70px;
    min-height: 220px;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.gmt-banner h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .gmt-banner {
        margin-top: 70px;
        padding: 50px 0 50px;
        min-height: 180px;
    }

    .gmt-banner h1 {
        font-size: 1.6rem;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .section-footer {
        text-align: left !important;
    }

    .section-title {
        text-align: left !important;
    }

    .section-description {
        text-align: left !important;
    }

    .versatile-applications .section-title {
        text-align: left !important;
    }

    .versatile-applications .section-title::after {
        margin: 12px 0 0 0 !important;
    }

    .application-card {
        text-align: left !important;
    }

    .application-card h4 {
        text-align: left !important;
    }

    .application-card p {
        text-align: left !important;
    }

    .why-best h2 {
        text-align: left !important;
    }

    .why-best p {
        text-align: left !important;
    }

    .good-morning-towel-doing-grid {
        text-align: left !important;
    }
}

/* Customization Section */
.customization {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    padding: 17px 20px;
   
}

.customization .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Layout Styles */
.contact-green-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.contact-form-section {
    flex: 0 0 45%;
    transition: all 1s ease-out;
}

.contact-content-section {
    flex: 0 0 50%;
    transition: all 1s ease-out;
}

/* Good Morning Towel Contact Form Styles */
.form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.good-morning-towel-contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.good-morning-towel-contact-form .form-group {
    margin-bottom: 20px;
    width: 93%;
}

.contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2e7d32;
    margin-top: 0;
}

.contact-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.good-morning-towel-contact-form input,
.good-morning-towel-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.good-morning-towel-contact-form input::placeholder,
.good-morning-towel-contact-form textarea::placeholder {
    color: #999;
}

.good-morning-towel-contact-form input:focus,
.good-morning-towel-contact-form textarea:focus {
    outline: none;
    border-color: #2e7d32;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.good-morning-towel-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.good-morning-towel-contact-form .btn-primary {
    width: 50%;
    padding: 15px;
    background: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 23%;
}

.good-morning-towel-contact-form .btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-green-layout {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-section {
        order: 1;
    }

    .contact-content-section {
        order: 2;
    }

    .contact-form-section,
    .contact-content-section {
        flex: 1 1 100%;
    }

    .good-morning-towel-contact-form .btn-primary {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .customization {
        padding: 30px 0;
    }

    .customization .container {
        margin-top: 0;
    }

    .contact-form-section h3,
    .contact-content-section h3 {
        font-size: 1.5rem;
        text-align: left !important;
    }

    .good-morning-towel-contact-form {
        padding: 20px;
    }

    .sustainability-content-animate {
        text-align: left !important;
    }

    .sustainability-heading {
        text-align: left !important;
    }

    .sustainability-text {
        text-align: left !important;
    }
}

/* Contact Form Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-left {
    animation: none;
}

.animate-slide-right {
    animation: none;
}

.animate-left {
    animation: none;
}

.animate-right {
    animation: slideInRight 0.5s ease-out;
}

.sustainability-image-animate {
    transition: all 1s ease-out;
}


/* Product List Section */
.product-list-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.product-list-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.customized-products {
    flex: 0 0 30%;
}

.products-category {
    flex: 0 0 70%;
}

.product-list-section h3 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.product-list-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list-section li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.product-list-section li::before {
    content: "•";
    color: #2e7d32;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.animate-up {
    animation: none;
}

/* Good Morning Towel FAQ Section */
.good-morning-towel-faq-section {
    padding: 30px 0;
    background: #f8f9fa;
}

.good-morning-towel-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.good-morning-towel-faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.good-morning-towel-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}





/* ==========================
   Responsive Layout (Good Morning Towel)
   ========================== */

/* Large tablets / small desktops */
@media (max-width: 1200px) {
    .gmt-product-details {
        padding: 40px 20px;
        gap: 40px;
    }

    .gmt-specialized-container,
    .sizes-capacities-container {
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .gmt-product-details {
        flex-direction: column;
        text-align: center;
    }

    .gmt-product-image {
        order: 1;
    }

    .gmt-product-description {
        order: 2;
        text-align: left;
    }

    .gmt-product-description h2 {
        text-align: left;
    }

    .gmt-product-description {
        max-width: 100%;
    }

    .gmt-specialized-container {
        flex-direction: column;
        text-align: left;
    }

    .gmt-specialized-content {
        margin-top: 0;
    }

    .gmt-specialized-image img {
        width: 100%;
        height: auto;
    }

    .versatile-applications {
        padding: 20px 20px;
    }

    .versatile-applications .container {
        margin-top: 0;
        margin-bottom: 100px;
    }

    .applications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sizes-capacities-container {
        flex-direction: column;
    }

    .sizes-capacities-image img {
        width: 100%;
        margin-left: 0;
    }

    .why-best h2 {
        width: 100%;
        margin-left: 0;
    }
}

/* Mobiles / small tablets */
@media (max-width: 768px) {
    .banner {
        padding: 40px 15px;
    }

    .banner h1 {
        font-size: 1.8rem;
    }

    /* Mobile Navigation Fix */
    .header .main-nav ul li a {
        color: #fff !important;
    }

    .gmt-product-details {
        flex-direction: column;
        padding: 30px 15px;
        gap: 30px;
        text-align: left;

    }

    .gmt-product-image {
        order: 1;
        width: 100%;
    }

    .gmt-product-description {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .gmt-product-image img {
        max-width: 100%;
        max-height: none;

    }

    .gmt-specialized-section {
        padding: 60px 15px;
    }

    .versatile-applications {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .sizes-capacities {
        padding: 30px 15px;
    }

    .good-morning-towel-faq-section {
        padding: 60px 15px;
    }
}

/* Small phones */
@media (max-width: 576px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header .logo {
        flex: 0 0 auto;
    }

    .header {
        padding: 15px;
    }

    .why-best {
        padding: 40px 15px;
    }

    .why-best h2 {
        font-size: 1.6rem;
    }

    .gmt-specialized-content h2,
    .sizes-capacities-content .section-title {
        font-size: 1.6rem;
    }

    .good-morning-towel-faq-question {
        padding: 15px;
    }

    .good-morning-towel-faq-answer p {
        padding: 0 15px 15px;
    }
}

/* =========================================
   Good Morning Towel FAQ Styles (GMT FAQ)
   Matched to Cling Wrap (.g-faq) styles
   ========================================= */

.gmt-faq-section {
    padding: 20px 20px;
    background: #eef6ff;
}

.gmt-faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
    color: #2e7d32;   
}

.gmt-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.gmt-faq-item {
    background: #fff;
    border: 2px solid #d8f0d5;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease;
}

.gmt-faq-item.active {
    border-color: #0f8c36;
}

.gmt-faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #0f4b00;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gmt-faq-question:hover {
    color: #0f8c36;
}

.gmt-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #0f8c36;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gmt-faq-item.active .gmt-faq-toggle {
    background: #0f8c36;
    color: #fff;
}

.gmt-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.gmt-faq-item.active .gmt-faq-answer {
    padding: 0px 24px 24px;
}

.gmt-faq-answer p {
    margin: 0;
    color: #182c13;
    line-height: 1.6;
}