/* ===================================
   HOME PAGE SPECIFIC STYLES
   =================================== */

:root {
    --primary-maroon: #3d0c11;
    --primary-gold: #fbbf24;
    --bg-beige: #f4f0ec;
    --text-dark: #1a1a1a;
    --text-grey: #666;
}

body {
    background-color: #fff;
}

/* Common Components */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.section-title.text-white {
    color: white;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.primary-btn {
    background: var(--primary-maroon);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

/* Hero Section */
.home-hero {
    background: var(--bg-beige);
    padding: 80px 0;
    margin-bottom: 0;
}

.home-hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-hero-content {
    flex: 1;
}

.home-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.home-hero-content h1 .highlight-text {
    color: var(--primary-maroon);
    font-style: italic;
}

.home-hero-content p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 480px;
}

.home-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.home-hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Uniqueness Section */
.uniqueness-section {
    background: var(--primary-maroon);
    padding: 80px 0;
    margin: 0 32px;
    /* Inset design */
    border-radius: 24px;
}

.uniqueness-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.uniqueness-item {
    text-align: center;
    color: white;
    flex: 1;
}

.uniqueness-item .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.05);
}

.uniqueness-item .icon-box img {
    width: 40px;
    /* Removed filter: invert(1) to keep gold color */
}

.uniqueness-item p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.uniqueness-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-section .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.services-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s;
}

.service-header {
    display: flex;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s;
}

.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #ccc;
    min-width: 50px;
    transition: color 0.3s;
}

.service-item.active .service-num,
.service-item:hover .service-num {
    color: var(--primary-maroon);
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.service-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    padding-left: 70px;
}

.service-item.active .service-description {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 20px;
}

.service-description p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-description .read-more {
    color: var(--primary-maroon);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.service-item:hover .read-more,
.service-item.active .read-more {
    opacity: 1;
    transform: translateX(0);
}

.service-description .read-more:hover {
    text-decoration: underline;
}

.services-image-container {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.services-images-slider {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;

    position: relative;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-slide.active {
    opacity: 1;
}

.service-nav-arrows {
    position: absolute;
    right: -60px;
    top: 10px;
    display: flex;
    flex-direction: column;
    gap: 55px;
    z-index: 10;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary-maroon);
    color: var(--primary-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow.active {
    background: var(--primary-maroon);
    color: white;
    border-color: var(--primary-maroon);
}

.nav-arrow:hover {
    background: var(--primary-maroon);
    color: white;
}

.nav-arrow .material-icons {
    font-size: 22px;
}

/* Why Choose Us */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.why-card {
    background: #f5f5f5;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: transform 0.3s;
}

.why-card.offset-up {
    margin-top: 0;
}

.why-card.offset-down {
    margin-top: 40px;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card .icon-circle {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-card .icon-circle img {
    width: 28px;
    height: 28px;
}

.why-card .icon-circle .material-icons {
    color: var(--primary-maroon);
    font-size: 28px;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.why-card p {
    font-size: 13px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-beige);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-circle.primary {
    background: var(--primary-maroon);
    color: white;
}

.step-circle.white {
    background: white;
    color: var(--primary-maroon);
}

.process-step p {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    color: var(--text-dark);
    /* Adjust for space */
    max-width: 100px;
    margin: 0 auto;
}

.process-line {
    flex: 1;
    height: 2px;
    background: #ccc;
    margin: 0 10px;
    margin-bottom: 40px;
    /* Align with center of circles */
    position: relative;
    top: -30px;
    z-index: 1;
}

.requirements-box {
    background: white;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.req-image {
    flex: 3;
}

.req-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.req-content {
    flex: 4;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.req-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-maroon);
}

.req-content p {
    color: var(--text-grey);
    margin-bottom: 24px;
    line-height: 1.6;
}

.req-btn {
    align-self: flex-start;
    background: transparent;
    border: 2px solid var(--primary-maroon);
    color: var(--primary-maroon);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.req-btn:hover {
    background: var(--primary-maroon);
    color: white;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    text-align: center;
}

.testimonial-video {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-video img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button .material-icons {
    font-size: 40px;
    color: var(--primary-maroon);
}

/* Contact Section */
.home-contact-section {
    padding: 80px 0;
    background: white;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-contact-info {
    background: black;
    color: white;
    padding: 60px;
}

.home-contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 16px;
}

.home-contact-info p {
    color: #999;
    margin-bottom: 40px;
}

.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.contact-row .icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.contact-row .material-icons {
    color: var(--primary-gold);
    font-size: 20px;
}

.home-contact-form {
    background: var(--bg-beige);
    padding: 60px;
}

.home-contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.home-contact-form p {
    color: var(--text-grey);
    margin-bottom: 32px;
}

.form-row-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.home-contact-form input,
.home-contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
    border-color: var(--primary-maroon);
}

.phone-wrapper-home {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.phone-wrapper-home .prefix {
    padding: 16px;
    background: #f9f9f9;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.phone-wrapper-home input {
    border: none;
    margin-bottom: 0;
}

.submit-btn-home {
    background: var(--primary-maroon);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

/* CTA Banner */
.cta-banner {
    background: var(--bg-beige);
    padding: 60px 0;
}

.cta-flex-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-flex-home h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-maroon);
}

.cta-flex-home a {
    background: var(--primary-maroon);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {

    .home-hero-flex,
    .services-content {
        flex-direction: column;
    }

    .home-hero-content,
    .home-hero-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .home-hero-content h1 {
        font-size: 42px;
    }

    .home-hero-content p {
        max-width: 100%;
    }

    .manufacturing-grid,
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .services-content {
        gap: 40px;
    }

    .services-list {
        order: 1;
    }

    .services-image-container {
        order: 2;
        margin-top: 30px;
    }

    .services-images-slider {
        height: 350px;
    }

    .service-nav-arrows {
        right: -50px;
    }

    .why-choose-grid {
        gap: 20px;
    }

    .why-card {
        min-height: 260px;
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .process-step {
        flex: 0 0 calc(50% - 10px);
    }

    .process-line {
        display: none;
    }

    .requirements-box {
        flex-direction: column;
    }

    .req-image {
        flex: none;
        height: 300px;
    }

    .req-content {
        padding: 32px;
    }

    .home-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-contact-info,
    .home-contact-form {
        padding: 40px;
    }

    .cta-flex-home {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .testimonial-video {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .home-hero {
        padding: 60px 0;
    }

    .home-hero-content h1 {
        font-size: 32px;
    }

    .home-hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .primary-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .manufacturing-section {
        padding: 60px 0;
    }

    .manufacturing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }



    .uniqueness-section {
        padding: 60px 0;
        margin: 0 16px;
    }

    .uniqueness-grid {
        flex-direction: column;
        gap: 24px;
    }

    .uniqueness-divider {
        display: none;
    }

    .uniqueness-item .icon-box {
        width: 70px;
        height: 70px;
    }

    .uniqueness-item p {
        font-size: 13px;
    }

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        text-align: center;
    }

    .services-image-container {
        margin-top: 20px;
    }

    .services-images-slider {
        height: 300px;
    }

    .service-nav-arrows {
        position: static;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-top: 16px;
    }

    .service-header {
        padding: 16px 0;
    }

    .service-num {
        font-size: 20px;
        min-width: 40px;
    }

    .service-name {
        font-size: 16px;
        padding-left: 16px;
    }

    .service-description {
        padding-left: 56px;
    }

    .service-description p {
        font-size: 13px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        min-height: auto;
        padding: 28px 20px;
    }

    .why-card.offset-up,
    .why-card.offset-down {
        margin-top: 0;
    }

    .why-card .icon-circle {
        width: 56px;
        height: 56px;
        top: 20px;
        left: 20px;
    }

    .why-card h3 {
        font-size: 17px;
        margin-top: 70px;
    }

    .why-card p {
        font-size: 13px;
    }

    .process-section {
        padding: 60px 0 !important;
    }

    .process-steps {
        flex-direction: column;
        gap: 16px;
    }

    .process-step {
        width: 100%;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .process-step p {
        font-size: 11px;
        max-width: 90px;
    }

    .req-content {
        padding: 24px;
    }

    .req-content h3 {
        font-size: 26px;
    }

    .req-content p {
        font-size: 14px;
    }

    .req-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-video {
        max-width: 600px;
    }

    .play-button {
        width: 65px;
        height: 65px;
    }

    .play-button .material-icons {
        font-size: 35px;
    }

    .home-contact-section {
        padding: 60px 0;
    }

    .home-contact-info,
    .home-contact-form {
        padding: 32px;
    }

    .home-contact-info h2,
    .home-contact-form h2 {
        font-size: 28px;
    }

    .form-row-home {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-contact-form input,
    .home-contact-form textarea {
        padding: 14px;
        font-size: 14px;
    }

    .submit-btn-home {
        padding: 14px 40px;
        font-size: 15px;
    }

    .cta-banner {
        padding: 50px 0;
    }

    .cta-flex-home h2 {
        font-size: 28px;
    }

    .cta-flex-home a {
        padding: 12px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .home-hero {
        padding: 40px 0;
    }

    .home-hero-content h1 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .home-hero-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .primary-btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .manufacturing-section {
        padding: 40px 0;
    }



    .manufacturing-card .label {
        padding: 14px 16px;
        border-radius: 10px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .manufacturing-card .label-content span {
        font-size: 14px;
    }

    .manufacturing-grid,
    .why-choose-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .uniqueness-section {
        padding: 40px 0;
        margin: 0 12px;
        border-radius: 16px;
    }

    .uniqueness-item .icon-box {
        width: 60px;
        height: 60px;
    }

    .uniqueness-item .icon-box img {
        width: 32px;
    }

    .uniqueness-item p {
        font-size: 12px;
    }

    .services-section {
        padding: 40px 0;
    }

    .services-images-slider {
        height: 250px;
    }

    .nav-arrow {
        width: 36px;
        height: 36px;
    }

    .nav-arrow .material-icons {
        font-size: 18px;
    }

    .service-header {
        padding: 14px 0;
    }

    .service-num {
        font-size: 18px;
        min-width: 35px;
    }

    .service-name {
        font-size: 14px;
        padding-left: 12px;
    }

    .service-description {
        padding-left: 47px;
    }

    .service-description p {
        font-size: 12px;
    }

    .service-description .read-more {
        font-size: 12px;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-card {
        padding: 24px 16px;
    }

    .why-card .icon-circle {
        width: 50px;
        height: 50px;
        top: 16px;
        left: 16px;
    }

    .why-card .icon-circle img {
        width: 26px;
        height: 26px;
    }

    .why-card h3 {
        font-size: 16px;
        margin-top: 65px;
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 12px;
    }

    .process-section {
        padding: 40px 0 !important;
    }

    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .process-step p {
        font-size: 10px;
        max-width: 80px;
    }

    .req-image {
        height: 220px;
    }

    .req-content {
        padding: 20px;
    }

    .req-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .req-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .req-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-video {
        max-width: 100%;
        border-radius: 12px;
    }

    .play-button {
        width: 55px;
        height: 55px;
    }

    .play-button .material-icons {
        font-size: 30px;
    }

    .home-contact-section {
        padding: 40px 0;
    }

    .home-contact-grid {
        border-radius: 12px;
    }

    .home-contact-info,
    .home-contact-form {
        padding: 24px;
    }

    .home-contact-info h2,
    .home-contact-form h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .home-contact-info p,
    .home-contact-form p {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .contact-row {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .contact-row .icon-circle {
        width: 36px;
        height: 36px;
        margin-right: 12px;
    }

    .contact-row .material-icons {
        font-size: 18px;
    }

    .home-contact-form input,
    .home-contact-form textarea {
        padding: 12px;
        font-size: 13px;
    }

    .phone-wrapper-home .prefix {
        padding: 12px;
        font-size: 13px;
    }

    .submit-btn-home {
        padding: 12px 32px;
        font-size: 14px;
        width: 100%;
    }

    .cta-banner {
        padding: 40px 0;
    }

    .cta-flex-home {
        gap: 16px;
    }

    .cta-flex-home h2 {
        font-size: 22px;
    }

    .cta-flex-home a {
        padding: 10px 28px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
    }
}