/* Header Styles */
.ka12-home-header {
    background-color: var(--web-bg);
    padding: 0.4rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ka12-home-header__logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--black);
}

/* Hero Section */
.ka12-home-hero {
    position: relative;
    margin-top: 4.0625rem;
    height: 100vh;
    min-height: 31.25rem;
    background-image: url('../assets/hero-bg.webp');
    background-size: cover;        
    background-position: bottom 25% center;  
    background-repeat: no-repeat;     
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.ka12-home-hero__content {
    max-width: 56.25rem;
    padding: 2rem;
    z-index: 2;
}

.ka12-home-hero__title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ka12-home-hero__subtitle {
    font-size: 1.2rem;
    opacity: 1;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
}

/* Search Box */
.ka12-home-search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}

.ka12-home-search-box__input {
    color: var(--black);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
}

.ka12-home-search-box__button {
    background: var(--green);
    color: #ffffff;
    border: none;
    padding: 0.475rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ka12-home-search-box__button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

/* Discover Section */
.ka12-home-discover {
    padding: 3rem 0;
    background: var(--web-bg);
}

.ka12-home-discover__title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.6rem;
    color: var(--black);
}

.ka12-home-discover__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
}

/* Best time to visit Coorg ----------------------------- */
.ka12-home-best-time {
    padding: 2rem 0;
    background-color: var(--green-light);
}

.ka12-home-best-time h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2rem;
    position: relative;
}
.ka12-home-best-time-card {
    background: var(--white);
    border-radius: 20px;
    padding:  2rem 2rem 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Swiper Customization */
.ka12-home-swiper {
    width: 100%;
    padding-bottom: 3rem;
}

.ka12-home-swiper-slide {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ffffff;
}



.ka12-home-swiper-slide:hover {
    /* transform: translateY(-1px); */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ka12-home-slide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ka12-home-slide-content {
    padding: 1.5rem;
}

.ka12-home-slide-season {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), var(--green));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ka12-home-slide-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.ka12-home-slide-description {
    color: var(--black);
    line-height: 1.6;
    font-size: 1rem;
}

.ka12-home-slide-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.ka12-home-slide-feature {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.ka12-home-slide-feature i {
    color: var(--green);
    font-size: 1.1rem;
}

/* Swiper Navigation */
.ka12-home-swiper-button-next,
.ka12-home-swiper-button-prev {
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ka12-home-swiper-button-next::after,
.ka12-home-swiper-button-prev::after {
    font-size: 1.2rem;
    color: var(--green);
    font-weight: bold;
}

/* Swiper Pagination */
.ka12-home-swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-gray);
    opacity: 0.5;
}

.ka12-home-swiper-pagination-bullet-active {
    background: var(--green);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .ka12-home-best-time {
        padding: 1.6rem 0;
    }

    .ka12-home-best-time h2 {
        font-size: 2rem;
    }

    .ka12-home-best-time-card {
        padding: 1.5rem;
    }

    .ka12-home-slide-image {
        height: 220px;
    }

    .ka12-home-slide-title {
        font-size: 1.1rem;
    }

    .ka12-home-swiper-button-next,
    .ka12-home-swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .ka12-home-best-time h2 {
        font-size: 1.75rem;
    }

    .ka12-home-slide-image {
        height: 200px;
    }

    .ka12-home-swiper-button-next,
    .ka12-home-swiper-button-prev {
        display: none;
    }
}

/* Contact Us */
.ka12-contact-hero__title{
    color: var(--black);
    font-size: 1.6rem;
}

.ka12-contact-hero__subtitle{
    color: var(--black);
    margin: 1.4rem 0rem;
}

.ka12-contact-main {
    background: var(--white);
    padding: 3rem 0rem;
}

.ka12-contact-form {
    background: var(--white);
    border-radius: 0;
    padding: 0;
}

.ka12-contact-form__group {
    margin-bottom: 1.5rem;
}

.ka12-contact-form__label {
    display: block;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.ka12-contact-form__input,
.ka12-contact-form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--fg);
    background-color: var(--bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ka12-contact-form__input:focus,
.ka12-contact-form__textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.ka12-contact-form__input::placeholder,
.ka12-contact-form__textarea::placeholder {
    color: #999;
}

.ka12-contact-form__textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.ka12-contact-form__button {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.ka12-contact-form__button:hover {
    background: #00a843;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 200, 83, 0.3);
}

.ka12-contact-form__button:active {
    transform: translateY(0);
}

/* Success Message */
.ka12-contact-success {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: var(--green);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.ka12-contact-success.ka12-contact-show {
    display: block;
}

/* HOW TO Reach -----------------------------------------------*/
.ka12-guide-main {
    padding: 2rem 0;
    background-color: var(--bg);
}

.ka12-guide-main p{
    font-size: 1rem;
    color: var(--black);
}

.ka12-guide-option__info b{
    font-weight: 600;
}

.ka12-guide-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2rem;
}

.ka12-guide-route {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ka12-guide-route:hover {
    background: var(--bg);
}

.ka12-guide-route__header {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
}

.ka12-guide-option__content .emergency a{
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
    color: var(--red);
    font-weight: 500;
}

.ka12-guide-route__map {
    border-radius: 8px;
    width: 100%;
    height: 10.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
    color: var(--gray-medium);
}

.ka12-guide-route__map picture,
.ka12-guide-route__map img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px;
}

.ka12-guide-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ka12-guide-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.675rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ka12-guide-option:hover {
    border-color: var(--green);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.ka12-guide-option__icon {
    width: 2rem;
    height: 2rem;
    background: var(--green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    flex-shrink: 0;
}

.ka12-guide-option__content {
    flex: 1;
}

.ka12-guide-option__title {
    font-weight: 500;
    color: var(--black);
    font-size: 0.775rem;
}

.ka12-guide-option__info {
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.ka12-guide-tips {
    background: var(--green-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.ka12-guide-tips__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.ka12-guide-tips__content {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Design -----------------------------------------------------------*/
@media (max-width: 991px) {
    .ka12-guide-route__map {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .ka12-guide-title {
        font-size: 1.5rem;
    }

    .ka12-guide-route {
        padding: 1.25rem;
    }

    .ka12-guide-route__header {
        font-size: 1rem;
    }

    .ka12-guide-route__map {
        height: 150px;
    }

    .ka12-guide-option {
        padding: 0.875rem;
    }

    .ka12-guide-option__icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .ka12-guide-tips__title {
        font-size: 1.25rem;
    }
}

/* Footer Text */
.ka12-reach-footer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 1rem;
    border-top: 1px solid var(--ka12-reach-border);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ka12-reach-hero__title {
        font-size: 2.5rem;
    }

    .ka12-reach-hero__subtitle {
        font-size: 1rem;
    }

    .ka12-reach-card {
        padding: 1.5rem;
    }

    .ka12-reach-card__title {
        font-size: 1.5rem;
    }

    .ka12-reach-tips {
        padding: 1.5rem;
    }

    .ka12-reach-tips__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ka12-reach-main {
        padding: 2rem 0;
    }

    .ka12-reach-hero__title {
        font-size: 2rem;
    }

    .ka12-reach-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ka12-reach-card__content {
        font-size: 1rem;
    }

    .ka12-reach-tips__item {
        font-size: 1rem;
    }
        }
/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .ka12-home-hero {
        margin-top: 3.8rem;
        height: 50vh;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ka12-home-hero {
        height: 60vh;
        margin-top: 4rem;
    }
    
    .ka12-home-hero__title {
        font-size: 2rem;
    }

    .ka12-home-hero__subtitle {
        font-size: 1rem;
    }

    .ka12-home-search-box {
        flex-direction: column;
        padding: 1rem;
        gap: 0.775rem;
    }

    .ka12-home-search-box__button{
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }

    .ka12-home-search-box__input {
        font-size: 0.875rem;
        font-weight: 400;
    }

    .ka12-home-search-box__button {
        justify-content: center;
    }
    
    .ka12-home-discover__title, 
    .ka12-home-best-time h2{
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .ka12-home-best-time-card{
        margin-bottom: 1.5rem;
        background: var(--green-light);
    }

    .ka12-home-discover__content {
        font-size: 1rem;
    }

    .ka12-plan-season-card h3, 
    .ka12-plan-section-title
    {
        font-size: 1.1rem;
    }

    .ka12-plan-festival-content h4
    {
        font-size: 1rem;
    }

    .ka12-contact-form__input,
    .ka12-contact-form__textarea {
        padding: 0.75rem;
    }

    .ka12-contact-form__button {
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 350px) {
    .ka12-home-header {
        padding: 0.8rem 0;
    }
    .ka12-home-hero {
        margin-top: 3.75rem;
    }
    .ka12-home-hero__title {
        font-size: 1.8rem;
    }
    .ka12-home-search-box {
        margin-top: 1rem;
    }
}

/* Food Crop Section */
.ka12-home-food-crop {
    padding: 2rem 0;
    background-color: var(--bg);
    overflow: hidden;
}

.ka12-home-food-crop h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2rem;
    position: relative;
}

.ka12-home-food-crop h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--ka12-home-food-crop-primary);
    border-radius: 2px;
}

/* Swiper Container */
.ka12-home-food-crop-swiper {
    width: 100%;
    overflow: visible !important;
}

.ka12-home-food-crop-swiper .swiper-wrapper {
    align-items: center;
    display: flex;
}

.ka12-home-food-crop-swiper .swiper-slide {
    width: 350px;
    flex-shrink: 0;
}

/* Swiper Slide */
.ka12-home-food-crop-swiper-slide {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0.4;
    transform: scale(0.85);
    filter: blur(3px);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

/* Active/Center Slide - Clear and Highlighted */
.swiper-slide-active.ka12-home-food-crop-swiper-slide {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: blur(0px) !important;
    box-shadow: 0 20px 50px rgba(0, 200, 83, 0.3) !important;
    z-index: 10;
}

/* Previous and Next slides - More blur */
.swiper-slide-prev.ka12-home-food-crop-swiper-slide,
.swiper-slide-next.ka12-home-food-crop-swiper-slide {
    opacity: 0.6;
    filter: blur(2px);
}

/* Slide Image */
.ka12-home-food-crop-slide-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Slide Content */
.ka12-home-food-crop-slide-content {
    padding: 1.75rem;
    background: var(--white);
}

.ka12-home-food-crop-slide-badge {
    display: inline-block;
    background-color: var(--yellow-vintage);
    color: #000000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ka12-home-food-crop-slide-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.ka12-home-food-crop-slide-description {
    color: var(--black);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.ka12-home-food-crop-slide-facts {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ka12-home-food-crop-slide-fact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.ka12-home-food-crop-slide-fact-icon {
    color: var(--ka12-home-food-crop-primary);
    font-size: 1.2rem;
}

/* Navigation Buttons - Hidden */
.ka12-home-food-crop-button-next,
.ka12-home-food-crop-button-prev {
    display: none;
}

/* Pagination */
.ka12-home-food-crop-pagination {
    margin-top: 2.5rem;
    position: relative;
    bottom: 0;
}

.ka12-home-food-crop-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-gray);
    opacity: 0.4;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.ka12-home-food-crop-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 2rem;
    border-radius: 7px;
    transform: scale(1.1);
}

.ka12-home-food-crop-pagination .swiper-pagination-bullet:hover {
    opacity: 0.7;
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .ka12-home-food-crop-card{
        padding: 0rem 1.6rem;
    }
    .ka12-home-food-crop {
        padding: 1.6rem 0;
    }

    .ka12-home-food-crop h2 {
        font-size: 1.6rem;
    }

    .ka12-home-food-crop-slide-image {
        height: 220px;
    }

    .ka12-home-food-crop-slide-title {
        font-size: 1.1rem;
    }

    .ka12-home-food-crop-button-next,
    .ka12-home-food-crop-button-prev {
        display: none;
    }

    .ka12-home-food-crop-pagination {
        margin-top: 2rem;
    }

    .ka12-home-food-crop-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }

    .ka12-home-food-crop-pagination .swiper-pagination-bullet-active {
        width: 32px;
    }
    .ka12-home-food-crop-swiper-slide {
        opacity: 1;
        transform: unset;
        filter: unset;
    }
    .swiper-slide-prev.ka12-home-food-crop-swiper-slide,
    .swiper-slide-next.ka12-home-food-crop-swiper-slide {
        opacity: unset;
        filter: unset;
    }
}

@media (max-width: 576px) {
    .ka12-home-food-crop h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .ka12-home-food-crop-slide-image {
        height: 200px;
    }

    .ka12-home-food-crop-pagination {
        margin-top: 1.5rem;
    }

    .ka12-home-food-crop-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .ka12-home-food-crop-pagination .swiper-pagination-bullet-active {
        width: 28px;
    }
}