/*
Theme Name: Proteck Global
Theme URI: https://proteckglobal.com
Author: Proteck Global
Description: Custom WordPress theme for Proteck Global
Version: 1.0.0
Text Domain: protectglobal
*/

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

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #333;
}

header {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 18px;
    letter-spacing: 0.2px;
}

.nav-links a:hover {
    color: #b4916a;
}

.hero {
    background: url('images/banner-image.png') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 90%;
}

.hero h1 {
    font-size: 70px;
    color: #051D40;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .hero-container {
        padding: 0 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.hero p {
    font-size: 23px;
    color: #051D40;
    line-height: 40px;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: #b4916a;
    color: white;
    padding: 1.0rem 2.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(180, 145, 106, 0.3);
    margin-bottom: 95px;
}

.hero-cta:hover {
    background: #a38159;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(180, 145, 106, 0.4);
}

.hero-cta span {
    font-size: 1.2rem;
    font-weight: 400;
}

.hero-graphic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.graphic-pattern {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #b4916a 10%, transparent 10.5%);
    background-size: 40px 40px;
    opacity: 0.4;
    mask-image: radial-gradient(circle, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 70%);
}

.hero-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #b4916a;
    z-index: 3;
}

/* Info Section */
.info-section {
    background: white;
    padding: 4rem 2rem;
}

.info-container {
    max-width: 1440px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .info-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .info-section {
        padding: 4rem 1.5rem;
    }
}

/* Globe Section */
.globe-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
}

.globe-image {
    width: 100%;
    height: auto;
    display: block;
}



.globe-stat {
    background: #c89968;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 8px 25px rgba(200, 153, 104, 0.3);
}

.globe-stat h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.globe-stat p {
    font-size: 0.8rem;
    margin: 0.3rem 0 0 0;
    line-height: 1.2;
    font-weight: 400;
}

/* Why Us Section */
.why-us-section h2 {
    font-size: 50px;
    font-weight: 700;
    color: #051D40;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-us-section h2::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-image: url('images/oji-Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 0.5rem;
}

/* Hide legacy IMG tag if present */
.why-us-logo {
    display: none;
}

@media (max-width: 768px) {
    .why-us-section h2 {
        font-size: 2.2rem;
    }

    .why-us-section h2::before {
        width: 50px;
        height: 50px;
    }
}

.why-us-section .subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.features-list li {
    padding: 0.5rem 0 0.5rem 30px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('images/select-mark.png') no-repeat center center;
    background-size: contain;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 0;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #A47C4E;
    margin: 1.5rem 1.5rem 1rem;
}

.contact-address,
.contact-phone,
.contact-email {
    font-size: 0.85rem;
    color: #666;
    margin: 0.4rem 1.5rem;
    line-height: 1.6;
}

.contact-email {
    margin-bottom: 1.5rem;
}

/* Service Cards Grid */
.service-cards-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-card-link {
        height: auto;
        padding: 1.5rem;
    }
}

.service-card-link {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 120px;
}

.service-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #0d1b2a;
    color: white;
}

.service-card-link:hover .service-card-icon {
    color: white;
}

.service-card-link:hover .service-separator {
    background-color: rgba(255, 255, 255, 0.2);
}

.service-card-link:hover .service-arrow {
    background: #c89968;
    transform: scale(1.05);
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    color: #0d1b2a;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
}

.service-separator {
    width: 1px;
    height: 50px;
    background-color: #e0e0e0;
    margin: 0 0.5rem;
}

.service-card-link h4 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.service-arrow {
    width: 48px;
    height: 48px;
    background: #0d1b2a;
    border-radius: 4px;
    /* Folded corner effect */
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.service-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}



.services {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
}

.services-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #1a3a5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.process {
    padding: 0;
    background: white;
}

.process-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 750px;
    /* Increased to stabilize height */
    transition: min-height 0.3s ease;
}

@media (max-width: 991px) {
    .process-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .process-image {
        height: 400px;
    }

    .process-content {
        padding: 4rem 1.5rem;
    }
}

.process-image {
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

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

.process-content {
    background-color: #B69670;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-content h2 {
    color: #1a1a2e;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: transparent;
}

.accordion-number {
    background: white;
    color: black;
    width: 40px;
    height: 25px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-number {
    background: black;
    color: white;
}

.accordion-header h4 {
    color: #1a1a2e;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 4rem;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    /* Increased to ensure content fits */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.accordion-body p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}


.brand-section {
    background: linear-gradient(90deg, #37217b 0%, #005caf 50%, #0099ac 100%);
    padding: 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.brand-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 4rem;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .brand-content {
        padding: 0 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

.philips-logo {
    width: 200px;
    flex-shrink: 0;
}

.philips-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.brand-text {
    flex: 1;
    text-align: left;
}

.brand-text h2 {
    font-size: 4rem;
    margin-bottom: 0rem;
    font-weight: 300;
    color: white;
    line-height: 1.1;
}

.brand-text h3 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: white;
    text-transform: none;
    word-spacing: 2px;
}

.brand-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

.product-image {
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-image:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Responsive Design for Brand Section */
@media (max-width: 1200px) {
    .brand-text h2 {
        font-size: 3.5rem;
    }

    .brand-text h3 {
        font-size: 2.5rem;
    }

    .brand-content {
        gap: 2rem;
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    .brand-section {
        padding: 4rem 1rem;
    }

    .philips-logo {
        width: 150px;
    }

    .brand-text h2 {
        font-size: 3rem;
    }

    .brand-text h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .brand-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .brand-text {
        text-align: center;
    }

    .brand-right {
        justify-content: center;
    }

    .product-image {
        max-width: 280px;
    }

    .brand-text h2 {
        font-size: 2.5rem;
    }

    .brand-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .philips-logo {
        width: 120px;
    }

    .brand-text h2 {
        font-size: 2rem;
    }

    .brand-text h3 {
        font-size: 1.6rem;
    }

    .product-image {
        max-width: 220px;
    }
}

.about {
    padding: 5rem 2rem;
    background: white;
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.about-content {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.distribution-map {
    display: none;
    /* Removing old placeholder styles */
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.map-image {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* Map Pin Style */
.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #ff4d4d;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.map-pin::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Footprint Card Overlay */
.footprint-card {
    position: absolute;
    top: 38%;
    left: 37%;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    text-align: left;
    z-index: 5;
}

.footprint-card h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.footprint-card p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Stats Grid Bottom Section */
.stats-grid {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    border: 1px solid #eef2f6;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    background: white;
}

.stat-card {
    flex: 1;
    padding: 4rem 1rem;
    text-align: center;
    border-right: 1px solid #eef2f6;
    transition: background-color 0.3s ease;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background-color: #fcfdfe;
}

.stat-card h4 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.stat-card p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9da3ab;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}



/* Blaupunkt Section */
.blaupunkt-section {
    position: relative;
    background: url('images/blaupunkt-section.png') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blaupunkt-container {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 6rem 4rem 6rem 18%;
}

.blaupunkt-logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.blaupunkt-logo img {
    height: 40px;
    width: auto;
}

.blaupunkt-title {
    font-size: 80px;
    font-weight: 300;
    color: #1a1a2e;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -1px;
}

.blaupunkt-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
}

.blaupunkt-subtitle .highlight-blue {
    color: #0091DA;
}

/* Responsive Design for Blaupunkt Section */
@media (max-width: 1024px) {
    .blaupunkt-container {
        padding: 5rem 3rem 5rem 12%;
    }

    .blaupunkt-title {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }

    .blaupunkt-subtitle {
        font-size: 1.8rem;
    }

    .blaupunkt-logo img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .partner-container {
        padding: 0px;
    }

    .blaupunkt-section {
        min-height: 500px;
    }

    .blaupunkt-container {
        padding: 4rem 2rem;
        text-align: center;
    }

    .blaupunkt-logo {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .blaupunkt-logo img {
        height: 30px;
    }

    .blaupunkt-title {
        font-size: 3rem;
        margin-bottom: 1.2rem;
        letter-spacing: -0.5px;
    }

    .blaupunkt-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .blaupunkt-section {
        min-height: 400px;
    }

    .blaupunkt-container {
        padding: 3rem 1.5rem;
    }

    .blaupunkt-logo img {
        height: 25px;
    }

    .blaupunkt-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .blaupunkt-subtitle {
        font-size: 1.1rem;
    }
}

.team {
    padding: 8rem 2rem;
    background: white;
    text-align: center;
}

.team-container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

.team .section-title {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.team .subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.team-grid {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 1.5rem 3rem;
    /* Added horizontal padding to match container */
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.team-grid::-webkit-scrollbar {
    display: none;
}

.team-member {
    flex: 0 0 calc((100% - 6rem) / 5);
    min-width: 280px;
    background: #f3eee8;
    padding: 0.8rem;
    border-radius: 25px;
    position: relative;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.member-info {
    background: white;
    padding: 1rem 1rem;
    border-radius: 20px;
    text-align: left;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
}

.member-info h4 {
    font-size: 23px;
    color: #1a1a2e;
    font-weight: 400;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}

.member-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: #b4916a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0.5rem;
    flex-grow: 0.5;
}

.read-more {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.read-more:hover {
    color: #b4916a;
}

.read-more span {
    font-size: 1.3rem;
}

/* Insights Redesign */
.insights {
    padding: 5rem 4rem;
    background: white;
}

.insights-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-badge {
    background: #b4916a;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insights .section-title {
    font-size: 3.5rem;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    max-width: 800px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.insight-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.insight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-meta-overlap {
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    padding: 1.2rem 1.5rem;
    border-top-right-radius: 25px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 10px -10px 20px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.category-pill {
    border: 1px solid #e2e8f0;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 600;
}

.post-date {
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-content {
    padding: 0;
    background: transparent;
}

.insight-content h4 {
    font-size: 1.6rem;
    color: #1a1a2e;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s;
    cursor: pointer;
}

.insight-content h4:hover {
    color: #b4916a;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f59e0b;
}

/* Partner with us Section */
.partner-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?q=80&w=2000') center/cover no-repeat;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.partner-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.form-card {
    background: white;
    width: 100%;
    max-width: 580px;
    padding: 4.5rem;
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.form-title {
    font-size: 2.5rem;
    color: #1a1a2e;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.5;
}

.partner-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.partner-form .form-group {
    margin-bottom: 1.5rem;
}

.partner-form input,
.partner-form textarea {
    width: 100%;
    background: #f0f4f8;
    border: none;
    padding: 1.4rem 1.8rem;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a2e;
    font-family: inherit;
    transition: all 0.3s ease;
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.partner-form input:focus,
.partner-form textarea:focus {
    outline: none;
    background: #e2e8f0;
}

.partner-form textarea {
    min-height: 180px;
    resize: none;
}

.partner-submit-btn {
    width: 100%;
    background: #a68362;
    color: white;
    border: none;
    padding: 1.4rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.partner-submit-btn:hover {
    background: #917255;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.insights {
    padding: 5rem 2rem;
    background: white;
}

@media (max-width: 768px) {
    .insights {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.insights-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.insight-image {
    height: 200px;
    background: linear-gradient(135deg, #4a9eff 0%, #0066cc 100%);
}

.insight-content {
    padding: 2rem;
    background: white;
}

.insight-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 600;
}

.insight-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer Redesign */
.main-footer {
    background: #061221;
    padding: 6rem 0 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.footer-bubbles {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    height: 300px;
    opacity: 0.1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: white;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 0;
    right: 0;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    top: 120px;
    right: 80px;
}

.bubble-3 {
    width: 140px;
    height: 140px;
    top: 40px;
    right: 140px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin: 0 auto 5rem;
    max-width: 1440px;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.footer-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #8a99ad;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.footer-value {
    display: block;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.footer-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.newsletter-box {
    background: #0d1b2d;
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-input-group {
    position: relative;
    background: white;
    border-radius: 100px;
    padding: 4px;
    display: flex;
    align-items: center;
}

.newsletter-input-group input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    outline: none;
    color: #1a1a2e;
}

.newsletter-btn {
    background: #061221;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

.arrow-icon {
    font-size: 1.2rem;
    transform: rotate(-45deg);
}

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

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
}

.copyright {
    font-size: 0.85rem;
    color: #8a99ad;
}

.copyright strong {
    color: white;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-links a {
    color: #8a99ad;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 0.8rem;
    }

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

    .process-image {
        height: 350px;
    }

    .accordion-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .accordion-header h4 {
        font-size: 1rem;
    }

    .brand-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-left {
        flex-direction: column;
        text-align: center;
    }

    .philips-logo {
        width: 120px;
        height: 120px;
    }

    .brand-text h2 {
        font-size: 2rem;
    }

    .brand-text h3 {
        font-size: 1.4rem;
    }

    .brand-right {
        justify-content: center;
    }

    .info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .globe {
        width: 240px;
        height: 240px;
    }

    .globe-stat {
        width: 120px;
        height: 120px;
    }

    .globe-stat h3 {
        font-size: 2.2rem;
    }

    .globe-stat p {
        font-size: 0.75rem;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 40px;
    }
}

/* Brand Banner Section */
.brand-banner {
    background: #3d2416;
    /* Deep rich brown */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif;
}

.brand-banner-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.brand-logo-ji {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1;
    letter-spacing: -1px;
}

.brand-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.95;
}

.banner-graphic {
    position: absolute;
    width: 450px;
    height: 450px;
    pointer-events: none;
    opacity: 0.12;
}

.banner-graphic.left {
    top: -150px;
    left: -150px;
}

.banner-graphic.right {
    bottom: -150px;
    right: -150px;
}

.banner-circles {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 40px solid white;
    position: relative;
}

.banner-circles::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 25px solid white;
}

.banner-graphic.left::before {
    content: '';
    position: absolute;
    top: 200px;
    left: 200px;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, white 10%, transparent 11%);
    background-size: 50px 50px;
}

.banner-graphic.right::before {
    content: '';
    position: absolute;
    bottom: 200px;
    right: 200px;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, white 10%, transparent 11%);
    background-size: 50px 50px;
}

@media (max-width: 768px) {
    .brand-logo-ji {
        font-size: 3rem;
    }

    .brand-tagline {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .brand-banner {
        padding: 4rem 1rem;
    }
}

/* Partner Section */
.partner-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4rem 6rem 0;
    overflow: visible;
    background: url('images/banner-image.png') center/cover no-repeat;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.partner-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.form-card {
    background: white;
    border-radius: 16px;
    padding: 4rem 3.5rem;
    max-width: 645px;
    min-height: 720px;
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    bottom: -150px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.partner-form,
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b4916a;
    background: white;
    box-shadow: 0 0 0 3px rgba(180, 145, 106, 0.1);
}

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

.partner-submit-btn {
    background: #b4916a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.partner-submit-btn:hover {
    background: #a38159;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 145, 106, 0.3);
}

/* CF7 Specific Adjustments */
.cf7-partner-form br {
    display: none !important;
}

.cf7-partner-form p {
    display: contents !important;
}

.cf7-partner-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.cf7-partner-form .form-group {
    margin-bottom: 0;
}

/* Ensure validation messages don't break layout too much */
.wpcf7-not-valid-tip {
    font-size: 0.8rem;
    color: #ff4d4d;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin: 2rem 0 0 !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design for Partner Section */
@media (max-width: 1024px) {
    .partner-section {
        padding: 3rem 2rem;
        justify-content: center;
    }

    .partner-container {
        justify-content: center;
    }

    .form-card {
        max-width: 500px;
        bottom: -80px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
        bottom: 0px;
        margin-top: 2rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .partner-section {
        padding: 2rem 1rem;
    }

    .form-card {
        padding: 1.5rem 1.2rem;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .form-subtitle {
        font-size: 0.85rem;
    }

    .partner-submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

.insights {
    padding: 220px 2rem 5rem;
    background: #fff;
}

@media (max-width: 768px) {
    .insights {
        padding: 40px 1.5rem 4rem;
    }
}

/* Smart Locks Page Styles */
.smart-hero {
    position: relative;
    height: 633px;
    background: url('images/smart-lock-banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}


.smart-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.smart-hero-content h1 {
    font-size: 50px;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.smart-hero-content p {
    font-size: 23px;
    line-height: 1.8;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.why-oji-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 7rem;
}

.why-oji-cards {
    background: transparent;
    padding: 0 2rem 6rem;
    position: relative;
    z-index: 10;
}

.cards-container {
    max-width: 1200px;
    margin: -120px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.oji-card {
    background: white;
    padding: 2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
}

.oji-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.oji-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.oji-card p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 1rem;
}

.card-separator {
    width: 100%;
    height: 3px;
    background: #d4b494;
    position: relative;
    margin-top: auto;
    margin-bottom: 1rem;
}

.card-separator .dot {
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #d4b494;
    border-radius: 50%;
}

.card-icon {
    align-self: flex-start;
}

.card-icon img {
    height: 90px;
    width: auto;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .smart-hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .smart-hero {
        height: auto;
        padding: 6rem 1.5rem 10rem;
    }

    .smart-hero-content h1 {
        font-size: 3rem;
    }

    .why-oji-title h2 {
        font-size: 2.5rem;
    }

    .why-oji-cards {
        background: transparent;
        margin-top: 0;
        padding-bottom: 4rem;
    }

    .cards-container {
        margin-top: -60px;
    }
}

/* Oji System Section Styles */
.oji-system {
    padding: 8rem 2rem;
    background: #fff;
    text-align: center;
}

.oji-system-container {
    max-width: 1440px;
    margin: 0 auto;
}

.oji-system-header {
    margin-bottom: 5rem;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.oji-system-header h2.gold-title {
    color: #c89968;
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.oji-system-header h3 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    line-height: 80px;
    margin-bottom: 2rem;
}

.oji-system-header p {
    font-size: 23px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.oji-system-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .oji-system {
        padding: 4rem 1.5rem;
    }

    .oji-system-header h2.gold-title {
        font-size: 2.5rem;
    }

    .oji-system-header h3 {
        font-size: 1.8rem;
    }

    .oji-system-header {
        margin-bottom: 3rem;
    }
}

/* Solutions Badge Styles */
.solutions-badge {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.process-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 7rem;
}

.process-content h2 {
    margin-top: 0;
}

/* Smart Disinfection Page Styles */
.disinfection-hero {
    position: relative;
    height: 400px;
    background: url('images/Smart Disinfection-banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.disinfection-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.disinfection-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.oji-life-logo {
    margin-bottom: 2rem;
}

.oji-life-logo img {
    height: 80px;
    width: auto;
}

.disinfection-hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.disinfection-hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

@media (max-width: 768px) {
    .disinfection-hero {
        height: auto;
        padding: 6rem 1.5rem 8rem;
    }

    .disinfection-hero-content h1 {
        font-size: 3rem;
    }

    .disinfection-hero-content p {
        font-size: 1.1rem;
    }

    .oji-life-logo img {
        height: 60px;
    }
}

/* Smart Hygiene Section Styles */
.smart-hygiene {
    padding: 8rem 2rem;
    background: #fff;
}

.hygiene-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hygiene-image {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hygiene-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hygiene-content {
    flex: 0 0 70%;
}

.hygiene-content h2 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hygiene-content p {
    font-size: 23px;
    color: #333;
    line-height: 40px;
    margin-bottom: 2rem;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .hygiene-container {
        gap: 3rem;
    }

    .hygiene-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .smart-hygiene {
        padding: 4rem 1.5rem;
    }

    .hygiene-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .hygiene-image {
        max-width: 300px;
    }

    .hygiene-content {
        max-width: 100%;
    }

    .hygiene-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hygiene-content p {
        font-size: 1.1rem;
    }
}

/* Solutions Title Styles (Disinfection Page) */
.solutions-title-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.solutions-title-logo {
    height: 45px;
    width: auto;
    flex-shrink: 0;
}

.solutions-title-container h2 {
    margin: 0 !important;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    white-space: nowrap;
}

/* Choose Safety Section Styles */
.choose-safety {
    padding: 8rem 2rem;
    background: #fbfbfb;
    text-align: center;
}

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

.safety-branding {
    margin-bottom: 4rem;
}

.safety-branding img {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
}

.safety-subtag {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.safety-content h2 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.safety-content p {
    font-size: 23px;
    color: #35313B;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .choose-safety {
        padding: 4rem 1.5rem;
    }

    .safety-branding img {
        height: 80px;
    }

    .safety-content h2 {
        font-size: 2.5rem;
    }

    .safety-content p {
        font-size: 1.1rem;
    }
}




.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.62);
    /* Deep professional overlay */
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    width: 100%;
}

.about-hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -3px;
    line-height: 1.1;
    text-transform: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 60px;
        letter-spacing: -2px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 380px;
    }

    .about-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }
}

.about-hero {
    position: relative;
    height: 400px;
    background: url('images/about-banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

/* About Description Section */
.about-description {
    padding: 6rem 2rem;
    background: white;
}

.about-desc-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 4rem;
}

.about-desc-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 2rem;
}

.about-desc-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.about-desc-content {
    flex: 1;
    background: white;
    padding: 2rem 3.5rem;
    color: #1a1a2e;
    border-radius: 0;
}

.about-desc-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-desc-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .about-desc-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem;
    }

    .about-desc-content {
        width: 100%;
        padding: 3rem 2rem;
    }
}

/* Business Areas Section */
.business-areas {
    padding: 2rem 2rem 6rem;
    background: white;
}

.about-cards-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
}

.about-cards-container .business-card {
    min-height: 480px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.about-cards-container .business-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.about-cards-container .business-card p {
    font-size: 1rem;
    margin-bottom: auto;
}

.about-cards-container .card-icon img {
    height: 60px;
    width: auto;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .about-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .about-cards-container {
        grid-template-columns: 1fr;
    }
}


/* Our Products Section */
.our-products {
    padding: 6rem 2rem;
    background: white;
}

.product-showcase-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.showcase-content {
    flex: 1;
    padding-right: 2rem;
}

.showcase-content h2 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .product-showcase-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem;
    }

    .showcase-content {
        padding-right: 0;
        text-align: center;
    }
}


/* Our Clients Section */
.our-clients-section {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

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

.clients-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1.5rem;
}

.clients-header p {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}

.client-logo {
    width: 20%;
    /* 5 items per row */
    box-sizing: border-box;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background: white;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.05);
}

/* Ensure centering works correctly with borders */
/* The last row items will be centered by flexbox.
   The container has a border-left. The items have border-right.
   The gap (if centered) would show no border.
   But with width: 20%, they act like grid cells.
   Only the last row (if not full) needs care if justify-content: center moves them away from the left edge.
   If we want strict 5-column grid alignment for full rows, but centered last row:
*/
.clients-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    border-top: 1px solid #eee;
    border-left: none;
    /* Remove container left border */
}

.client-logo {
    grid-column: span 2;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: auto;
    /* Reset width from flex attempt */
}

/* Add left border to the first item of each row */
.client-logo:nth-child(5n+1) {
    border-left: 1px solid #eee;
}

/* Specific centering for 22 items */
/* Item 21 is the 1st item of the 5th row -> Gets border-left */
/* Item 22 is the 2nd item -> No border-left */
/* Position them in the center (Cols 4-5 and 6-7) */
.client-logo:nth-child(21) {
    grid-column-start: 4;
    padding: 1rem;
    /* Reduced padding from 2rem */
}

.client-logo:nth-child(21) img {
    max-width: 120%;
    /* Increase limit */
    width: auto;
    max-height: 110%;
}

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .client-logo:nth-child(5n+1) {
        border-left: none;
        /* Reset desktop border */
    }

    /* Tablet: 3 items per row (span 2 of 6) */
    .client-logo:nth-child(3n+1) {
        border-left: 1px solid #eee;
    }

    /* Center last item (22) if it's alone? */
    /* 22 items. 7 rows of 3 = 21. Last row has 1 item. */
    /* Center Item 22 in 6 cols -> Start at 3 (Cols 3-4) */
    .client-logo:nth-child(22) {
        grid-column-start: 3;
        border-left: 1px solid #eee;
        /* Needs left border since it's start of visual row */
    }

    .client-logo:nth-child(21) {
        grid-column-start: auto;
        /* Reset desktop centering */
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo:nth-child(3n+1) {
        border-left: none;
        /* Reset tablet border */
    }

    /* Mobile: 2 items per row (span 1 of 2) */
    .client-logo {
        grid-column: span 1;
    }

    .client-logo:nth-child(2n+1) {
        border-left: 1px solid #eee;
    }

    .client-logo:nth-child(22) {
        grid-column-start: auto;
        /* Reset tablet centering */
        border-left: none;
        /* Reset tablet border */
    }

    .clients-header h2 {
        font-size: 2.5rem;
    }
}

/* Refined Contact Us Page Styles */
.contact-refined-section {
    padding: 8rem 2rem;
    background: white;
}

.contact-refined-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.contact-form-card {
    flex: 1;
    background: white;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-form-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.refined-input-group {
    margin-bottom: 1.5rem;
}

.refined-input-group input,
.refined-input-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: none;
    background: #f1f3f6;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
}

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

.refined-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #a07e5c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.refined-submit-btn:hover {
    background: #8e6c4a;
}

.office-sections {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.office-box {
    text-align: left;
}

.office-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
}

.office-map {
    margin-bottom: 2.5rem;
    border-radius: 4px;
    overflow: hidden;
    height: 250px;
}

.office-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.detail-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .contact-refined-container {
        flex-direction: column;
        gap: 4rem;
    }

    .contact-form-card,
    .office-sections {
        width: 100%;
    }
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s ease;
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

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

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        transition: 0.5s ease;
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.6s;
    }
}


input.wpcf7-form-control {
    width: 100%;
}

.form-group textarea {
    height: 120px;
    width: 100%;
}
.about-content h2.section-title {
    font-size: 100px;
    line-height: 1;
}

.team-container p.subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #3F4757;
}