/* index page */

.grids-journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 930px) {
    .grids-journey {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 600px) {
    .grids-journey {
        grid-template-columns: 1fr;
        gap: 20px 0;
    }
}

.product-section,
.journey-section {
    padding: 60px 40px !important;
}

/* Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 575px) {

    .product-section,
    .journey-section,
    .ethos-section {
        padding: 40px 20px !important;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Card Container */
.product-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Image Wrapper & Zoom Animation */
.product-image-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Badges */
.product-badge-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.badge {
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.badge-primary {
    background-color: #2d5a27;
}

.badge-secondary {
    background-color: #8b5cf6;
}

.badge-tertiary {
    background-color: #0284c7;
}

/* Text Content */
.product-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d5a27;
}

.product-subtitle {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    font-style: italic;
}

.product-description {
    margin: 0;
    font-size: 0.925rem;
    line-height: 1.6;
    color: #4b5563;
}

.product-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
}

/* Smooth Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base Section Setup */
.ethos-section {
    position: relative;
    padding: 60px 40px;
    background-color: #2F4532;
    /* Deep Botanical Green */
    color: #ffffff;
    overflow: hidden;
}

/* Subtle Gradient Overlay */
.ethos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
}

.ethos-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.2), transparent);
}

/* Container & Grid Structure */
.ethos-container {
    /* max-width: 1300px; */
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

/* Desktop Responsive Layout (2 Columns) */
@media (min-width: 992px) {
    .ethos-container {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
}

/* Left Content Section */
.ethos-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ethos-subtitle {
    color: #a3e635;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.ethos-title {
    font-size: 2.25rem;
    line-height: 1.25;
    font-style: italic;
    font-weight: 600;
    margin: 0;
}

@media (min-width: 768px) {
    .ethos-title {
        font-size: 3rem;
    }
}

.ethos-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Feature List Styles */
.ethos-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ethos-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.icon {
    color: #a3e635;
    font-size: 1.25rem;
}

/* Right Grid Visuals */
.ethos-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Offset for 1st Column image on desktop */
@media (min-width: 768px) {
    .mt-desktop {
        margin-top: 2rem;
    }
}

@media (max-width: 500px) {
    .ethos-visuals {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.image-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4);
}

.aspect-3-4 {
    aspect-ratio: 3 / 4;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Glassmorphic Innovation Box */
.innovation-box {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1rem;
}

.innovation-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.15rem;
    font-style: italic;
    color: #a3e635;
    font-weight: 600;
}

.innovation-text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}


/* about page */

/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.background-overlay-banner {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-content-inner {
    text-align: center;
    color: #ffffff;
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 700;
    /* margin-bottom: 0.5rem; */
    color: #ffffff;
}

.hero-breadcrumb {
    font-size: 1rem;
}

.breadcrumb-link {
    color: #bcbcbc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 5px;
    color: #bcbcbc;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-section {
        height: 250px;
    }

    .hero-heading {
        font-size: 1.8rem;
    }
}

/* --- Owner Section Base --- */
.owner-section {
    padding: 60px 20px;
    background-color: #fff;
    /* Subtle warm organic background */
}

.owner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.owner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* Desktop Grid Layout */
@media (max-width: 768px) {
    .owner-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* --- Left Side Image Styling --- */
.owner-image-wrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.image-card {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    width: 100%;
}

.owner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid #ccc;
}

/* Floating Quote Card */
.quote-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eae6df;
    display: none;
    /* Mobile par hide rahega */
}

@media (min-width: 992px) {
    .quote-card {
        display: block;
    }
}

.quote-text {
    font-style: italic;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.quote-author {
    margin-top: 12px;
    font-weight: 600;
    color: #556b2f;
    font-size: 0.9rem;
}

/* --- Right Side Content Styling --- */
.owner-content {
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    display: inline-block;
    color: #556b2f;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.owner-title {
    font-size: 2.25rem;
    color: #1a2421;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.owner-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.owner-description p {
    margin-bottom: 16px;
}

/* Featured Specialization Grid */
.specialty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.specialty-item h4 {
    color: #2d3748;
    font-weight: 700;
    margin: 0 0 6px 0;
    font-size: 1.05rem;
}

.specialty-item p {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Base Styles - Renamed with 'ts-' Prefix */
.ts-testimonial-section {
    background-color: #f8fafc;
    padding: 50px 20px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.ts-testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.ts-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.ts-section-subtitle {
    color: #556b2f;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.ts-section-title {
    color: #1e293b;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
}

/* Testimonial Card */
.ts-swiper-wrapper {
    width: 100%;
    padding-bottom: 50px !important;
    /* Space for pagination dots */
}

.ts-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.ts-rating {
    color: #f59e0b;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.ts-rating .material-symbols-outlined {
    font-size: 20px;
    font-weight: bold;
}

.ts-review-text {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.ts-user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.ts-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.ts-user-info h4 {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.ts-user-info p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

/* Swiper Custom Pagination Dots */
.ts-testimonial-section .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
}

.ts-testimonial-section .swiper-pagination-bullet-active {
    background: #556b2f !important;
    width: 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* contact page */
/* ==========================================
   Redesigned Contact Section (Pure Custom CSS)
   ========================================== */

.contact-section {
    padding: 50px 20px;
    background: linear-gradient(180deg, #fdfbf7 0%, #f4eee2 100%);
    color: #2c3e35;
    overflow-x: hidden;
    /* Prevents horizontal scroll/overflow */
}

.contact-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* --- Section Header --- */
.contact-header {
    text-align: center;
    margin: 0 auto 20px auto;
}

.contact-title {
    font-size: 36px;
    font-weight: 800;
    color: #122b1e;
    margin: 0 0 14px 0;
    line-height: 1.25;
}

/* --- Main 2-Column Grid --- */
.contact-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: start;
    width: 100%;
}

/* --- Left Side: Form Card --- */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 15px 35px rgba(18, 43, 30, 0.06);
    border: 1px solid #e8e2d3;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.form-heading {
    font-size: 26px;
    font-weight: 700;
    color: #122b1e;
    margin: 0 0 8px 0;
}

.form-subheading {
    font-size: 14px;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

/* Form Controls */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #122b1e;
}

/* Inputs & Icons Styling */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-with-icon .icon {
    position: absolute;
    left: 14px;
    color: #8c6d31;
    font-size: 20px;
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 44px !important;
}

.contact-form input,
.contact-form textarea,
.custom-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1.5px solid #e1daca;
    background-color: #faf8f5;
    border-radius: 12px;
    color: #122b1e;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.custom-select:focus {
    border-color: #122b1e;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(18, 43, 30, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* Custom Select Styling */
.select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8c6d31;
    pointer-events: none;
}

/* Submit Button */
.submit-btn {
    background: #122b1e;
    color: #ffffff;
    border: none;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 5px;
    width: 100%;
    /* Mobile me button full-width aayega */
    box-sizing: border-box;
}

.submit-btn:hover {
    background: #8c6d31;
    box-shadow: 0 8px 20px rgba(140, 109, 49, 0.3);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* --- Right Side: Info Panel --- */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

/* Dark Hero Box */
.hero-info-card {
    background: #122b1e;
    color: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(18, 43, 30, 0.15);
    box-sizing: border-box;
    width: 100%;
}

.watermark-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    opacity: 0.06;
    color: #ffffff;
    pointer-events: none;
}

.watermark-bg span {
    font-size: 180px;
}

.info-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.info-card-desc {
    font-size: 13px;
    color: #b5c7bc;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

/* Contact Links List */
.info-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
    word-break: break-word;
}

.contact-link-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #8c6d31;
    transform: translateX(5px);
}

.link-icon {
    width: 40px;
    height: 40px;
    background: #8c6d31;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.link-text small {
    display: block;
    font-size: 11px;
    color: #a4b8ab;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-text strong {
    font-size: 14px;
    font-weight: 600;
}

/* Location Cards Grid */
.location-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.location-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #e8e2d3;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    width: 100%;
}

.loc-icon {
    color: #8c6d31;
    background: #f7f3ea;
    padding: 10px;
    border-radius: 12px;
    font-size: 22px;
    flex-shrink: 0;
}

.location-box h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: #122b1e;
}

.location-box p {
    margin: 0;
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

/* --- Responsive Media Queries (UPDATED FIXES) --- */
@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 30px 12px;
        /* Decreased section padding on mobile */
    }

    .contact-form-card {
        padding: 24px 16px;
        /* Fixed high padding issue */
        border-radius: 16px;
    }

    .hero-info-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-title {
        font-size: 26px;
    }

    .form-heading {
        font-size: 22px;
    }

    .location-box {
        padding: 15px;
    }
}