:root {
    --primary-color: #1E7888;
    --primary-color-light: #1E78881A;
    --secondary-color: #8B4513;
    --accent-color: #A52A2A;
    --background-color: #f5f1eb;
    --text-color: #333333;
    --white: #FFFFFF;
    --light-bg: #f5f5f5;
    --dark-bg: #111827;
    --brown-bg: #774D34;
    --gray-text: #9CA3AF;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --background: 30 14% 97%;
    --tw-shadow: 0 10px 25px -15px rgba(0, 0, 0, .2);
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

header {
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s, padding 0.3s;
}

header.transparent {
    background-color: transparent;
    box-shadow: none;
    padding: 1.5rem 5%;
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.7rem 5%;
}

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

.gray-text {
    color: var(--gray-text) !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 60px;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
    height: 50px;
}

.logo span {
    font-weight: bold;
    line-height: 1.2;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul::before {
    display: none;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.get-help-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.get-help-btn:hover {
    background-color: #005a63;
}

section {
    padding: 80px 5%;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero {
    padding: 150px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--primary-color);
}

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

.hero .image-container {
    position: relative;
}

.hero .image-container .hero-parent {
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
    position: relative;
    border-radius: 10px;
}

.hero .image-container .bg-homesavers-red {
    position: absolute;
    top: -2rem;
    left: 60%;
    width: 7rem;
    height: 4rem;
    background-color: rgb(158 59 47 / 1);
    border-radius: 10px;
}


.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(30, 120, 136, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-color);
    max-width: 600px;
    line-height: 1.6;
}


.animate-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.primary-btn:hover {
    background-color: #005a63;
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background-color: rgba(139, 69, 19, 0.1);
}

.about {
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
}

.services {
    text-align: center;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

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

.service-card-icon {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    position: relative;

}

.service-card-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    height: 20px;
    width: 20px;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: .5rem;
}

.service-icon {
    color: var(--primary-color);
    font-size: 1.7rem;
}

.service-card.highlighted {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 2px solid var(--primary-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 120, 136, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(30, 120, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 120, 136, 0);
    }
}

.testimonials {
    background-color: var(--background-color);
    text-align: center;
}

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

.testimonial-slider {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    flex: 1 0 100%;
    min-width: 100%;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide svg {
    color: var(--primary-color);
    opacity: 0.3;
}

.quote-icon {
    font-size: 5rem;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: -2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info h4 {
    color: var(--secondary-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.2rem;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

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

.dot.active {
    background-color: var(--primary-color);
}

.prev-btn, .next-btn {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.prev-btn:hover, .next-btn:hover {
    background-color: #005a63;
}

.prev-btn i, .next-btn i {
    font-size: 1rem;
}

.contact {
    background-color: var(--white);
    text-align: center;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-form-container {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
}

.get-in-touch-container {
    background-color: var(--white);
    color: var(--text-color);
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    margin-bottom: 1rem;
}

.form-header {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px 10px 0 0;
    color: white;
}

.contact-form {
    margin-top: 1.5rem;
}

.get-in-touch {
    padding: 2rem;
    margin-top: 0;
}

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: hsl(var(--background));
}

input::placeholder, textarea::placeholder {
    color: var(--gray-text);
}

textarea {
    height: 90px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.submit-btn:hover {
    background-color: #7a3b10;
}

.contact-info-container {
    background-color: var(--brown-bg);
    color: white;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info-container h3 {
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 0.25rem;
}

.business-hours {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.business-hours h3 {
    margin-bottom: 1rem;
}

.business-hours p {
    margin-bottom: 0.5rem;
}

footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem 5% 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo span {
    color: white;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

.footer-column h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

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

.subscribe-form {
    display: flex;
    margin-bottom: 1rem;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.subscribe-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    background-color: #005a63;
}

.subscribe-note {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.footer-column svg {
    width: 17px !important;
    height: 17px !important;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.mobile-menu-logo {
    display: none;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero, 
    .about-container,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        text-align: center;
        gap: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .mobile-menu-logo {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        transition-delay: 0.1s;
    }
    
    nav ul.active .mobile-menu-logo {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-menu-logo img {
        width: 120px;
        height: auto;
        filter: brightness(0) invert(1);
    }
    
    nav ul li a.active {
        background-color: rgba(255, 255, 255, 0.2);
        position: relative;
    }
    
    nav ul li a.active::after {
        content: '';
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 5px;
        background-color: white;
        border-radius: 50%;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;
        transform: scale(0.8);
        transition-delay: 0.2s;
    }
    
    nav ul.active .mobile-menu-close {
        opacity: 1;
        transform: scale(1);
    }
    
    .mobile-menu-close:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .mobile-menu-close span {
        position: relative;
        width: 16px;
        height: 16px;
    }
    
    .mobile-menu-close span::before,
    .mobile-menu-close span::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        border-radius: 2px;
    }
    
    .mobile-menu-close span::before {
        transform: rotate(45deg);
    }
    
    .mobile-menu-close span::after {
        transform: rotate(-45deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        position: static;
        margin-top: 1rem;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: relative;
        z-index: 1002;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--brown-bg) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 30px 80px;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        z-index: 1001;
        overflow-y: auto;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.03)" width="50" height="50" x="0" y="0"/><rect fill="rgba(255,255,255,0.03)" width="50" height="50" x="50" y="50"/></svg>');
        background-size: 20px;
        opacity: 0.5;
        pointer-events: none;
    }
    
    nav ul li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.4s ease;
        transition-delay: calc(0.1s * var(--i, 0));
    }
    
    nav ul.active li {
        transform: translateX(0);
        opacity: 1;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 15px;
        font-size: 1.2rem;
        color: white;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
    nav ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    nav ul li a:hover::before {
        left: 0;
    }
    
    nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }
    
    nav ul li a.get-help-btn {
        background-color: var(--primary-color);
        color: var(--primary-color);
        margin-top: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    nav ul li a.get-help-btn:hover {
        background-color: var(--accent-color);
        color: white;
    }
    
    .hamburger.active span {
        background-color: white;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
        backdrop-filter: blur(3px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    body.no-scroll {
        overflow: hidden;
    }
    
    .logo img {
        transition: all 0.3s ease;
    }
    
    .hamburger.active + ul + .logo img {
        filter: brightness(0) invert(1);
    }
}

.process {
    padding: 80px 5%;
    background: linear-gradient(180deg, #ffffff 0%, var(--background-color) 100%);
    text-align: center;
}

.step-content p {
    text-align: left;
}

.process .section-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.process-timeline {
    margin: 60px 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.process-step:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 25px;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(30, 120, 136, 0.3);
    border: 3px solid white;
}

.step-content {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:nth-child(2n) .step-content {
    border-left: 4px solid var(--secondary-color);
}

.process-step:nth-child(3n) .step-content {
    border-left: 4px solid var(--accent-color);
}

.step-content:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.step-content h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #156270);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(30, 120, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-box h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .primary-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    background-color: white;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.cta-box .primary-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step {
        width: 50%;
        margin-bottom: 70px;
    }
    
    .process-step:nth-child(odd) {
        margin-left: auto;
        padding-left: 50px;
    }
    
    .process-step:nth-child(even) {
        padding-right: 50px;
        flex-direction: row-reverse;
    }
    
    .process-step:nth-child(even) .step-number {
        margin-right: 0;
        margin-left: 25px;
    }
    
    .process-step:nth-child(odd) .step-number {
        left: -25px;
        position: absolute;
    }
    
    .process-step:nth-child(even) .step-number {
        right: -25px;
        position: absolute;
    }
    
    .process-step:nth-child(even) .step-content {
        border-left: none;
        border-right: 4px solid var(--primary-color);
    }
    
    .process-step:nth-child(2n):nth-child(even) .step-content {
        border-right: 4px solid var(--secondary-color);
        border-left: none;
    }
    
    .process-step:nth-child(3n):nth-child(even) .step-content {
        border-right: 4px solid var(--accent-color);
        border-left: none;
    }
    
    .step-content h3::after {
        width: 70px;
    }
    
    .process-step:nth-child(even) .step-content h3::after {
        left: auto;
        right: 0;
    }
}

@media (max-width: 768px) {
    .process-container {
        padding: 20px 0;
    }
    
    .process-steps {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .process-step {
        width: 100%;
        margin-bottom: 30px;
        position: relative;
        padding-left: 70px;
        min-height: 80px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--primary-color);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .step-content {
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .step-content::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 20px;
        width: 20px;
        height: 20px;
        background-color: white;
        transform: rotate(45deg);
        box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.03);
    }
    
    .step-content h3 {
        color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 18px;
    }
    
    .step-content p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .process-step::after {
        content: '';
        position: absolute;
        left: 25px;
        top: 50px;
        width: 2px;
        height: calc(100% - 30px);
        background-color: var(--primary-color);
        opacity: 0.3;
    }
    
    .process-step:last-child::after {
        display: none;
    }

    .process-timeline::before {
        display: none;
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}


.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 120, 136, 0.3);
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 120, 136, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: rgba(30, 120, 136, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 120px 20px 60px;
    }

    .hero-content {
        width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: 50px;
    }
    .hero-features {
        grid-template-columns: 1fr;
    }

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

    .hero-cta {
        justify-content: center;
    }
    
    .feature-item {
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .hero-features {
        margin-bottom: 30px;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
}

.form-status {
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    color: #28a745;
}

.form-status.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #dc3545;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}