* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1f3e34;
    --secondary-color: #fff9eb;
    --light-bg-color: #fffef3;
    --dark-color: #333;
    --light-color: #fff;
    --accent-color: #8c6745;
    --text-color: #444;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Alan Sans', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-family: 'Alan Sans', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    font-family: 'Alan Sans', sans-serif;
}

ul {
    list-style: none;
    font-family: 'Alan Sans', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Alan Sans', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #8c6745;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.3rem;
    color: var(--dark-color);
}

.section-title span {
    color: var(--primary-color);
}
/* Mobile responsive styles for section titles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem; /* Slightly smaller for mobile */
        margin-bottom: 12px; /* Optional: adjust spacing */
        line-height: 1.3; /* Optional: improve readability */
    }
}
.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;

    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    
    font-weight: 400;
}


    
    

.hero {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image img {
    max-width: 100%;
    width: 350px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    margin: 40px 0;
}

.hero-email-form {
    position: relative;
    max-width: 450px;
    margin-top: 30px;
}

.email-input {
    width: 100%;
    padding: 17px 130px 17px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-size: 1rem;
     font-family: 'Alan Sans', sans-serif !important;
    background: white;
    color: var(--dark-color);
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.email-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 167, 98, 0.2);
}

.email-submit {
    position: absolute;
    font-size: 0.95rem;

    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 25px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 25px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
     font-family: 'Alan Sans', sans-serif !important;
}

.email-submit:hover {
    background-color: #8c6745;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 500px;
}

.hero-brands {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.brands-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-item {
    flex: 0 0 auto;
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-3px);
}

.brand-item img {
    height: 30px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: 
        brightness(0) 
        saturate(100%) 
        invert(11%) 
        sepia(52%) 
        saturate(417%) 
        hue-rotate(114deg) 
        brightness(94%) 
        contrast(87%) !important;
    opacity: 0.9 !important;
    display: block !important;
    visibility: visible !important;
}

.brand-item:hover img {
    filter: 
        brightness(0) 
        saturate(100%) 
        invert(11%) 
        sepia(52%) 
        saturate(500%) 
        hue-rotate(114deg) 
        brightness(100%) 
        contrast(100%) !important;
    opacity: 1 !important;
}

@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 0px;
        padding-top: 10px;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin: 0 auto 15px auto;
    }
    
    .hero-email-form {
        max-width: 400px;
        margin: 15px auto 20px auto;
    }
    
    .hero-image {
        justify-content: center;
        margin: 15px 0;
    }
    
    .hero-image img {
        max-height: 320px;
        margin: 0 auto;
    }
    
    div.hero-image {
        margin-top: 0;
    }
    
    .hero-brands {
        margin-top: 0px;
        padding-top: 10px;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-text {
        padding: 0 10px;
    }
    
    .hero-title, .hero-subtitle, .hero-email-form {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 100px 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .hero-email-form {
        margin: 12px auto 0 auto;
    }
    
    .email-input {
        padding: 12px 100px 12px 12px;
        font-size: 0.95rem;
    }
    
    .email-submit {
        padding: 0 15px;
        font-size: 0.9rem;
    }
    
    .hero-image img {
        max-height: 250px;
    }
    
    .brands-container {
        gap: 17px;
    }
    
    .brand-item img {
        height: 21px !important;
    }
    
}
/* Trustpilot wrapper for hero section - MOVE LEFT EVEN MORE */
.trustpilot-wrapper {
    margin-top: 30px;
    width: 450px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin-left: -60px; /* Increased from -40px to -60px */
    left: -30px; /* Increased from -20px to -30px */
}

/* Target the iframe specifically - move it left too */
.trustpilot-wrapper iframe {
    position: relative !important;
    left: -20px !important; /* Increased from -10px to -20px */
    transform: translateX(0) !important;
    margin-left: -10px !important; /* Added negative margin */
    margin-right: auto !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: calc(100% + 40px) !important; /* Make iframe wider to prevent cropping */
}

/* Also shift the container divs */
.trustpilot-wrapper > div,
.trustpilot-inner > div,
.trustpilot-wrapper .trustpilot-widget {
    margin-left: -15px !important; /* Add negative margin to containers too */
    left: -5px !important;
}

/* Mobile - reset left positioning */
@media screen and (max-width: 992px) {
    .trustpilot-wrapper {
        width: 400px;
        margin: 20px auto 0 auto !important; /* Important to override */
        left: 0 !important; /* Reset left positioning */
        margin-left: auto !important; /* Reset margin-left */
        text-align: center;
    }
    
    .trustpilot-wrapper iframe {
        left: 0 !important; /* Reset iframe left positioning */
        margin-left: auto !important; /* Reset margin-left */
        width: 100% !important; /* Reset width */
    }
    
    .trustpilot-wrapper > div,
    .trustpilot-inner > div,
    .trustpilot-wrapper .trustpilot-widget {
        margin-left: auto !important; /* Reset negative margin */
        left: 0 !important;
    }
}

/* Inner Page Hero Styles - IMPORTANT: position relative */
.hero.inner-hero {
    position: relative;
    text-align: center;
    color: #1f3e34;
    overflow: hidden;
}

/* Background image - covers entire hero */
.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Add blur if you want */
    filter: blur(5px);
}

/* Gradient overlay - on top of image */
.hero.inner-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, 
            rgba(166, 124, 82, 0.75),
            rgba(31, 62, 52, 0.75)
        );
    z-index: 2;
}

/* All content inside hero - above both image and gradient */
.hero.inner-hero .container,
.hero.inner-hero .hero-content,
.hero.inner-hero .hero-text,
.hero.inner-hero .hero-brands {
    position: relative;
    z-index: 3;
}

.hero.inner-hero .hero-content {
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

.hero.inner-hero .hero-text {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.hero.inner-hero .hero-title {
    color: #1f3e34;
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.7);
}

.hero.inner-hero .hero-description {
    font-size: 1.4rem;
    margin: 30px auto 30px auto;
    max-width: 700px;
    line-height: 1.6;
    color: #315346;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.hero.inner-hero .story-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto 10px auto;
    flex-wrap: wrap;
}

.hero.inner-hero .hero-brands {
    margin: 10px auto 0 auto;
    padding-top: 30px;
    border-top: none !important; /* Remove the underline */
}

.hero.inner-hero .brand-item img {
    filter: brightness(0) invert(0);
    opacity: 2 !important; /* Increased from 0.9 to 1 - fully opaque */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero.inner-hero .brand-item:hover img {
    opacity: 0.8; /* Slight opacity change on hover */
    transform: translateY(-3px);
}

/* Match inner hero to main hero responsive sizes */
@media screen and (max-width: 992px) {
    .hero.inner-hero .hero-content {
        padding: 30px 0;
    }
    
    .hero.inner-hero .hero-title {
        font-size: 2.8rem;
        margin-bottom: 30px; /* Increased gap */
    }
    
    .hero.inner-hero .hero-description {
        font-size: 1.1rem;
        margin: 30px auto 30px auto; /* Increased gap */
    }
    
    /* Buttons container - horizontally centered */
    .hero.inner-hero .hero-text .story-buttons {
        margin: 30px auto 20px auto; /* Increased top, decreased bottom */
        gap: 15px;
        display: flex;
        justify-content: center; /* Horizontally centered */
        align-items: center;
    }
    
    /* Reduce button size slightly */
    .hero.inner-hero .hero-text .story-buttons .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .hero.inner-hero .hero-brands {
        padding-top: 20px; /* Decreased from 25px */
        margin: 20px auto 0 auto; /* Decreased from 25px */
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero.inner-hero .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero.inner-hero .hero-text {
        padding: 0 10px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .hero.inner-hero {
        padding: 100px 0 30px;
    }
    
    .hero.inner-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 30px; /* Increased gap */
    }
    
    .hero.inner-hero .hero-description {
        font-size: 1rem;
        margin: 30px auto 30px auto; /* Increased gap */
    }
    
    /* Buttons container */
    .hero.inner-hero .hero-text .story-buttons {
        margin: 30px auto 20px auto; /* Increased top, decreased bottom */
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: center; /* Horizontally centered */
        align-items: center;
    }
    
    /* Further reduce button size on mobile */
    .hero.inner-hero .hero-text .story-buttons .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    .hero.inner-hero .brand-item img {
        height: 21px !important;
    }
    
    .hero.inner-hero .hero-brands {
        padding-top: 20px; /* Decreased from 25px */
        margin: 20px auto 0 auto; /* Decreased from 25px */
    }
    
    /* Reduce extra gap in brands container */
    .hero.inner-hero .hero-brands .brands-container {
        margin-top: 0;
        padding-top: 0;
    }
}

/* Add this media query for ingenuity section image zoom out on mobile */
@media screen and (max-width: 768px) {
    .ingenuity-img {
        height: 300px;
        width: 90%;
        margin: 0 auto;
        transform: scale(0.95);
    }
    
    .ingenuity-img:hover {
        transform: scale(0.95) translateY(-5px);
    }
}

@media screen and (max-width: 480px) {
    .hero.inner-hero .hero-title {
        font-size: 2.2rem;
        margin-bottom: 30px; /* Increased gap */
    }
    
    .hero.inner-hero .hero-description {
        font-size: 0.9rem;
        margin: 30px auto 30px auto; /* Increased gap */
    }
    
    .hero.inner-hero .hero-text .story-buttons {
        gap: 10px;
    }
    
    .hero.inner-hero .hero-text .story-buttons .btn {
        padding: 7px 16px;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .ingenuity-img {
        height: 250px;
        transform: scale(0.9);
    }
    
    .ingenuity-img:hover {
        transform: scale(0.9) translateY(-5px);
    }
}


/* Ingenuity & Eminence Section */
.ingenuity-section {
    background-color: #fff9eb;
    padding: 80px 0;
}

.ingenuity-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.ingenuity-text {
    flex: 1;
    text-align: left; /* Ensure text alignment is left */
}

.ingenuity-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ingenuity-img {
    max-width: 100%;
    max-height: 500px; /* Maximum height */
    width: auto;
    height: auto;
    object-fit: contain; /* Keep aspect ratio */
    border-radius: 40px;
       
    padding: 5px;
background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Override section-title alignment for this section */
.ingenuity-text .section-title {
    text-align: left !important; /* Force left alignment */
    margin-bottom: 30px;
}

.ingenuity-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: left; /* Ensure left alignment */
}

.ingenuity-subtitle p {
    margin-bottom: 20px;
}

.ingenuity-subtitle p:last-child {
    margin-bottom: 0;
}

/* Story Buttons styling */
.ingenuity-text .story-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align buttons to left */
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .ingenuity-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .ingenuity-text, .ingenuity-image {
        width: 100%;
    }
    
    /* On mobile, center everything */
    .ingenuity-text .section-title,
    .ingenuity-subtitle,
    .ingenuity-text .story-buttons {
        text-align: center !important;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .ingenuity-section {
        padding: 60px 0;
    }
    
    .ingenuity-subtitle {
        font-size: 1rem;
    }
    
    .ingenuity-text .story-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ingenuity-text .story-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}



/* Reviews Section - Simple Enhancement */
.reviews-section {
    padding: 60px 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.review-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(31, 62, 52, 0.1);
}

.review-rating {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    border-top: 1px solid rgba(31, 62, 52, 0.1);
}

.review-author strong {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.review-author span {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
}





/* Pricing Section */
.pricing-section {
    background-color: var(--light-bg-color);
    padding: 80px 0;
}

/* Center header styling */
.center-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-service-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-service-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Tabs */
.services-tabs {
    margin-bottom: 50px;
    overflow-x: visible;
}

.tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; /* Keep as nowrap */
    gap: 10px;
    padding-bottom: 10px;
    width: 100%;
    flex-shrink: 0; /* Prevent shrinking */
}

.tab-btn {
    padding: 12px 24px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Alan Sans', sans-serif;
    flex-shrink: 0; /* Prevent button shrinking */
}

.tab-btn:hover {
    background-color: rgba(31, 62, 52, 0.1);
    transform: translateY(-2px);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Pricing Service Sections */
.pricing-service-section {
    display: none;
}

.pricing-service-section.active {
    display: block;
}

/* Pricing Cards Container */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual Pricing Card */
.pricing-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(31, 62, 52, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-align: center;
}

.pricing-card-title {
    font-size: 1.5rem;
    margin-bottom: 1px;
    font-weight: 400;
}

.pricing-card-price {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-card-meta {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.pricing-card-features {
    padding: 25px 20px;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 400px;
}

/* FIX 2: Reduced height scrollbar */
.pricing-card-features::-webkit-scrollbar {
    width: 4px; /* Reduced from 6px */
}

.pricing-card-features::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 4px;
    opacity: 0.7; /* Makes it appear lighter/smaller */
    
}

.pricing-card-features::-webkit-scrollbar-thumb:hover {
    opacity: 1; /* Full opacity on hover */
    
}

/* This is the track (background) - doesn't control thumb height */
.pricing-card-features::-webkit-scrollbar-track {
    background: #f8f8f8; /* Lighter track */
    border-radius: 4px;
}

.pricing-card-features h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-card-features ul {
    list-style: none;
}

.pricing-card-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.pricing-card-features li:last-child {
    border-bottom: none;
}

.pricing-card-features li:before {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-card-features li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* FIX 1: Buttons match original styles */
.pricing-card-buttons {
    padding: 20px;
    margin-top: auto;
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
}

.pricing-card-buttons .btn {
    display: inline-block;
    padding: 12px 1px !important;
    border-radius: 30px !important;
    font-weight: 400 !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    border: none !important;
    font-family: 'Alan Sans', sans-serif !important;
    flex: 1;
    font-size: inherit !important;
    min-width: 0;
}

.pricing-card-buttons .btn-primary {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
}

.pricing-card-buttons .btn-primary:hover {
    background-color: #8c6745 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3) !important;
}

.pricing-card-buttons .btn-secondary {
    background-color: var(--secondary-color) !important;
    color: var(--dark-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.pricing-card-buttons .btn-secondary:hover {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3) !important;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .pricing-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media screen and (max-width: 992px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-service-title {
        font-size: 1.8rem;
    }
    
    /* Improved tab responsiveness */
    .tabs-container {
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 15px;
    }
    
    .services-tabs {
        margin-bottom: 40px;
    }
    
    .tab-btn {
        margin: 5px;
    }
    
}

@media screen and (max-width: 768px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .pricing-card-price {
        font-size: 2.2rem;
    }
    
     /* Tabs layout: Centered single, then pairs */
    .tabs-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px; /* Minimal gap */
        padding-bottom: 15px;
        max-width: 500px;
        margin: 0 auto;
    }
    
     .tabs-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding-bottom: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* SINGLE CENTERED TABS: 1, 4, 7 */
    .tabs-container .tab-btn:nth-child(1),
    .tabs-container .tab-btn:nth-child(4),
    .tabs-container .tab-btn:nth-child(7) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 200px;
    }
    
    /* Keep buttons side-by-side on mobile */
    .pricing-card-buttons {
        flex-direction: row;
        padding: 15px;
    }
    
    .pricing-card-buttons .btn {
        width: auto;
        padding: 10px 20px !important;
    }
    
    /* Make card smaller on mobile */
    .pricing-card {
        max-height: 450px;
    }
    
    .pricing-card-features {
        padding: 20px 15px;
        max-height: 320px;
    }
    
    /* Smaller scrollbar on mobile */
    .pricing-card-features::-webkit-scrollbar {
        width: 3px;
    }
}

@media screen and (max-width: 576px) {
    /* Better tab layout for smaller screens */
    .tabs-container {
        max-width: 100%;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    /* Even more compact layout */
    .pricing-cards-container {
        max-width: 100%;
        gap: 15px;
    }
    
    .pricing-card {
        max-height: 420px;
    }
    
    .pricing-card-features {
        max-height: 300px;
    }
}


