/* ========================================
   HERO SECTION STYLES
======================================== */

/* Hero Section Container */
.hero-section {
    min-height: 832px;
    background: linear-gradient(180deg, #3555C8 0%, #1a2a62 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.hero-section .hero-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-section .hero-content {
    max-width: 787px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 10;
}

/* Hero Typography */
.hero-section .hero-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 64px;
    line-height: 70.4px;
    color: white;
}

.hero-section .hero-title-regular {
    font-weight: 400;
}

.hero-section .hero-title-bold {
    font-weight: 700;
}

.hero-section .hero-subtitle {
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    color: white;
    text-transform: capitalize;
}

.hero-section .hero-subtitle-regular {
    font-weight: 400;
}

.hero-section .hero-subtitle-bold {
    font-weight: 700;
}

/* Hero Features */
.hero-section .hero-features {
    width: 413px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-section .hero-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-section .hero-feature-icon {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border-radius: 2px;
}

.hero-section .hero-feature-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
}

/* Hero Buttons */
.hero-section .hero-buttons {
    display: flex;
    gap: 14px;
}

.hero-section .hero-btn {
    padding: 14px 40px;
    border-radius: 100px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background-color: #DC2626;
    color: white;
}

.hero-btn-primary:hover {
    background-color: #B91C1C;
    color: white;
}

.hero-btn-secondary {
    background-color: white;
    color: #3555C8;
    border: 2px solid #3555C8;
}

.hero-btn-secondary:hover {
    background-color: #3555C8;
    color: white;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 830px;
    height: 940px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay-1 {
    position: absolute;
    right: 304px;
    top: 50%;
    transform: translateY(-50%);
    width: 776px;
    height: 1144px;
    z-index: 2;
}

.hero-overlay-2 {
    position: absolute;
    right: 433px;
    top: 40%;
    transform: translateY(-50%);
    width: 776px;
    height: 1144px;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .hero-section .hero-image {
        width: 550px !important;
        height: 700px !important;
    }
    
    .hero-section .hero-overlay-1 {
        right: 50px !important;
        width: 600px !important;
        height: 900px !important;
    }
    
    .hero-section .hero-overlay-2 {
        right: 150px !important;
        width: 600px !important;
        height: 900px !important;
    }
}

@media (max-width: 1400px) {
    .hero-section .hero-container {
        max-width: 1200px !important;
    }
    
    .hero-section .hero-image {
        width: 600px !important;
        height: 600px !important;
    }
    
    .hero-section .hero-overlay-1,
    .hero-section .hero-overlay-2 {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-section .hero-container {
        padding: 0 40px !important;
    }
    
    .hero-section .hero-content {
        text-align: center !important;
        max-width: 100% !important;
        position: relative !important;
        z-index: 10 !important;
        gap: 48px !important;
    }
    
    .hero-section .hero-title {
        font-size: 48px !important;
        line-height: 52px !important;
    }
    
    .hero-section .hero-subtitle {
        font-size: 22px !important;
        line-height: 28px !important;
    }
    
    .hero-section .hero-features {
        width: 100% !important;
        align-items: center !important;
        gap: 24px !important;
    }
    
    .hero-section .hero-feature {
        justify-content: center !important;
        gap: 16px !important;
    }
    
    .hero-section .hero-feature-text {
        font-size: 22px !important;
    }
    
    .hero-section .hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    .hero-section .hero-btn {
        padding: 16px 32px !important;
        font-size: 20px !important;
    }
    
    .hero-section .hero-image {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh !important;
        padding: 60px 0 !important;
    }
    
    .hero-section .hero-container {
        padding: 0 30px !important;
    }
    
    .hero-section .hero-content {
        gap: 40px !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .hero-section .hero-image,
    .hero-section .hero-overlay-1,
    .hero-section .hero-overlay-2 {
        display: none !important;
    }
    
    .hero-section .hero-title {
        font-size: 32px !important;
        line-height: 36px !important;
    }
    
    .hero-section .hero-subtitle {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    
    .hero-section .hero-features {
        width: 100% !important;
        gap: 20px !important;
        align-items: center !important;
    }
    
    .hero-section .hero-feature {
        justify-content: center !important;
        gap: 16px !important;
    }
    
    .hero-section .hero-feature-text {
        font-size: 18px !important;
        text-align: center !important;
    }
    
    .hero-section .hero-buttons {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .hero-section .hero-btn {
        width: 100% !important;
        font-size: 18px !important;
        padding: 14px 28px !important;
        font-weight: 600 !important;
    }
}

/* ========================================
   TRUSTED COMPANIES SECTION STYLES
======================================== */

/* Trusted Companies Container */
.trusted-companies-section {
    padding: 96px 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
    overflow: hidden;
}

.trusted-companies-section .trusted-companies-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* Trusted Companies Typography */
.trusted-companies-section .trusted-companies-title {
    text-align: center;
    color: #3555C8;
    font-size: 48px;
    font-weight: 900;
    font-family: 'Segoe UI', sans-serif;
    line-height: 40px;
    margin: 0;
}

/* Company Logos */
.trusted-companies-section .trusted-companies-logos {
    width: 100%;
    height: 96px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-companies-section .company-logo {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trusted-companies-section .company-logo:hover {
    opacity: 1;
}

.trusted-companies-section .company-logo img {
    max-height: 96px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trusted-companies-section .company-logo:hover img {
    filter: grayscale(0%);
}

/* Responsive Design for Trusted Companies */
@media (max-width: 1024px) {
    .trusted-companies-section {
        padding: 60px 0 !important;
    }
    
    .trusted-companies-section .trusted-companies-title {
        font-size: 36px !important;
        line-height: 40px !important;
    }
    
    .trusted-companies-section .trusted-companies-logos {
        height: auto !important;
        gap: 20px !important;
    }
    
    .trusted-companies-section .company-logo {
        height: 60px !important;
    }
    
    .trusted-companies-section .company-logo img {
        max-height: 60px !important;
    }
}

@media (max-width: 768px) {
    .trusted-companies-section {
        padding: 40px 0 !important;
    }
    
    .trusted-companies-section .trusted-companies-container {
        padding: 0 20px !important;
    }
    
    .trusted-companies-section .trusted-companies-title {
        font-size: 28px !important;
        line-height: 32px !important;
    }
    
    .trusted-companies-section .trusted-companies-logos {
        gap: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .trusted-companies-section .company-logo {
        height: 50px !important;
        flex: 0 0 auto !important;
    }
    
    .trusted-companies-section .company-logo img {
        max-height: 50px !important;
    }
}

@media (max-width: 480px) {
    .trusted-companies-section {
        padding: 30px 0 !important;
    }
    
    .trusted-companies-section .trusted-companies-container {
        padding: 0 16px !important;
    }
    
    .trusted-companies-section .trusted-companies-title {
        font-size: 24px !important;
        line-height: 28px !important;
    }
    
    .trusted-companies-section .trusted-companies-logos {
        gap: 12px !important;
        height: auto !important;
    }
    
    .trusted-companies-section .company-logo {
        height: 40px !important;
        width: calc(50% - 6px) !important;
        max-width: 120px !important;
    }
    
    .trusted-companies-section .company-logo img {
        max-height: 40px !important;
        width: 100% !important;
    }
 }

/* ========================================
   TALK TO TEAM SECTION STYLES
======================================== */

/* Talk to Team Container */
.talk-to-team-section {
    align-self: stretch;
    padding: 100px 190px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 100px;
    background-color: white;
}

.talk-to-team-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.talk-to-team-card {
    background: linear-gradient(180deg, #3555C8 0%, #1A2A62 100%);
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1541px;
}

/* Talk to Team Image Wrapper */
.talk-to-team-image-wrapper {
    width: 522px;
    height: 315px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.talk-to-team-bg-image {
    width: 522px;
    height: 345px;
    left: -94px;
    top: -30px;
    position: absolute;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    object-fit: cover;
    background-position: 66.67% 0%;
    background-repeat: no-repeat;
    background-size: 99.06% 100%;
}

.talk-to-team-vector-1 {
    width: 557.94px;
    height: 822.34px;
    left: 40.06px;
    top: -382.35px;
    position: absolute;
    z-index: 1;
}

.talk-to-team-overlay-image {
    width: 522px;
    height: 345px;
    left: -94px;
    top: -30px;
    position: absolute;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    object-fit: cover;
    background-position: 66.67% 0%;
    background-repeat: no-repeat;
    background-size: 99.06% 100%;
    z-index: 2;
}

.talk-to-team-vector-2 {
    width: 557.94px;
    height: 822.34px;
    left: 172px;
    top: -466px;
    position: absolute;
    z-index: 3;
}

/* Talk to Team Content */
.talk-to-team-content {
    width: 1019px;
    padding: 50px 35px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}

.talk-to-team-title {
    width: 771px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 42px;
    line-height: 46.20px;
    text-transform: capitalize;
    word-wrap: break-word;
}

.talk-to-team-title-white {
    color: white;
    font-weight: 700;
}

.talk-to-team-title-yellow {
    color: #EEB524;
    font-weight: 700;
}

.talk-to-team-description {
    align-self: stretch;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    text-transform: capitalize;
    word-wrap: break-word;
}

.talk-to-team-link {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    cursor: pointer;
    transition: color 0.3s ease;
}

.talk-to-team-link:hover {
    color: #EEB524;
}

.talk-to-team-text {
    color: white;
    font-weight: 600;
}

/* Responsive Design for Talk to Team Section */
@media (max-width: 1400px) {
    .talk-to-team-section {
        padding: 80px 100px;
    }
    
    .talk-to-team-image-container {
        width: 400px;
        height: 250px;
    }
    
    .talk-to-team-image,
    .talk-to-team-image-overlay {
        width: 400px;
        height: 280px;
    }
    
    .talk-to-team-content {
        width: 800px;
    }
    
    .talk-to-team-title {
        width: 600px;
        font-size: 36px;
        line-height: 40px;
    }
    
    .talk-to-team-description {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .talk-to-team-section {
        padding: 60px 40px;
    }
    
    .talk-to-team-card {
        flex-direction: column;
        text-align: center;
    }
    
    .talk-to-team-image-container {
        width: 100%;
        height: 200px;
    }
    
    .talk-to-team-image,
    .talk-to-team-image-overlay {
        width: 100%;
        height: 200px;
        left: 0;
        top: 0;
        position: relative;
    }
    
    .talk-to-team-overlay-1,
    .talk-to-team-overlay-2 {
        display: none;
    }
    
    .talk-to-team-content {
        width: 100%;
        padding: 40px 20px;
    }
    
    .talk-to-team-title {
        width: 100%;
        font-size: 32px;
        line-height: 36px;
    }
    
    .talk-to-team-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .talk-to-team-section {
        padding: 40px 20px;
        gap: 60px;
    }
    
    .talk-to-team-content {
        gap: 30px;
        padding: 30px 20px;
    }
    
    .talk-to-team-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .talk-to-team-description {
        font-size: 16px;
    }
    
    .talk-to-team-image-container {
        height: 150px;
    }
    
    .talk-to-team-image,
    .talk-to-team-image-overlay {
        height: 150px;
    }
}

/* ========================================
   FAST RESPONSE SECTION STYLES
======================================== */

/* Fast Response Container */
.fast-response-section {
    padding: 80px 192px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 96px;
    overflow: hidden;
    background-color: white;
}

.fast-response-section .fast-response-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.fast-response-section .fast-response-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Fast Response Elements */
.fast-response-section .fast-response-image {
    width: 631px;
    height: 684px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.fast-response-section .fast-response-text {
    width: 760px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
}

.fast-response-section .fast-response-title {
    width: 616px;
    justify-content: flex-start;
}

/* Fast Response Typography */
.fast-response-section .title-normal {
    color: #3555C8;
    font-size: 48px;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    line-height: 40px;
}

.fast-response-section .title-bold {
    color: #3555C8;
    font-size: 48px;
    font-weight: 900;
    font-family: 'Segoe UI', sans-serif;
    line-height: 40px;
}

.fast-response-section .fast-response-description {
    width: 100%;
    color: #333333;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.5;
}

/* ========================================
   COLD ROOM SECTION STYLES
======================================== */

/* Cold Room Container */
.cold-room-section {
    background: linear-gradient(to bottom, #3555C8, #1e3a8a);
    border-radius: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cold-room-background {
    width: 384px;
    height: 384px;
    position: relative;
    flex-shrink: 0;
}

.cold-room-content {
    width: 1139px;
    padding-right: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    padding: 60px 36px 60px 40px;
}

.cold-room-title {
    width: 616px;
    justify-content: flex-start;
}

.title-white {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    line-height: 40px;
}

.title-yellow {
    color: #EEB524;
    font-size: 48px;
    font-weight: 900;
    font-family: 'Segoe UI', sans-serif;
    line-height: 40px;
}

.cold-room-description {
    width: 100%;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.5;
}

/* Responsive Design for Fast Response Section */
@media (max-width: 1400px) {
    .fast-response-section {
        padding: 60px 100px !important;
    }
    
    .fast-response-section .fast-response-image {
        width: 500px !important;
        height: 550px !important;
    }
    
    .fast-response-section .fast-response-text {
        width: 600px !important;
    }
    
    .fast-response-section .fast-response-title {
        width: 100% !important;
    }
    
    .fast-response-section .title-normal, .fast-response-section .title-bold, .fast-response-section .title-white, .fast-response-section .title-yellow {
        font-size: 40px !important;
        line-height: 44px !important;
    }
    
    .fast-response-section .fast-response-description, .fast-response-section .cold-room-description {
        font-size: 20px !important;
    }
    
    .cold-room-content {
        width: 900px;
    }
}

@media (max-width: 1024px) {
    .fast-response-section {
        padding: 40px 60px !important;
    }
    
    .fast-response-section .fast-response-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .fast-response-section .fast-response-image {
        width: 100% !important;
        max-width: 500px !important;
        height: auto !important;
    }
    
    .fast-response-section .fast-response-text {
        width: 100% !important;
    }
    
    .cold-room-section {
        flex-direction: column;
    }
    
    .cold-room-background {
        width: 100%;
        height: 200px;
    }
    
    .cold-room-content {
        width: 100%;
        padding: 40px 20px;
    }
    
    .fast-response-section .title-normal, .fast-response-section .title-bold, .fast-response-section .title-white, .fast-response-section .title-yellow {
        font-size: 32px !important;
        line-height: 36px !important;
    }
}

@media (max-width: 768px) {
    .fast-response-section {
        padding: 40px 20px !important;
        gap: 60px !important;
    }
    
    .fast-response-section .fast-response-container {
        gap: 60px !important;
    }
    
    .fast-response-section .fast-response-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .fast-response-section .fast-response-image {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .fast-response-section .fast-response-text {
        gap: 30px !important;
        width: 100% !important;
    }
    
    .fast-response-section .fast-response-title {
        width: 100% !important;
        text-align: center !important;
    }
    
    .fast-response-section .title-normal, .fast-response-section .title-bold, .fast-response-section .title-white, .fast-response-section .title-yellow {
        font-size: 28px !important;
        line-height: 32px !important;
    }
    
    .fast-response-section .fast-response-description, .fast-response-section .cold-room-description {
        font-size: 18px !important;
        text-align: center !important;
    }
    
    .cold-room-content {
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .cold-room-title {
        width: 100%;
        text-align: center;
    }
    
    .cold-room-background {
        display: none;
        height: 150px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fast-response-section {
        padding: 30px 16px !important;
        gap: 40px !important;
    }
    
    .fast-response-section .fast-response-container {
        gap: 40px !important;
    }
    
    .fast-response-section .fast-response-content {
        gap: 24px !important;
    }
    
    .fast-response-section .fast-response-image {
        max-width: 320px !important;
    }
    
    .fast-response-section .fast-response-text {
        gap: 20px !important;
    }
    
    .fast-response-section .title-normal, .fast-response-section .title-bold, .fast-response-section .title-white, .fast-response-section .title-yellow {
        font-size: 24px !important;
        line-height: 28px !important;
    }
    
    .fast-response-section .fast-response-description, .fast-response-section .cold-room-description {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    .cold-room-content {
        gap: 20px;
        padding: 24px 16px;
    }
    
    .cold-room-background {
        height: 120px;
    }
}

/* Refrigwest on the Job Section */
.refrigwest-job-section {
    background-color: white;
    overflow: hidden;
    padding: 100px 0;
}

.refrigwest-job-section .job-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    gap: 60px;
}

.refrigwest-job-section .job-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.refrigwest-job-section .job-title {
    color: #3555C8;
    font-size: 48px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 900;
    line-height: 40px;
    margin: 0;
    text-align: center;
}

.refrigwest-job-section .job-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1800px;
}

.refrigwest-job-section .job-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.refrigwest-job-section .job-image {
    width: 100%;
    height: 478px;
    border-radius: 20px;
    position: relative;
    object-fit: cover;
}

.refrigwest-job-section .job-image-first {
    outline: 1px solid #3555C8;
}

.refrigwest-job-section .job-image-default {
    outline: 1px solid #000000;
}

/* Responsive Design */
@media (max-width: 1536px) {
    .refrigwest-job-section .job-container {
        max-width: 1280px;
        padding: 0 100px;
        gap: 50px;
    }
    
    .refrigwest-job-section .job-images-grid {
        max-width: 1400px;
        gap: 30px;
    }
    
    .refrigwest-job-section .job-image {
        height: 380px;
    }
}

@media (max-width: 1280px) {
    .refrigwest-job-section .job-container {
        padding: 0 80px;
        gap: 40px;
    }
    
    .refrigwest-job-section .job-title {
        font-size: 40px;
    }
    
    .refrigwest-job-section .job-images-grid {
        max-width: 1000px;
        gap: 25px;
    }
    
    .refrigwest-job-section .job-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .refrigwest-job-section {
        padding: 40px 0;
    }
    
    .refrigwest-job-section .job-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .refrigwest-job-section .job-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .refrigwest-job-section .job-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .refrigwest-job-section .job-column {
        gap: 20px;
    }
    
    .refrigwest-job-section .job-image {
        height: 280px;
    }
}

/* Our Why Section */
.our-why-section {
    background-color: #3555C8;
    position: relative;
    overflow: hidden;
    height: 747px;
    padding: 0;
}

.our-why-section .our-why-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.our-why-section .our-why-image {
    position: absolute;
    left: -95px;
    top: 2.99px;
    width: 830.62px;
    height: 829.58px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index: 1;
}

.our-why-section .our-why-overlay-1 {
    position: absolute;
    left: 967.56px;
    top: 1024.57px;
    width: 776.56px;
    height: 1144.57px;
    transform-origin: top left;
    transform: rotate(180deg);
    z-index: 2;
}

.our-why-section .our-why-overlay-2 {
    position: absolute;
    left: 1115.18px;
    top: 1141px;
    width: 776.56px;
    height: 1144.57px;
    transform-origin: top left;
    transform: rotate(180deg);
    z-index: 2;
}

.our-why-section .our-why-content {
    position: absolute;
    right: 0;
    top: 100px;
    width: 890px;
    padding-right: 36px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    z-index: 10;
}

.our-why-section .our-why-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.our-why-section .our-why-title {
    color: white;
    font-size: 48px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 900;
    line-height: 40px;
    margin: 0;
    width: 616px;
}

.our-why-section .our-why-subtitle {
    color: white;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    width: 855px;
}

.our-why-section .our-why-description {
    color: white;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    width: 100%;
}

.our-why-section .our-why-button {
    background-color: #DC2626;
    color: white;
    padding: 14px 40px;
    border-radius: 100px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    transition: all 0.3s ease;
}

.our-why-section .our-why-button:hover {
    background-color: #B91C1C;
    color: white;
}

/* Responsive Design for Our Why Section */
@media (max-width: 1536px) {
    .our-why-section .our-why-container {
        max-width: 1280px;
    }
    
    .our-why-section .our-why-content {
        left: 700px;
        width: auto !important;
    }
    
    .our-why-section .our-why-title {
        width: 500px;
        font-size: 40px;
    }
    
    .our-why-section .our-why-subtitle {
        width: 700px;
        font-size: 22px;
    }
    
    .our-why-section .our-why-description {
        font-size: 22px;
    }
}

@media (max-width: 1280px) {
    .our-why-section {
        height: auto;
        min-height: 600px;
        padding: 60px 0;
    }
    
    .our-why-section .our-why-image {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 600px;
        height: 400px;
        margin: 0 auto 40px;
    }
    
    .our-why-section .our-why-overlay-1,
    .our-why-section .our-why-overlay-2 {
        display: none;
    }
    
    .our-why-section .our-why-content {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto;
        padding: 0 40px;
        text-align: center;
    }
    
    .our-why-section .our-why-title {
        width: 100%;
        font-size: 36px;
    }
    
    .our-why-section .our-why-subtitle {
        width: 100%;
        font-size: 20px;
    }
    
    .our-why-section .our-why-description {
        width: 100%;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .our-why-section {
        padding: 40px 0;
    }
    
    .our-why-section .our-why-image {
        max-width: 100%;
        display: none;
        height: 300px;
    }
    
    .our-why-section .our-why-content {
        padding: 0 20px;
        gap: 32px;
    }
    
    .our-why-section .our-why-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .our-why-section .our-why-subtitle {
        font-size: 18px;
    }
    
    .our-why-section .our-why-description {
        font-size: 18px;
    }
    
    .our-why-section .our-why-button {
        font-size: 20px;
        padding: 12px 32px;
    }
}

/* Our Services Section */
.our-services-section {
    background-color: #f9f8f8;
    padding: 100px 0;
    overflow: hidden;
}

.our-services-section .our-services-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.our-services-section .our-services-title {
    color: #3555C8;
    font-size: 48px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 900;
    line-height: 40px;
    margin: 0;
    width: 100%;
}

.our-services-section .our-services-grid {
    display: flex;
    gap: 17px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.our-services-section .service-card {
    width: 294.3px;
    height: 466.76px;
    background-color: #3555C8;
    border-radius: 18.745px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.our-services-section .service-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.our-services-section .service-link:hover {
    transform: scale(1.05);
}

.our-services-section .service-link:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.our-services-section .service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 171.7% 81.2%;
    background-position: 50% 0%;
    background-repeat: no-repeat;
}

.our-services-section .service-overlay {
    position: absolute;
    left: 0;
    top: 222px;
    width: 294px;
    height: 245px;
}

.our-services-section .service-overlay-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-services-section .service-content {
    position: absolute;
    top: 351px;
    left: 50%;
    transform: translateX(-50%);
    width: 265px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
}

.our-services-section .service-name {
    color: white;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
    white-space: nowrap;
}

.our-services-section .service-card:nth-child(3) .service-name,
.our-services-section .service-card:nth-child(4) .service-name,
.our-services-section .service-card:nth-child(5) .service-name {
    font-family: 'Arial', sans-serif;
    white-space: normal;
    width: 196px;
}

.our-services-section .service-card:nth-child(5) .service-name {
    width: 224px;
}

/* Responsive Design for Our Services Section */
@media (max-width: 1536px) {
    .our-services-section .our-services-container {
        max-width: 1280px !important;
        padding: 0 100px !important;
    }
    
    .our-services-section .our-services-grid {
        gap: 15px !important;
    }
    
    .our-services-section .service-card {
        width: 250px !important;
        height: 400px !important;
    }
    
    .our-services-section .service-link {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .our-services-section .service-content {
        top: 300px !important;
        width: 220px !important;
    }
    
    .our-services-section .service-overlay {
        top: 190px !important;
        width: 250px !important;
        height: 210px !important;
    }
}

@media (max-width: 1280px) {
    .our-services-section .our-services-container {
        padding: 0 80px !important;
    }
    
    .our-services-section .our-services-grid {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px !important;
    }
    
    .our-services-section .service-card {
        width: 280px !important;
        height: 420px !important;
    }
    
    .our-services-section .service-link {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .our-services-section .service-content {
        top: 320px !important;
        width: 240px !important;
    }
    
    .our-services-section .service-overlay {
        top: 200px !important;
        width: 280px !important;
        height: 220px !important;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 60px 0 !important;
    }
    
    .our-services-section .our-services-container {
        padding: 0 20px !important;
        gap: 40px !important;
    }
    
    .our-services-section .our-services-title {
        font-size: 36px !important;
        line-height: 40px !important;
        text-align: center !important;
    }
    
    .our-services-section .our-services-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    
    .our-services-section .service-card {
        width: 100% !important;
        max-width: 320px !important;
        height: 450px !important;
    }
    
    .our-services-section .service-link {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
    }
    
    .our-services-section .service-link:hover {
        transform: scale(1.02) !important;
    }
    
    .our-services-section .service-content {
        top: 340px !important;
        width: 280px !important;
    }
    
    .our-services-section .service-overlay {
        top: 220px !important;
        width: 100% !important;
        height: 240px !important;
    }
    
    .our-services-section .service-name {
        font-size: 22px !important;
        text-align: center !important;
    }
    
    .our-services-section .service-card:nth-child(3) .service-name,
    .our-services-section .service-card:nth-child(4) .service-name,
    .our-services-section .service-card:nth-child(5) .service-name {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .our-services-section {
        padding: 40px 0 !important;
    }
    
    .our-services-section .our-services-container {
        padding: 0 15px !important;
        gap: 30px !important;
    }
    
    .our-services-section .our-services-title {
        font-size: 28px !important;
        line-height: 32px !important;
        text-align: center !important;
    }
    
    .our-services-section .our-services-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
    }
    
    .our-services-section .service-card {
        width: 100% !important;
        max-width: 280px !important;
        height: 400px !important;
    }
    
    .our-services-section .service-link {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
    }
    
    .our-services-section .service-link:hover {
        transform: scale(1.01) !important;
    }
    
    .our-services-section .service-content {
        top: 300px !important;
        width: 240px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .our-services-section .service-overlay {
        top: 180px !important;
        width: 100% !important;
        height: 220px !important;
    }
    
    .our-services-section .service-name {
        font-size: 18px !important;
        text-align: center !important;
        line-height: 22px !important;
    }
    
    .our-services-section .service-card:nth-child(3) .service-name,
    .our-services-section .service-card:nth-child(4) .service-name,
    .our-services-section .service-card:nth-child(5) .service-name {
        width: 100% !important;
        font-size: 18px !important;
    }
}

/* What Makes Section */
.what-makes-section {
    background-color: white;
    padding: 100px 0;
    overflow: hidden;
}

.what-makes-section .what-makes-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 192px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.what-makes-section .what-makes-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.what-makes-section .what-makes-title {
    width: 100%;
    text-align: center;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 48px;
    line-height: 40px;
}

.what-makes-section .what-makes-title-normal {
    color: #3555C8;
    font-weight: 400;
}

.what-makes-section .what-makes-title-bold {
    color: #3555C8;
    font-weight: 900;
}

.what-makes-section .what-makes-description {
    width: 100%;
    max-width: 1278px;
    text-align: center;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    line-height: 1.5;
}

.what-makes-section .what-makes-text-normal {
    color: #27272A;
    font-weight: 400;
}

.what-makes-section .what-makes-text-underline {
    color: #3555C8;
    font-weight: 700;
    text-decoration: underline;
}

.what-makes-section .what-makes-text-bold {
    color: #3555C8;
    font-weight: 700;
}

.what-makes-section .what-makes-text-bold-dark {
    color: #27272A;
    font-weight: 700;
}

.what-makes-section .what-makes-subtitle {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #27272A;
    font-family: 'Segoe UI', sans-serif;
    font-size: 36px;
    font-weight: 600;
}

.what-makes-section .what-makes-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.what-makes-section .what-makes-item {
    width: 100%;
    max-width: 1540px;
    background-color: #f9f8f8;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.what-makes-section .what-makes-item-header {
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.what-makes-section .what-makes-item-text {
    color: #27272A;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.what-makes-section .what-makes-item-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.what-makes-section .what-makes-item.active .what-makes-item-icon {
    transform: rotate(180deg);
}

.what-makes-section .what-makes-item-content {
    padding: 0 48px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
}

.what-makes-section .what-makes-item.active .what-makes-item-content {
    max-height: 500px;
    padding: 0 48px 24px 48px;
    opacity: 1;
}

.what-makes-section .what-makes-item-content p {
    color: #27272A;
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.what-makes-section .what-makes-item-content p:last-child {
    margin-bottom: 0;
}

.what-makes-section .what-makes-item-content ul {
    color: #27272A;
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    margin: 20px 0 20px 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.what-makes-section .what-makes-item-content li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    transition: all 0.2s ease;
}

.what-makes-section .what-makes-item-content li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3555C8 0%, #1E40AF 100%);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(53, 85, 200, 0.3);
    transition: all 0.2s ease;
}

.what-makes-section .what-makes-item-content li:hover {
    color: #1E40AF;
    transform: translateX(2px);
}

.what-makes-section .what-makes-item-content li:hover:before {
    background: linear-gradient(135deg, #1E40AF 0%, #3555C8 100%);
    transform: scale(1.2);
    box-shadow: 0 3px 6px rgba(53, 85, 200, 0.4);
}

.what-makes-section .what-makes-item-content li:last-child {
    margin-bottom: 0;
}

.what-makes-section .what-makes-item-content strong {
    color: #1E40AF;
    font-weight: 600;
}

.what-makes-section .what-makes-item-content em {
    color: #3555C8;
    font-style: italic;
    font-weight: 500;
}

/* Responsive Design for What Makes Section */
@media (max-width: 1536px) {
    .what-makes-section .what-makes-container {
        max-width: 1280px;
        padding: 0 100px;
    }
    
    .what-makes-section .what-makes-description {
        max-width: 1000px;
    }
    
    .what-makes-section .what-makes-item {
        max-width: 1280px;
    }
}

@media (max-width: 1280px) {
    .what-makes-section .what-makes-container {
        padding: 0 80px;
        gap: 60px;
    }
    
    .what-makes-section .what-makes-header {
        gap: 40px;
    }
    
    .what-makes-section .what-makes-title {
        font-size: 40px;
        line-height: 44px;
    }
    
    .what-makes-section .what-makes-description {
        font-size: 22px;
    }
    
    .what-makes-section .what-makes-subtitle {
        font-size: 32px;
    }
    
    .what-makes-section .what-makes-item {
        padding: 20px 40px;
    }
    
    .what-makes-section .what-makes-item-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .what-makes-section {
        padding: 60px 0;
    }
    
    .what-makes-section .what-makes-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .what-makes-section .what-makes-header {
        gap: 32px;
    }
    
    .what-makes-section .what-makes-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .what-makes-section .what-makes-description {
        font-size: 18px;
    }
    
    .what-makes-section .what-makes-subtitle {
        font-size: 28px;
    }
    
    .what-makes-section .what-makes-list {
        gap: 20px;
    }
    
    .what-makes-section .what-makes-item {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .what-makes-section .what-makes-item.active .what-makes-item-content{
        padding:10px 0;
    }

    .what-makes-section .what-makes-item-header {
        padding: 0;
    }
    
    .what-makes-section .what-makes-item-text {
        font-size: 20px;
        text-align: left;
    }
    
    .what-makes-section .what-makes-item-icon {
        align-self: flex-end;
    }
}

/* Who's Most at Risk Section */
.whos-at-risk-section {
    padding: 96px 192px;
    background-color: #F8F7F7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
    overflow: hidden;
}

.whos-at-risk-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
}

.whos-at-risk-title {
    width: 629px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #1E3A8A;
    line-height: 70.4px;
    text-align: left;
}

.whos-at-risk-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
}

.whos-at-risk-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.whos-at-risk-card {
    width: 500px;
    padding: 36px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    flex: 1;
}

.whos-at-risk-card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.whos-at-risk-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whos-at-risk-card-small {
    width: 384px;
    padding: 36px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    flex: 1;
}

.whos-at-risk-icon {
    width: 48px;
    height: 48px;
}

.whos-at-risk-card-title {
    width: 100%;
    font-family: 'Segoe UI', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1D4ED8;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
}

.whos-at-risk-card-description {
    width: 100%;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    color: #27272A;
    text-align: left;
}

.whos-at-risk-card-description-small {
    width: 100%;
    height: 192px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    color: #27272A;
    text-align: left;
}

.whos-at-risk-text-normal {
    font-weight: 400;
}

.whos-at-risk-text-bold {
    font-weight: 700;
}

.whos-at-risk-summary {
    width: 1540px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    color: #27272A;
    text-align: left;
}

.whos-at-risk-footer-text {
    margin-top: 75px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    line-height: normal;
}

.whos-at-risk-footer-text p {
    margin-bottom: 24px;
}

.whos-at-risk-footer-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1600px) {
    .new-installations-section .installations-card{
        height: auto !important;
    }
    .talk-to-team-image-wrapper{
        display:none;
    }

    .talk-to-team-content{
        padding: 50px;
    }

    .our-services-section .our-services-container {
        width: 100%;
        max-width: 100% !important;
        padding: 0 80px !important;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .fast-response-section{
        padding: 80px 80px;
    }
    .whos-at-risk-section {
        padding: 80px 80px;
        gap: 60px;
    }
    
    .whos-at-risk-container {
        gap: 60px;
    }
    
    .whos-at-risk-title {
        font-size: 56px;
        line-height: 60px;
    }
    
    .whos-at-risk-card-title {
        font-size: 32px;
    }
    
    .whos-at-risk-card {
        width: 450px;
    }
    
    .whos-at-risk-card-small {
        width: 340px;
        height: auto;;
    }

    .cold-room-background{
        display:none;
    }

    .whos-at-risk-summary{
        width: 100%;
    }

    .whos-at-risk-card-description-small{
        height: auto;
    }
}

@media (max-width: 1400px) {
    .whos-at-risk-section {
        padding: 60px 120px;
        gap: 40px;
    }
    
    .whos-at-risk-container {
        gap: 40px;
    }
    
    .whos-at-risk-title {
        font-size: 48px;
        line-height: 52px;
        width: 100%;
    }
    
    .whos-at-risk-card-title {
        font-size: 24px;
    }
    
    .whos-at-risk-card {
        width: 400px;
    }
    
    .whos-at-risk-card-small {
        width: 300px;
    }
    
    .whos-at-risk-card-description,
    .whos-at-risk-card-description-small,
    .whos-at-risk-summary {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .whos-at-risk-section {
        padding: 40px 20px;
        gap: 30px;
    }
    
    .whos-at-risk-container {
        gap: 30px;
    }
    
    .whos-at-risk-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .whos-at-risk-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .whos-at-risk-card,
    .whos-at-risk-card-small {
        width: 100%;
        padding: 24px;
    }
    
    .whos-at-risk-card-title {
        font-size: 28px;
    }
    
    .whos-at-risk-card-description,
    .whos-at-risk-card-description-small,
    .whos-at-risk-summary {
        font-size: 18px;
    }
    
    .whos-at-risk-card-description-small {
        height: auto;
    }
    
    .whos-at-risk-summary {
        width: 100%;
    }
}

/* Perth Heat Section */
.perth-heat-section {
    padding: 96px 192px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
}

.perth-heat-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}

.perth-heat-title {
    width: 642px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 48px;
    line-height: 1em !important;
    font-weight: 900;
    color: #3555C8;
    line-height: 40px;
    text-align: left;
}

.perth-heat-content {
    height: 384px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-left: 1px solid #6B7280;
    padding-left:50px;
    gap: 48px;
}

.perth-heat-subtitle {
    width: 629px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1A2A62;
    line-height: 40px;
    text-align: left;
}

.perth-heat-description {
    width: 757px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    color: #27272A;
    text-align: left;
}

.perth-heat-text-normal {
    font-weight: 400;
}

.perth-heat-text-bold {
    font-weight: 700;
}

@media (max-width: 1600px) {
    .perth-heat-section {
        padding: 96px 100px !important;
    }
    
    .perth-heat-section .perth-heat-container {
        max-width: 1200px !important;
    }
}

@media (max-width: 1400px) {
    .perth-heat-section {
        padding: 96px 50px !important;
        flex-direction: column !important;
        height: auto !important;
        gap: 48px !important;
    }
    
    .perth-heat-section .perth-heat-title {
        width: 100% !important;
        font-size: 40px !important;
    }
    
    .perth-heat-section .perth-heat-divider {
        display: none !important;
    }
    
    .perth-heat-section .perth-heat-content {
        width: 100% !important;
        height: auto !important;
    }
    
    .perth-heat-section .perth-heat-subtitle {
        width: 100% !important;
        font-size: 28px !important;
    }
    
    .perth-heat-section .perth-heat-description {
        width: 100% !important;
        font-size: 20px !important;
    }
}

@media (max-width: 768px) {

    .perth-heat-container{
        display: block;
    }
    .perth-heat-section {
        padding: 48px 20px !important;
    }

    .perth-heat-section .perth-heat-content{
        padding-left: 0;
        padding-top: 20px;
        border-left: 0;
    }
    
    .perth-heat-section .perth-heat-title {
        font-size: 32px !important;
        line-height: 36px !important;
    }
    
    .perth-heat-section .perth-heat-subtitle {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    
    .perth-heat-section .perth-heat-description {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .perth-heat-section {
        padding: 32px 16px !important;
        gap: 32px !important;
    }
    
    .perth-heat-section .perth-heat-container {
        gap: 32px !important;
    }
    
    .perth-heat-section .perth-heat-title {
        font-size: 28px !important;
        line-height: 32px !important;
    }
    
    .perth-heat-section .perth-heat-content {
        padding-left: 20px !important;
        gap: 24px !important;
    }
    
    .perth-heat-section .perth-heat-subtitle {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    .perth-heat-section .perth-heat-description {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE IMPROVEMENTS
   ========================================================================== */

/* Large Desktop */
@media (min-width: 1920px) {
    .hero-container,
    .trusted-companies-container,
    .fast-response-container,
    .perth-heat-container,
    .whos-at-risk-container {
        max-width: 1600px;
        margin: 0 auto;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .whos-at-risk-content {
        padding: 0 20px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-section {
        min-height: 85vh;
        padding: 50px 0;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        padding: 0 40px;
    }
    
    .hero-content {
        gap: 36px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 26px;
    }
    
    .hero-features {
        gap: 18px;
    }
    
    .hero-feature-text {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 18px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        padding: 40px 20px;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 32px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 0;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0;
    }
    
    .hero-features {
        width: 100%;
        gap: 16px;
        align-items: center;
    }
    
    .hero-feature {
        justify-content: center;
        gap: 12px;
    }
    
    .hero-feature-text {
        font-size: 16px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
    }
    
    .trusted-companies-title,
    .fast-response-title,
    .perth-heat-title,
    .whos-at-risk-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .whos-at-risk-card,
    .whos-at-risk-card-small {
        margin-bottom: 15px;
    }
    
}

/* Print Styles */
@media print {
    .hero-overlay-1,
    .hero-overlay-2,
    .our-why-overlay-1,
    .our-why-overlay-2 {
        display: none;
    }
    
    .hero-section,
    .our-why-section {
        background: white !important;
    }
}


/* ========================================
    NEW INSTALLATIONS SECTION STYLES
======================================== */

/* New Installations Container */
.new-installations-section {
    align-self: stretch;
    padding: 100px 190px;
    background: linear-gradient(0deg, rgba(44, 101, 227, 0.20) 0%, rgba(44, 101, 227, 0.20) 100%);
    background-image: url('../../images/new-home/49cc5a67ff91eb6f12ae131c9f4087c7014c59cf.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 100px;
}

.new-installations-section .installations-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
}

/* Installation Card */
.new-installations-section .installations-card {
    width: 100%;
    height: 705px;
    position: relative;
    background: rgba(242, 242, 242, 0.7);
    overflow: hidden;
    border-radius: 20px;
    backdrop-filter: blur(7.8px);
    display: flex;
}

/* Installation Images */
.new-installations-section .installations-images {
    width: 538px;
    height: 705px;
    position: absolute;
    overflow: hidden;
    flex-shrink: 0;
}

.new-installations-section .installations-image-1 {
    width: 727.44px;
    height: 1072.17px;
    position: absolute;
    left: 0;
    top: -242.93px;
    object-fit: cover;
}

.new-installations-section .installations-image-2 {
    width: 727.44px;
    height: 1072.17px;
    position: absolute;
    left: -130px;
    top: -352px;
    object-fit: cover;
}

/* Installation Content */
.new-installations-section .installations-content {
    flex: 1;
    padding: 50px 35px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    font-family: 'Segoe UI', sans-serif;
    margin-left: 400px;
    z-index: 3;
}

/* Installation Typography */
.new-installations-section .installations-title {
    color: #333333;
    font-size: 42px;
    line-height: 46.2px;
    margin: 0;
    word-wrap: break-word;
}

.new-installations-section .title-light {
    font-weight: 400;
}

.new-installations-section .title-bold {
    color: #333;
    font-weight: 800;
}

.new-installations-section .installations-text {
    color: black;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    line-height: 1.5;
}

.new-installations-section .installations-text p {
    margin: 0 0 20px 0;
    line-height: normal;
}

.new-installations-section .installations-text p:last-child {
    margin-bottom: 0;
}

.new-installations-section .installations-text strong {
    font-weight: 700;
}

/* New Installations Responsive Design */
@media (max-width: 1536px) {
    .new-installations-section {
        padding: 80px 120px;
    }
    
    .new-installations-section .installations-card {
        max-width: 1200px;
    }
    
    .new-installations-section .installations-content {
        margin-left: 320px;
    }
    
    .new-installations-section .installations-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .new-installations-section .installations-text {
        font-size: 20px;
    }
}

@media (max-width: 1280px) {
    .new-installations-section {
        padding: 60px 80px;
    }
    
    .new-installations-section .installations-card {
        height: auto;
        flex-direction: column;
    }
    
    .new-installations-section .installations-images {
        width: 100%;
        height: 400px;
    }
    
    .new-installations-section .installations-content {
        margin-left: 0;
        padding: 40px;
    }
    
    .new-installations-section .installations-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .new-installations-section .installations-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .new-installations-section {
        padding: 40px 20px;
    }
    
    .new-installations-section .installations-images {
        display: none;
        height: 300px;
    }
    
    .new-installations-section .installations-content {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .new-installations-section .installations-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .new-installations-section .installations-text {
        font-size: 16px;
    }
}

/* ========================================
    CONTACT SECTION STYLES
======================================== */

/* Contact Container */
.contact-section {
    align-self: stretch;
    max-width: 1540px;
    margin: auto;
    width: 100%;
    padding: 100px 0;
    background: white;
    overflow: hidden;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

/* Contact Content */
.contact-section .contact-content {
    width: 501px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    display: flex;
}

/* Contact Typography */
.contact-section .contact-title {
    width: 616px;
    color: #3555C8;
    font-size: 42px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 900;
    line-height: 46.20px;
    word-wrap: break-word;
}

.contact-section .contact-subtitle {
    align-self: stretch;
    color: #1A2A62;
    font-size: 36px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 39.60px;
    word-wrap: break-word;
}

/* Contact Form Container */
.contact-section .contact-form-container {
    width: 1018px;
    padding: 50px;
    background: linear-gradient(180deg, #3352C4 0%, #03529D 100%);
    overflow: hidden;
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
    display: flex;
}

/* Form Header */
.contact-section .form-header {
    align-self: stretch;
    color: white;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 26.40px;
    word-wrap: break-word;
}

.contact-section .form-header .italic-underline {
    font-style: italic;
    font-weight: 900;
    text-decoration: underline;
}

.contact-section .form-header .italic {
    font-style: italic;
    font-weight: 900;
}

/* Form Fields */
.contact-section .form-fields {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    display: flex;
}

.contact-section .form-row {
    align-self: stretch;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    display: flex;
}

/* Form Inputs */
.contact-section .form-input {
    width: 451px;
    padding: 20px 35px;
    background: #2C65E3;
    overflow: hidden;
    border-radius: 20px;
    border: none;
    color: #FEFEFF;
    font-size: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 22px;
}

.contact-section .form-input::placeholder {
    color: #FEFEFF;
}

/* Form Select */
.contact-section .form-select-wrapper {
        width: 918px;
        position: relative;
    }
    
    .contact-section .form-input-select {
        width: 100%;
        height: 62px;
        padding: 20px 0;
        background: #2C65E3;
        border-radius: 20px;
        border: none;
        color: #FEFEFF;
        font-size: 20px;
        font-family: 'Segoe UI', sans-serif;
        font-weight: 400;
        line-height: 22px;
        cursor: pointer;
        box-sizing: border-box;
    }
    
    .contact-section .form-input-select::placeholder {
        color: #FEFEFF;
    }
    
    /* Dropdown Options */
    .contact-section .dropdown-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2C65E3;
        border-radius: 0 0 20px 20px;
        z-index: 1000;
        max-height: 200px;
        overflow-y: auto;
    }
    
    .contact-section .dropdown-option {
        padding: 15px 35px;
        color: #FEFEFF;
        font-size: 20px;
        font-family: 'Segoe UI', sans-serif;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    
    .contact-section .dropdown-option:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .contact-section .dropdown-option:last-child {
        border-radius: 0 0 20px 20px;
    }

/* Form Textarea */
.contact-section .form-textarea {
    align-self: stretch;
    height: 149px;
    padding: 20px 35px;
    background: #2C65E3;
    overflow: hidden;
    border-radius: 20px;
    border: none;
    color: #FEFEFF;
    font-size: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 22px;
    resize: none;
}

.contact-section .form-textarea::placeholder {
    color: #FEFEFF;
}

/* Form Submit */
.contact-section .form-submit {
    align-self: stretch;
    padding: 15px 40px;
    background: white;
    border-radius: 100px;
    border: 2px solid #3555C8;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-section .form-submit:hover {
    background: #3555C8;
    color: white;
}

.contact-section .form-submit-text {
    text-align: center;
    color: #3555C8;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    word-wrap: break-word;
}

.contact-section .form-submit:hover .form-submit-text {
    color: white;
}

.contact-section .dropdown-arrow {
    width: 30px;
    height: 30px;
    background: #FEFEFF;
    transform: rotate(90deg);
}

/* Contact Section Responsive Design */
@media (max-width: 1536px) {
    .contact-section {
        padding: 80px 120px;
        height: auto;
    }
    
    .contact-section .contact-form-container {
        width: 800px;
    }
    
    .contact-section .form-input {
        width: 350px;
    }
    
    .contact-section .form-select-wrapper {
            width: 715px;
        }
}

@media (max-width: 1280px) {
    .contact-section {
        padding: 60px 80px;
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-section .contact-content {
        width: 100%;
    }
    
    .contact-section .contact-title {
        width: 100%;
        font-size: 36px;
        line-height: 40px;
    }
    
    .contact-section .contact-subtitle {
        font-size: 28px;
        line-height: 32px;
    }
    
    .contact-section .contact-form-container {
        width: 100%;
    }
    
    .contact-section .form-input {
        width: 100%;
    }
    
    .contact-section .form-select-wrapper {
            width: 100%;
        }
    
    .contact-section .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-section .contact-form-container{
        padding: 15px;
    }
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-section .contact-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .contact-section .contact-subtitle {
        font-size: 20px;
        line-height: 24px;
    }
    
    .contact-section .form-header {
        font-size: 18px;
        line-height: 22px;
    }
    
    .contact-section .form-input,
        .contact-section .form-input-select,
        .contact-section .form-textarea {
            font-size: 16px;
            padding: 15px 25px;
        }
        
        .contact-section .dropdown-option {
            font-size: 16px;
            padding: 12px 25px;
        }
    
    .contact-section .form-submit-text {
        font-size: 18px;
    }
}

/* Contact Form 7 Styling */
.contact-section .contact-form-container .wpcf7 {
    width: 100%;
}

.contact-section .contact-form-container .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-section .contact-form-container .wpcf7-form p {
    margin: 0;
    display: flex;
    gap: 20px;
    width: 100%;
}

.contact-section .contact-form-container .wpcf7-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.contact-section .contact-form-container .wpcf7-form label b {
    color: #FEFEFF;
    font-size: 18px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-section .contact-form-container .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.contact-section .contact-form-container .wpcf7-form-control.wpcf7-text,
.contact-section .contact-form-container .wpcf7-form-control.wpcf7-email,
.contact-section .contact-form-container .wpcf7-form-control.wpcf7-tel,
.contact-section .contact-form-container .wpcf7-form-control.wpcf7-select,
.contact-section .contact-form-container .wpcf7-form-control.wpcf7-textarea {
    flex: 1;
    padding: 20px 35px;
    background: #2C65E3;
    border-radius: 20px;
    border: none;
    color: #FEFEFF;
    font-size: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 22px;
    width: 100%;
    box-sizing: border-box;
}

.contact-section .contact-form-container .wpcf7-form-control.w-full {
    width: 100%;
}

.contact-section .contact-form-container .wpcf7-form-control::placeholder {
    color: #FEFEFF;
}

.contact-section .contact-form-container .wpcf7-form-control.wpcf7-textarea {
    height: 149px;
    resize: none;
}

.contact-section .contact-form-container .wpcf7-form-control.wpcf7-submit {
    padding: 15px 40px;
    background: white;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2C65E3;
    font-size: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    width: auto;
    align-self: stretch;
}

.contact-section .contact-form-container .wpcf7-form-control.wpcf7-submit.btn-blue {
    background: white;
    color: #2C65E3;
}

.contact-section .contact-form-container .wpcf7-form-control.wpcf7-submit.cursor-pointer {
    cursor: pointer;
}

.contact-section .contact-form-container .wpcf7-form-control.wpcf7-submit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.contact-section .contact-form-container .wpcf7-spinner {
    display: none;
}

.contact-section .contact-form-container .wpcf7-response-output {
    margin: 10px 0 0 0;
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

.contact-section .contact-form-container .wpcf7-validation-errors {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.contact-section .contact-form-container .wpcf7-mail-sent-ok {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.contact-section .contact-form-container .screen-reader-response {
    position: absolute;
    left: -9999px;
}

/* ========================================
    WHY PARTNER SECTION STYLES
======================================== */

/* Why Partner Container */
.why-partner-section {
    padding: 96px 192px;
    background: #1d4ed8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
    align-self: stretch;
}

.why-partner-section .why-partner-container {
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Why Partner Typography */
.why-partner-section .why-partner-title {
    align-self: stretch;
    justify-content: flex-start;
    line-height: 40px;
}

.why-partner-section .title-white {
    color: white;
    font-size: 48px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 900;
    line-height: 40px;
}

.why-partner-section .title-yellow {
    color: #fbbf24;
    font-size: 48px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 900;
    line-height: 40px;
}

/* Why Partner Content */
.why-partner-section .why-partner-content {
    align-self: stretch;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

/* Main Card */
.why-partner-section .main-card {
    width: 754px;
    padding: 48px 36px;
    background: white;
    border-radius: 20px;
    box-shadow: -4px -4px 8px 0px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}

.why-partner-section .main-card-title {
    align-self: stretch;
    justify-content: flex-start;
    color: #0369a1;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 32px;
}

.why-partner-section .main-card-text {
    align-self: stretch;
    justify-content: flex-start;
    color: #27272a;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 32px;
}

/* Feature Cards */
.why-partner-section .feature-cards {
    width: 754px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.why-partner-section .feature-card {
    align-self: stretch;
    padding: 48px 36px;
    background: #2563eb;
    border-radius: 20px;
    box-shadow: -4px -4px 8px 0px rgba(0,0,0,0.10);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    min-height: 320px;
}

/* Feature Icon */
.why-partner-section .feature-icon {
    width: 26px;
    height: 25px;
    flex-shrink: 0;
    background-image: url('../../images/new-home/dba84aad5ebb5537a1b3621a0b6c12d9f16bfc86.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Feature Content */
.why-partner-section .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

/* Feature Typography */
.why-partner-section .feature-title {
    justify-content: flex-start;
    color: white;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
}

.why-partner-section .feature-text {
    align-self: stretch;
    justify-content: flex-start;
    color: white;
    font-size: 24px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 32px;
}

.why-partner-section .text-bold {
    font-weight: 700;
}

/* Why Partner Section Responsive Design */
@media (max-width: 1536px) {
    .why-partner-section {
        padding: 80px 120px;
    }
    
    .why-partner-section .main-card,
    .why-partner-section .feature-cards {
        width: 600px;
    }
    
    .why-partner-section .title-white,
    .why-partner-section .title-yellow {
        font-size: 40px;
        line-height: 36px;
    }
}

@media (max-width: 1280px) {
    .why-partner-section {
        padding: 60px 80px;
    }
    
    .why-partner-section .why-partner-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-partner-section .main-card,
    .why-partner-section .feature-cards {
        width: 100%;
    }
    
    .why-partner-section .title-white,
    .why-partner-section .title-yellow {
        font-size: 36px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .why-partner-section {
        padding: 40px 20px;
    }
    
    .why-partner-section .why-partner-container {
        gap: 40px;
    }
    
    .why-partner-section .title-white,
    .why-partner-section .title-yellow {
        font-size: 28px;
        line-height: 28px;
    }
    
    .why-partner-section .main-card {
        padding: 32px 24px;
    }
    
    .why-partner-section .main-card-title,
    .why-partner-section .feature-title,
    .why-partner-section .feature-text,
    .why-partner-section .main-card-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .why-partner-section .feature-card {
        padding: 32px 24px;
        min-height: auto;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Breakpoints: 480px, 768px, 1024px, 1280px, 1536px+
======================================== */

/* ========================================
   MOBILE FIRST - Up to 480px (Small phones)
======================================== */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-section {
        min-height: 600px;
        padding: 60px 0;
    }
    
    .hero-section .hero-container {
        padding: 0 16px;
    }
    
    .hero-section .hero-content {
        gap: 24px;
        max-width: 100%;
    }
    
    .hero-section .hero-title {
        font-size: 32px;
        line-height: 36px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-section .hero-features {
        width: 100%;
        gap: 16px;
    }
    
    .hero-section .hero-feature-text {
        font-size: 16px;
    }
    
    .hero-section .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-section .hero-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Hide overlays on mobile */
    .hero-section .hero-overlay-1,
    .hero-section .hero-overlay-2 {
        display: none;
    }
    
    /* Trusted Companies Section */
    .trusted-companies-section {
        padding: 40px 16px;
    }
    
    .trusted-companies-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .trusted-companies-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Fast Response Section */
    .fast-response-section {
        padding: 40px 16px;
    }
    
    .fast-response-container {
        gap: 32px;
    }
    
    .fast-response-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .fast-response-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .fast-response-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .fast-response-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Cold Room Section */
    .cold-room-section {
        flex-direction: column;
        gap: 24px;
        padding: 32px 16px;
    }
    
    .cold-room-background {
        width: 100% !important;
        height: 200px !important;
    }
    
    .cold-room-title {
        font-size: 20px;
        line-height: 24px;
    }
    
    .cold-room-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Perth Heat Section */
    .perth-heat-section {
        padding: 40px 16px;
    }
    
    .perth-heat-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .perth-heat-subtitle {
        font-size: 20px;
        line-height: 24px;
    }
    
    .perth-heat-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Who's at Risk Section */
    .whos-at-risk-section {
        padding: 40px 16px;
    }
    
    .whos-at-risk-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .whos-at-risk-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .whos-at-risk-card,
    .whos-at-risk-card-small {
        padding: 24px 16px;
    }
    
    .whos-at-risk-card-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .whos-at-risk-card-description,
    .whos-at-risk-card-description-small {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* Job Section */
    .refrigwest-job-section {
        padding: 40px 0;
    }
    
    .job-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }
    
    .job-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .job-images-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Our Why Section */
    .our-why-section {
        flex-direction: column;
        min-height: auto;
        padding: 40px 0;
    }
    
    .our-why-container {
        padding: 0 16px;
    }
    
    .our-why-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .our-why-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    
    .our-why-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .our-why-button {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Hide overlays on mobile */
    .our-why-overlay-1,
    .our-why-overlay-2 {
        display: none;
    }
    
    /* Services Section */
    .our-services-section {
        padding: 40px 16px;
    }
    
    .our-services-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .our-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-name {
        font-size: 18px;
        line-height: 22px;
    }
    
    /* What Makes Section */
    .what-makes-section {
        padding: 40px 16px;
    }
    
    .what-makes-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .what-makes-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .what-makes-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    
    .what-makes-item-text {
        font-size: 16px;
        line-height: 20px;
    }
    
    .what-makes-item-content p {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* Installations Section */
    .new-installations-section {
        padding: 40px 16px;
    }
    
    .installations-card {
        flex-direction: column;
        gap: 24px;
    }
    
    .installations-images {
        display: none;
    }
    
    .installations-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .installations-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Contact Section */
    .contact-section {
        flex-direction: column;
        padding: 40px 16px;
        gap: 32px;
    }
    
    .contact-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Why Partner Section */
    .why-partner-section {
        padding: 40px 16px;
    }
    
    .why-partner-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .why-partner-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .main-card {
        padding: 24px 16px;
    }
    
    .main-card-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .main-card-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    .feature-card {
        padding: 24px 16px;
        min-height: auto;
    }
    
    .feature-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .feature-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Talk to Team Section */
    .talk-to-team-section {
        padding: 40px 16px;
    }
    
    .talk-to-team-card {
        flex-direction: column;
        gap: 24px;
    }
    
    .talk-to-team-title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .talk-to-team-description {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ========================================
   481–768px (Large phones / tablets portrait)
======================================== */
@media (min-width: 481px) and (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        min-height: 700px;
        padding: 80px 0;
    }
    
    .hero-section .hero-container {
        padding: 0 24px;
    }
    
    .hero-section .hero-content {
        gap: 32px;
    }
    
    .hero-section .hero-title {
        font-size: 40px;
        line-height: 44px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-section .hero-features {
        width: 100%;
        gap: 20px;
    }
    
    .hero-section .hero-feature-text {
        font-size: 18px;
    }
    
    .hero-section .hero-buttons {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .hero-section .hero-btn {
        flex: 1;
        min-width: 200px;
        padding: 18px 28px;
        font-size: 18px;
    }
    
    /* Hide overlays on tablets */
    .hero-section .hero-overlay-1,
    .hero-section .hero-overlay-2 {
        display: none;
    }
    
    /* Hide overlays on tablets */
    .our-why-overlay-1,
    .our-why-overlay-2 {
        display: none;
    }
}

/* ========================================
   769–1024px (Tablets landscape / small notebooks)
======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section */
    .hero-section {
        min-height: 750px;
        padding: 90px 0;
    }
    
    .hero-section .hero-container {
        padding: 0 40px;
    }
    
    .hero-section .hero-content {
        gap: 36px;
        max-width: 600px;
    }
    
    .hero-section .hero-title {
        font-size: 48px;
        line-height: 52px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-section .hero-features {
        width: 100%;
        gap: 22px;
    }
    
    .hero-section .hero-feature-text {
        font-size: 20px;
    }
    
    .hero-section .hero-buttons {
        flex-direction: row;
        gap: 18px;
    }
    
    .hero-section .hero-btn {
        padding: 20px 32px;
        font-size: 20px;
    }
    
    /* Hide overlays on small laptops */
    .hero-section .hero-overlay-1,
    .hero-section .hero-overlay-2 {
        display: none;
    }
    
    /* Hide overlays on small laptops */
    .our-why-overlay-1,
    .our-why-overlay-2 {
        display: none;
    }
}

/* ========================================
   1025–1280px (Common desktops)
======================================== */
@media (min-width: 1025px) and (max-width: 1280px) {
    /* Hero Section */
    .hero-section {
        min-height: 800px;
        padding: 100px 0;
    }
    
    .hero-section .hero-container {
        padding: 0 60px;
    }
    
    .hero-section .hero-content {
        gap: 40px;
        max-width: 700px;
    }
    
    .hero-section .hero-title {
        font-size: 56px;
        line-height: 60px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-section .hero-features {
        width: 450px;
        gap: 24px;
    }
    
    .hero-section .hero-feature-text {
        font-size: 22px;
    }
    
    .hero-section .hero-buttons {
        flex-direction: row;
        gap: 20px;
    }
    
    .hero-section .hero-btn {
        padding: 22px 36px;
        font-size: 22px;
    }
    
    /* Hide overlays on medium desktops */
    .hero-section .hero-overlay-1,
    .hero-section .hero-overlay-2 {
        display: none;
    }
    
    /* Hide overlays on medium desktops */
    .our-why-overlay-1,
    .our-why-overlay-2 {
        display: none;
    }
}

/* ========================================
   1281–1536px (Large desktops)
======================================== */
@media (min-width: 1281px) and (max-width: 1536px) {
    /* Hero Section */
    .hero-section {
        min-height: 832px;
        padding: 100px 0;
    }
    
    .hero-section .hero-container {
        padding: 0 80px;
    }
    
    .hero-section .hero-content {
        gap: 44px;
        max-width: 750px;
    }
    
    .hero-section .hero-title {
        font-size: 60px;
        line-height: 66px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-section .hero-features {
        width: 413px;
        gap: 24px;
    }
    
    .hero-section .hero-feature-text {
        font-size: 24px;
    }
    
    .hero-section .hero-buttons {
        flex-direction: row;
        gap: 14px;
    }
    
    .hero-section .hero-btn {
        padding: 24px 40px;
        font-size: 24px;
    }
    
    /* Hide overlays on large desktops */
    .hero-section .hero-overlay-1,
    .hero-section .hero-overlay-2 {
        display: none;
    }
    
    /* Hide overlays on large desktops */
    .our-why-overlay-1,
    .our-why-overlay-2 {
        display: none;
    }
}

/* ========================================
   1537px+ (Very wide screens/4K)
======================================== */
@media (min-width: 1537px) {
    
    .hero-section .hero-container {
        padding: 0 100px;
        max-width: 1800px;
    }
    
    .hero-section .hero-content {
        gap: 48px;
        max-width: 900px;
    }
    
    .hero-section .hero-title {
        font-size: 72px;
        line-height: 78px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 28px;
    }
    
    .hero-section .hero-features {
        width: 500px;
        gap: 28px;
    }
    
    .hero-section .hero-feature-text {
        font-size: 28px;
    }
    
    .hero-section .hero-buttons {
        flex-direction: row;
        gap: 20px;
    }
    
    .hero-section .hero-btn {
        padding: 28px 48px;
        font-size: 28px;
    }
    
    /* Show overlays on very wide screens */
    .hero-section .hero-overlay-1,
    .hero-section .hero-overlay-2 {
        display: block;
    }
    
    /* Show overlays on very wide screens */
    .our-why-overlay-1,
    .our-why-overlay-2 {
        display: block;
    }
}