#hero {
    min-height: calc(100vh - 90px);
    padding: 2rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-slider-wrapper {
    position: relative;
    height: 65vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero-slide.active img {
    transform: scale(1.15);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 100%);
    color: var(--white);
}

.slide-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.3;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--charcoal-grey);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.slider-btn:hover {
    background-color: var(--logo-blue);
    color: var(--white);
    transform: scale(1.1);
}

.hero-logo-wrapper {
    text-align: center;
}

.hero-logo-wrapper img {
    max-width: 90%;
    width: 630px;
    height: auto;
}

.bordered-section-content {
    border: 1px solid #eee;
    padding: 3rem;
    border-radius: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 0;
    align-items: center;
}

.about-grid > .about-content:first-child {
    border-right: 1px solid var(--soft-grey);
    padding-right: 2rem;
}

.about-grid > .about-content:last-child {
    padding-left: 2rem;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal-grey);
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
}

.about-list li svg {
    color: var(--logo-blue);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 5px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: calc(3rem + 25px);
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--soft-grey);
}

.process-step {
    text-align: center;
    width: 22%;
    position: relative;
}

.process-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--logo-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-icon svg {
    color: var(--logo-blue);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal-grey);
    margin-bottom: 0.5rem;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(225, 27, 34, 0.1);
    border-color: var(--logo-red);
}

.card svg {
    color: var(--logo-blue);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.card:hover svg {
    color: var(--logo-red);
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--charcoal-grey);
    font-size: 1.1rem;
    line-height: 1.4;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin-top: 0.5rem;
}

#cta {
    padding: 4rem 0;
}

#cta h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--charcoal-grey);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.contact-wrapper {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.contact-info {
    background: var(--logo-blue);
    color: var(--white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    opacity: 0.9;
}

#contact-form {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#contact-form label {
    display: block;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--soft-grey);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--logo-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.2);
}

.form-status {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@media (max-width: 992px) {
    #hero {
        min-height: auto;
        display: block;
        padding: 3rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-slider-wrapper {
        height: 50vh;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-logo-wrapper {
        margin-top: 1rem;
    }
    
    .hero-logo-wrapper img {
        max-width: 350px;
    }
    
    .slide-content {
        text-align: left;
    }
    
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 2rem 0;
    }
    
    .hero-slider-wrapper {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-subtitle {
        font-size: 0.85rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 2.5rem 2rem;
    }
    
    #contact-form {
        padding: 2.5rem 2rem;
    }
    
    #cta {
        padding: 3rem 0;
    }
    
    #cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-logo-wrapper img {
        max-width: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-grid > .about-content:first-child {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--soft-grey);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-grid > .about-content:last-child {
        padding-left: 0;
    }
    
    #contact-form,
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .bordered-section-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 1.5rem 0;
    }
    
    .hero-slider-wrapper {
        height: 35vh;
        min-height: 250px;
    }
    
    .hero-grid {
        gap: 1.5rem;
    }
    
    .hero-logo-wrapper img {
        max-width: 90%;
    }
    
    .slide-content h3 {
        font-size: 1rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .card svg {
        width: 32px;
        height: 32px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-grid > .about-content:first-child {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--soft-grey);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-grid > .about-content:last-child {
        padding-left: 0;
    }
    
    .about-content h3 {
        font-size: 1.25rem;
    }
    
    .about-list li {
        font-size: 0.9rem;
    }
    
    #contact-form,
    .contact-info {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-info h3 {
        font-size: 1.25rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bordered-section-content {
        padding: 1.25rem;
    }
    
    #cta {
        padding: 2.5rem 0;
    }
    
    #cta h3 {
        font-size: 1.25rem;
    }
}
