/* Get Started Section */
.get-started {
    background: linear-gradient(135deg, var(--color-d) 0%, #6d7d16 100%);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    color: var(--color-c);
}

.get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
    opacity: 0.9;
}

.get-started-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.get-started-image {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: slideInLeft 1s ease;
}

.get-started-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.3) 0%, transparent 100%);
    z-index: 1;
}

.get-started-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.get-started-image:hover img {
    transform: scale(1.1);
}

.get-started-text {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.32);
    border-radius: 26px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: slideInRight 1s ease;
}

.get-started-text h2 {
    font-size: 3.5rem;
    color: var(--color-c);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.get-started-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-c), var(--color-b));
    border-radius: 2px;
}

.get-started-text .price-line {
    font-size: 2.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0;
    font-weight: 500;
}

.highlight {
    background: linear-gradient(135deg, var(--color-c) 0%, var(--color-b) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 3.5rem;
    white-space: nowrap; /* Added to prevent breaking */
}

.month-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 0.5rem; /* Added to push it right */
}

.get-started-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.86);
    margin: 2rem 0;
    line-height: 1.8;
}

.get-started-text .btn {
    margin-top: 2.5rem;
}

.get-started .btn-secondary {
    color: var(--color-c);
    border-color: rgba(255, 255, 255, 0.6);
}

.get-started .btn-secondary:hover {
    border-color: transparent;
}

/* Responsive adjustments for Get Started section */
@media (max-width: 992px) {
    .get-started {
        padding: 6rem 3%;
    }

    .get-started-content {
        grid-template-columns: 1fr; /* Stack content vertically */
        gap: 3rem;
    }

    .get-started-image {
        height: 400px; /* Adjust height for smaller screens */
    }

    .get-started-text {
        padding: 2rem;
        text-align: center;
    }

    .get-started-text h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .get-started-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40%;
    }

    .get-started-text .price-line {
        font-size: 1.8rem;
    }

    .highlight {
        font-size: 3rem;
    }

    .month-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .get-started {
        padding: 4rem 3%;
    }

    .get-started-image {
        height: 300px;
    }

    .get-started-text h2 {
        font-size: 2.5rem;
    }

    .get-started-text .price-line {
        font-size: 1.5rem;
    }

    .highlight {
        font-size: 2.5rem;
    }

    .month-text {
        font-size: 1.1rem;
    }

    .get-started-description {
        font-size: 1rem;
        margin: 1.5rem 0;
    }

    .get-started-text .btn {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .get-started-image {
        height: 250px;
    }

    .get-started-text h2 {
        font-size: 2rem;
    }

    .get-started-text .price-line {
        font-size: 1.3rem;
    }

    .highlight {
        font-size: 2rem;
    }

    .month-text {
        font-size: 1rem;
    }

    .get-started-description {
        font-size: 0.9rem;
    }
}

