/* Services Page Styles */

body {
    font-family: 'Poppins', sans-serif !important;
}

.services-page {
    background-color: #FFF5F5;
    min-height: 100vh;
}

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

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.services-hero {
    text-align: center;
    padding: 60px 20px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-hero .section-label-capsule {
    display: inline-block;
    padding: 10px 28px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #b0b0b0;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.services-hero h1 span {
    color: #666;
}

.services-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* Free Sample Section */
.free-sample-section {
    padding: 80px 0;
}

.free-sample-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.free-sample-image {
    position: relative;
}

.gift-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.gift-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.gift-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gift-emoji {
    font-size: 24px;
}

.gift-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.free-sample-content {
    padding-right: 20px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
}

.free-sample-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.free-sample-content h2 span {
    color: #00c853;
}

.free-sample-content > p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.free-sample-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.free-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.free-feature i {
    color: #00c853;
    font-size: 18px;
}

.free-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.btn-primary {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-primary:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: #FFF5F5;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-label-capsule {
    display: inline-block;
    padding: 10px 28px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

.services-track-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.services-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.services-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.service-item {
    flex: 0 0 320px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-number {
    font-size: 14px;
    font-weight: 800;
    color: #ccc;
    letter-spacing: 1px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-tags span {
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: #FFF5F5;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content {
    padding-left: 20px;
}

.why-choose-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-content h2 span {
    color: #666;
}

.why-choose-content > p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon i {
    font-size: 20px;
    color: #fff;
}

.why-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.why-feature-text p {
    font-size: 0.9rem;
    color: #666;
}

.why-choose-image {
    position: relative;
}

.why-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.why-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.why-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.overlay-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
}

.overlay-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #FFF5F5;
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-header .section-label-capsule {
    display: inline-block;
    padding: 10px 28px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.comparison-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.comparison-header p {
    font-size: 1.1rem;
    color: #666;
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table thead th {
    background: #000;
    color: #684c4c;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody tr:hover {
    background: #fafafa;
}

.comparison-table td:first-child {
    text-align: left;
}

.td-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.td-content i {
    color: #666;
    font-size: 16px;
}

.td-content span {
    font-weight: 500;
    color: #000;
}

.vintush-col {
    background: #e8ffe8 !important;
}

.check {
    color: #00c853;
    font-size: 1.1rem;
}

.cross {
    color: #ff1744;
    font-size: 1.1rem;
}

.warning {
    color: #ff9800;
    font-size: 1rem;
}

/* Journey / How We Work Section */
.journey-section {
    padding: 80px 0;
    background: #FFF5F5;
}

[data-theme="dark"] .journey-section {
    background: var(--about-bg-primary, #0a0a0a);
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header .section-label {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    padding: 8px 24px;
    background: #000;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

[data-theme="dark"] .journey-header .section-label {
    background: #fff;
    color: #000;
}

.journey-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.2;
}

[data-theme="dark"] .journey-header h2 {
    color: #fff;
}

.journey-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

[data-theme="dark"] .journey-header p {
    color: #888;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
    transform: translateX(-50%);
}

[data-theme="dark"] .journey-timeline::before {
    background: #222;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid #FFF5F5;
    z-index: 1;
}

[data-theme="dark"] .timeline-dot {
    background: #fff;
    border-color: #0a0a0a;
}

.timeline-content {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 400px;
}

[data-theme="dark"] .timeline-content {
    background: #111;
    border-color: #222;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.timeline-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

[data-theme="dark"] .timeline-content h4 {
    color: #fff;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

[data-theme="dark"] .timeline-content p {
    color: #888;
}

/* CTA Section */
.about-cta-section {
    padding: 80px 0;
}

.about-cta-card {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 80px 40px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.about-cta-card h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.about-cta-card p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-buttons .primary-btn:hover {
    background: #eee;
    transform: translateY(-3px);
}

.about-cta-buttons .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: #666666;
    border: 2px solid #666666;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-buttons .secondary-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .free-sample-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .free-sample-content,
    .why-choose-content {
        padding-right: 0;
        padding-left: 0;
    }

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

    .timeline-item {
        display: block;
        padding: 0 0 40px 0;
        text-align: center;
    }

    .timeline-item:nth-child(even) {
        padding-left: 0;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-content {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px 40px;
    }

    .free-sample-section,
    .what-we-do-section,
    .why-choose-section,
    .comparison-section,
    .journey-section {
        padding: 60px 0;
    }

    .gift-image-wrapper img,
    .why-img-wrapper img {
        height: 350px;
    }

    .journey-timeline {
        display: block;
    }

    .timeline-item {
        padding: 0 0 30px 0;
    }

    .timeline-content {
        padding: 25px 20px;
    }

    .about-cta-card {
        padding: 60px 25px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 12px;
    }
}

/* Dark Theme */
[data-theme="dark"] .services-page {
    background-color: #0a0a0a;
}

[data-theme="dark"] .services-hero {
    min-height: 75vh;
}

[data-theme="dark"] .free-sample-section {
    background: #0a0a0a;
}

[data-theme="dark"] .free-sample-content h2 {
    color: #fff;
}

[data-theme="dark"] .free-sample-content > p {
    color: #888;
}

[data-theme="dark"] .free-feature span {
    color: #fff;
}

[data-theme="dark"] .what-we-do-section {
    background: #0a0a0a;
}

[data-theme="dark"] .services-header h2 {
    color: #fff;
}

[data-theme="dark"] .services-header p {
    color: #888;
}

[data-theme="dark"] .service-item {
    background: #111;
    border-color: #222;
}

[data-theme="dark"] .service-content h3 {
    color: #fff;
}

[data-theme="dark"] .service-content p {
    color: #888;
}

[data-theme="dark"] .service-tags span {
    background: #222;
    color: #888;
}

[data-theme="dark"] .why-choose-section {
    background: #0a0a0a;
}

[data-theme="dark"] .why-choose-content h2 {
    color: #fff;
}

[data-theme="dark"] .why-choose-content > p {
    color: #888;
}

[data-theme="dark"] .why-feature-text h4 {
    color: #fff;
}

[data-theme="dark"] .why-feature-text p {
    color: #888;
}

[data-theme="dark"] .why-overlay-card {
    background: #111;
}

[data-theme="dark"] .overlay-number {
    color: #fff;
}

[data-theme="dark"] .comparison-section {
    background: #0a0a0a;
}

[data-theme="dark"] .comparison-header h2 {
    color: #fff;
}

[data-theme="dark"] .comparison-header p {
    color: #888;
}

[data-theme="dark"] .comparison-table {
    background: #111;
}

[data-theme="dark"] .comparison-table th,
[data-theme="dark"] .comparison-table td {
    border-color: #222;
}

[data-theme="dark"] .comparison-table tbody tr:hover {
    background: #1a1a1a;
}

[data-theme="dark"] .td-content span {
    color: #fff;
}

[data-theme="dark"] .about-cta-card {
    background: #111;
    border: 1px solid #222;
}

[data-theme="dark"] .about-cta-card h3 {
    color: #fff;
}

[data-theme="dark"] .about-cta-card p {
    color: #888;
}
