/* Services Page Styles */

/* Hero Section */
.hero {
    min-height: auto !important;
    padding: 120px clamp(20px, 5vw, 60px) 30px;
    background: linear-gradient(135deg, var(--cream-bg) 0%, #faf9f7 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.breadcrumb {
    grid-column: 1 / -1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-light, #666);
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
    opacity: 1;
}

.breadcrumb a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-teal);
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    grid-column: 1 / -1;
    text-align: center;
}

.hero-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.title-emphasis {
    color: var(--primary-teal);
    font-weight: 500;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.hero-visual {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 400px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero-visual.loaded {
    opacity: 1;
    transform: translateX(0);
}

.visual-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 95, 95, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(15, 95, 95, 0.2);
}

.visual-card.main {
    grid-row: 1 / -1;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
}

.visual-card.accent {
    align-self: center;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-muted));
}

/* Services Overview Section */
.services-overview {
    padding: clamp(40px, 8vw, 60px) 0 clamp(60px, 12vw, 120px);
    background:
            url('../images/hero/tropical-leaves-pattern3.webp') repeat,
            linear-gradient(135deg,
            rgba(15, 25, 35, 0.92) 0%,
            rgba(25, 35, 45, 0.94) 50%,
            rgba(15, 25, 35, 0.96) 100%
            );
    background-size: 400px 400px, cover;
    background-position: 0 0, center;
    background-blend-mode: luminosity, normal;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 20px);
}

/* Mobile container improvements */
@media (max-width: 768px) {
    .services-container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 15px;
        max-width: 100%;
    }

    .services-overview {
        background-size: 300px 300px, cover;
        background-position: center, center;
    }
}

.services-intro {
    text-align: center;
    margin-bottom: 0;
}

.services-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 8vw, 60px);
    width: 100%;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(5, 15, 25, 0.9) 30%,
            rgba(10, 20, 30, 0.85) 70%,
            rgba(0, 0, 0, 0.9) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.services-container {
    position: relative;
    z-index: 2;
}

/* Service Sections */
.service-section {
    background: var(--cream-bg, #faf8f5) !important;
    border-radius: clamp(12px, 3vw, 20px);
    padding: clamp(25px, 5vw, 40px);
    box-shadow: 0 10px 30px rgba(15, 95, 95, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.service-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-section.primary-service {
    border-left: 4px solid var(--primary-teal);
}

.service-section.secondary-service {
    border-left: 4px solid var(--accent-orange);
}

.service-section.tertiary-service {
    border-left: 4px solid var(--secondary-teal);
}

.service-header {
    margin-bottom: 40px;
}

.service-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: clamp(12px, 2vw, 16px);
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-medium);
}

/* Service Content Grid */
.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(20px, 4vw, 40px);
    align-items: start;
    margin-bottom: clamp(20px, 4vw, 30px);
}

/* Make grid single column on tablets and smaller */
@media (max-width: 900px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: clamp(15px, 4vw, 25px);
    }

    .service-pricing {
        margin-top: 0 !important;
    }
}

.service-pricing {
    align-self: start;
    margin-top: 62px;
}

.service-pricing .price-info {
    margin-top: 0;
}

/* Service Features */
.service-features {
    margin-bottom: 0;
}

.service-features h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* Service List Styling */
.service-list {
    background: white;
    padding: clamp(15px, 3vw, 25px);
    border-radius: clamp(8px, 2vw, 12px);
    box-shadow: 0 5px 15px rgba(15, 95, 95, 0.05);
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    padding: 12px 0;
    position: relative;
    padding-left: clamp(35px, 8vw, 40px);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 12px;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
}

/* Service Pricing */
.service-pricing {
    margin-bottom: 0;
}

.price-info {
    background: linear-gradient(135deg, var(--cream-bg) 0%, #faf9f7 100%);
    padding: clamp(15px, 3vw, 25px);
    border-radius: clamp(8px, 2vw, 12px);
    border-left: 4px solid var(--primary-teal);
}

.secondary-service .price-info {
    border-left-color: var(--accent-orange);
}

.tertiary-service .price-info {
    border-left-color: var(--secondary-teal);
}

.price-main {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 95, 95, 0.1);
}

.price-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.price-amount {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-teal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.price-main-text {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
}

.price-sub-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 2px;
    opacity: 0.9;
}

.secondary-service .price-amount {
    color: var(--accent-orange);
}

.tertiary-service .price-amount {
    color: var(--secondary-teal);
}

.price-note {
    margin-top: 16px;
}

.price-note p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(15, 95, 95, 0.05);
}

.feature-item h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 12px;
}

.feature-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

/* Service Process */
.service-process {
    margin-bottom: 40px;
}

.service-process h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(15, 95, 95, 0.05);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-timeline {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-medium);
}

/* Honeymoon Specific Styles */
.honeymoon-styles, .honeymoon-process {
    margin-bottom: 40px;
}

.honeymoon-styles h4, .honeymoon-process h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.styles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.style-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid var(--accent-orange);
    box-shadow: 0 5px 15px rgba(15, 95, 95, 0.05);
}

.style-item h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.style-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(15, 95, 95, 0.05);
}

.approach-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
}

.approach-content h5 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.approach-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-medium);
}

/* Service CTA Buttons */
.service-cta {
    display: flex;
    flex-direction: row;
    gap: clamp(15px, 4vw, 40px);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .service-cta {
        flex-direction: column;
        gap: 15px;
    }

    .service-btn {
        width: 100%;
        text-align: center;
        min-width: 200px;
    }
}

.service-btn {
    display: inline-block;
    padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 32px);
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: clamp(6px, 1.5vw, 8px);
    transition: all 0.3s ease;
}

.service-btn.primary {
    background: var(--primary-teal);
    color: white;
}

.service-btn.primary:hover {
    background: var(--secondary-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 95, 95, 0.25);
}

.service-btn.secondary {
    background: var(--accent-orange);
    color: white;
}

.service-btn.secondary:hover {
    background: var(--accent-orange-muted);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 105, 0.25);
}

/* Value Proposition Section */
.value-proposition {
    padding: clamp(60px, 12vw, 100px) 0;
    background: linear-gradient(135deg, var(--cream-bg) 0%, #faf9f7 100%);
    overflow: hidden;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 20px);
    width: 100%;
    box-sizing: border-box;
}

.value-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

/* Interactive Expanding Columns - CSS Only Approach */
.value-interactive-grid {
    display: flex;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

/* FORCE ANIMATIONS - Override reduced motion globally */
.value-interactive-grid *,
.value-interactive-grid *::before,
.value-interactive-grid *::after {
    animation-duration: unset !important;
    animation-iteration-count: unset !important;
    transition-duration: unset !important;
}

.value-column {
    width: 20%;
    position: relative;
    background: rgba(15, 25, 35, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    overflow: hidden;
    transition: width 0.5s ease-out !important;
    will-change: width;
}

.value-column:last-child {
    border-right: none;
}

/* Hover expansion - expand to 60%, others shrink to 10% each */
.value-interactive-grid:hover .value-column {
    width: 10%;
    transition: width 0.5s ease-out !important;
}

.value-interactive-grid:hover .value-column:hover {
    width: 60%;
    transition: width 0.5s ease-out !important;
    background: rgba(15, 25, 35, 1) !important; /* Debug: Darker background on hover */
}

/* Base state - always visible */
.column-base {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 2;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 15px;
    pointer-events: none;
}

.column-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
    flex-shrink: 0;
}

.column-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    overflow: visible;
    flex-shrink: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide-up overlay - CSS only */
.column-content {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 80px;
    bottom: 10px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.98), rgba(25, 35, 45, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--primary-teal);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s ease-out !important, opacity 0.4s ease-out !important;
    z-index: 100;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Show overlay only on direct column hover */
.value-column:hover .column-content {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.4s ease-out !important, opacity 0.3s ease-out 0.25s !important;
}

/* Base content styling */
.value-column:hover .column-base {
    opacity: 1;
}

/* Ensure hovered column appears above others */
.value-column:hover {
    z-index: 101;
}

.column-content h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}

.column-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    width: 350px;
    text-align: center;
    margin: 0 auto;
    contain: layout style;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background: white;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.testimonial-quote {
    background: var(--cream-bg);
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-teal);
    margin-bottom: 40px;
}

.testimonial-quote p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-quote cite {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-teal);
    font-style: normal;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.testimonial-stats .stat-number {
    font-size: 2rem;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.cta-btn {
    display: inline-block;
    padding: 18px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-teal);
}

.cta-btn.primary:hover {
    background: var(--cream-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary-teal);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        height: 300px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .service-section {
        padding: 30px 25px;
    }

    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .testimonial-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Mobile value proposition adjustments */
    .value-proposition {
        padding: clamp(40px, 8vw, 60px) 0;
    }

    /* Mobile-specific tap cards design */
    .value-interactive-grid {
        display: block;
        height: auto;
        border: none;
        margin: 0;
        width: 100%;
        background: transparent;
    }

    .value-container {
        padding: 0 5px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }

    .value-column {
        width: 100% !important;
        height: auto !important;
        border: none !important;
        margin: 0 0 15px 0 !important;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(15, 25, 35, 0.95), rgba(25, 35, 45, 0.98));
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }

    .value-column:hover,
    .value-column.active {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        background: linear-gradient(135deg, rgba(15, 25, 35, 1), rgba(25, 35, 45, 1));
    }

    .column-base {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 25px 20px;
        background: transparent;
        z-index: 2;
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: transparent;
        min-height: 60px;
    }

    .column-left {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .column-number {
        margin-right: 15px;
        margin-bottom: 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-teal);
        background: rgba(15, 95, 95, 0.15);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .column-title {
        text-align: left;
        font-size: 1.2rem;
        font-weight: 600;
        writing-mode: horizontal-tb;
        transform: none;
        color: white;
        line-height: 1.4;
        flex: 1;
        letter-spacing: 0.02em;
    }

    .column-expand-icon {
        width: 24px;
        height: 24px;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .column-expand-icon::after {
        content: '+';
        color: white;
        font-size: 16px;
        font-weight: 600;
        transition: transform 0.3s ease;
    }

    .value-column.active .column-expand-icon {
        background: var(--primary-teal);
        border-color: var(--primary-teal);
        transform: rotate(45deg);
    }

    .value-column.active .column-expand-icon::after {
        transform: rotate(45deg);
    }

    .column-content {
        position: relative;
        height: 0;
        overflow: hidden;
        transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
        padding: 0;
        background: rgba(0, 0, 0, 0.3);
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .value-column.active .column-content {
        height: 350px;
        padding: 40px 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
    }

    .column-content h3 {
        font-size: 1.6rem;
        margin: 0;
        color: white;
        font-weight: 600;
        width: 100%;
        text-align: center;
        line-height: 1.3;
        flex-shrink: 0;
    }

    .column-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
        width: 100%;
        max-width: none;
        margin: 0;
        text-align: center;
        font-weight: 400;
        letter-spacing: 0.01em;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 40px;
    }

    .service-section {
        padding: 20px 15px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .service-header {
        margin-bottom: 25px;
    }

    .service-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-features h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .service-list li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 45px;
    }

    .service-list li::before {
        left: 15px;
        top: 8px;
        font-size: 1rem;
        width: 20px;
    }

    .price-label {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.4rem;
    }

    .service-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 160px;
    }

    .process-step,
    .approach-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .service-list,
    .price-info {
        padding: 15px;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
    .service-list li {
        padding-left: 50px;
        font-size: 0.85rem;
    }

    .service-list li::before {
        left: 18px;
        font-size: 0.95rem;
        width: 22px;
    }
}

/* Animation delays for staggered entrance */
.fade-in-element:nth-child(1) { transition-delay: 0s; }
.fade-in-element:nth-child(2) { transition-delay: 0.1s; }
.fade-in-element:nth-child(3) { transition-delay: 0.2s; }
.fade-in-element:nth-child(4) { transition-delay: 0.3s; }
.fade-in-element:nth-child(5) { transition-delay: 0.4s; }
.fade-in-element:nth-child(6) { transition-delay: 0.5s; }