/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #181818;
    background-color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.vtx-container {
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #181818;
    margin-bottom: 32px;
    margin-top: 64px;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #ffffff;
    padding: 16px 104px;
    position: relative;
}

.breadcrumb-container {
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    height: 20px;
    margin: 0 0 24px 0;
    padding: 0;
}

.breadcrumb-item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9d9d9d;
}

.breadcrumb-current {
    font-weight: 500;
    color: #181818;
}

.breadcrumb-separator {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9d9d9d;
    padding: 0 12px;
}

/* Main Content */
.main-content {
    background-color: #ffffff !important;
    padding: 24px 0 48px;
}

/* Container handled by theme .container class */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 384px;
    gap: 40px;
    margin-bottom: 64px;
    align-items: flex-start;
}

.course-header {
    margin-bottom: 24px;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.course-badge {
    background: rgba(244, 119, 38, 0.1);
    color: #f47726;
    border-radius: 4px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 14px;
}

.course-sku {
    color: #9d9d9d;
    font-size: 14px;
}

.course-title {
    font-size: 36px;
    font-weight: 700;
    color: #181818;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.course-description {
    font-size: 18px;
    line-height: 1.6;
    color: #9d9d9d;
}

.details-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
    background: #ffffff;
    padding: 0; /* Removing inner padding if handling with flex-gap */
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-label {
    display: block;
    font-size: 12px;
    color: #9d9d9d;
}

.detail-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #181818;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-buttons .btn {
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-primary {
    background: #f47726;
    color: white;
}

.btn-whatsapp {
    background: #22c55e;
    color: white;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 480px;
    background-color: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom-button {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #181818;
    z-index: 10;
}

.zoom-button:hover {
    background-color: #f9fafb;
}

.thumbnail-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail-active {
    border-color: #f47726;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 384px;
    gap: 48px;
    margin-bottom: 64px;
    align-items: flex-start;
}

/* Course Info Section */
.course-info-section {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(0, 61, 122, 0.1);
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #13284c;
}

.course-sku {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9d9d9d;
}

.course-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #181818;
    margin: 0;
}

.course-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    color: #9d9d9d;
    margin: 0;
    padding-top: 4px;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Details Card */
.details-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background-color: #f0f7ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9d9d9d;
}

.detail-value {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #181818;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: #f47726;
    color: #ffffff;
}

.btn-whatsapp {
    background-color: #22C55E; /* Brand Green */
    color: #ffffff;
}

/* Hero Utility Footer */
.hero-utility-footer {
    padding-top: 24px;
    border-top: 1px solid #f1f1f1;
    margin-top: auto;
}

.utility-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #9d9d9d;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}

.utility-link:hover {
    color: #181818;
}

.btn-consultation {
    background-color: #f47726;
    color: #ffffff;
    align-self: flex-start;
}

.btn-form-submit {
    background-color: #f47726;
    color: #ffffff;
    width: 100%;
}

/* Share Section */
.share-section {
    display: flex;
    gap: 12px;
}

.share-button,
.download-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #9d9d9d;
    cursor: pointer;
    transition: background-color 0.3s;
}

.share-button:hover,
.download-button:hover {
    background-color: #f9fafb;
}

/* Section Styles */
section {
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #181818;
    margin-bottom: 24px;
}

.section-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6b7280;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
}

/* Included Section */
.included-section {
    background-color: #ffffff;
    padding: 48px 0;
    border-radius: 0;
    border-bottom: 1px solid #f3f4f6;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.included-icon-wrapper {
    width: 24px;
    height: 24px;
    background-color: #e6f5ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon-wrapper svg path {
    stroke: #22c55e;
}

.included-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #181818;
    margin-bottom: 0; /* Ensure no bottom margin in grid items */
}

/* Target Audience Section */
.target-section {
    background-color: #ffffff;
    padding: 48px 0;
    border-radius: 0;
    border-bottom: 1px solid #f3f4f6;
}

.target-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.target-card {
    background-color: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center; /* Side-by-side icon and text */
    gap: 24px;
    transition: box-shadow 0.3s;
}

.target-card:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.target-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.target-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.target-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #181818;
    margin: 0;
}

.target-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #6b7280;
    margin: 0;
}

/* Methodology Section */
.methodology-section {
    background-color: #ffffff;
    padding: 48px 0;
    border-radius: 0;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.methodology-step {
    display: flex;
    gap: 24px;
    padding: 0 0 32px 0;
    background-color: transparent;
    border-radius: 0;
    position: relative;
}

.methodology-step:last-child {
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 48px;
    height: 48px;
    background-color: #13284c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 48px + 32px); /* Corrected height calculation for line */
    background-color: #e5e7eb;
    z-index: 1;
}

.methodology-step:last-child .step-number::after {
    display: none;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #181818;
    margin: 0 0 8px 0;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #6b7280;
    margin: 0;
}

/* Consultation Section */
.consultation-section {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.consultation-content {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 48px;
}

.consultation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultation-text {
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.consultation-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #181818;
    margin: 0;
}

.consultation-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6b7280;
    margin: 0;
}

/* Documents Section */
.documents-section {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: box-shadow 0.3s;
}

.document-item:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.document-icon {
    flex-shrink: 0;
}

.document-content {
    flex: 1;
}

.document-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #181818;
    margin: 0 0 4px 0;
}

.document-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9d9d9d;
    margin: 0;
}

.document-download {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.document-download:hover {
    opacity: 0.7;
}

/* Related Services Section */
.related-services-section {
    background-color: #ffffff;
    padding: 64px 0;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-service-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.related-service-image-container {
    height: 200px;
    overflow: hidden;
}

.related-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-service-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-service-title {
    font-size: 18px;
    font-weight: 700;
    color: #181818;
    margin-bottom: 12px;
}

.related-service-description {
    font-size: 14px;
    color: #9d9d9d;
    line-height: 1.5;
    margin-bottom: 24px;
}

.view-details-link {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f47726;
    font-weight: 600;
    font-size: 14px;
}

/* Methodology Section Styles */
.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-top: 24px;
}

/* Consolidated Methodology Styles */
.methodology-step {
    display: flex;
    gap: 32px;
    position: relative;
    padding-bottom: 48px;
}

.methodology-step:last-child {
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #13284c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 48px);
    background: #e5e7eb;
    z-index: 1;
}

.methodology-step:last-child .step-number::after {
    display: none;
}

.step-content {
    flex: 1;
    padding-top: 4px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #181818;
    margin-bottom: 8px;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: #9d9d9d;
    margin: 0;
}

/* Form refinement */
.cta-form-section {
    background-color: #13284c;
    border-radius: 24px;
    padding: 64px;
    margin-top: 64px;
}

.cta-form-container {
    max-width: 600px; /* narrowed */
    margin: 0 auto;
}

.cta-form-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #ffffff !important; /* Force white for navy background */
    margin: 0 0 12px 0;
    text-align: center;
}

.cta-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0;
    text-align: center;
}

/* Form Styles */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f47726;
    background-color: rgba(255, 255, 255, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .main-content {
        padding: 48px 64px;
    }
    
    .breadcrumb-section {
        padding: 16px 64px;
    }
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .right-column {
        max-width: 100%;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
    }
    
    .consultation-text {
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 32px 24px;
    }
    
    .breadcrumb-section {
        padding: 12px 24px;
    }
    
    .details-card {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .course-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .course-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .included-grid,
    .related-services-grid {
        grid-template-columns: 1fr;
    }

    .about-section,
    .included-section,
    .target-section,
    .methodology-section,
    .documents-section,
    .related-services-section {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .thumbnail-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        height: auto;
    }
    
    .share-section {
        flex-direction: column;
    }
    
    .course-title {
        font-size: 24px;
        line-height: 32px;
    }
}
