/* Services Page */
.service-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tour-showcase {
    margin-bottom: 60px;
}

.tour-showcase h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.tour-showcase p {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Tour Container Styling */
.tour-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 40px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
}

.tour-container iframe {
    display: block;
    border-radius: 8px;
    width: 100%;
    height: 563px;
    border: none;
}

.feature-list-container {
    margin-bottom: 60px;
}

.feature-list-container h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.feature-list i {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-list p {
    margin: 0;
    line-height: 24px;
}

.services-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.services-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.services-feature-list i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.services-feature-list h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.services-feature-list p {
    margin-bottom: 0;
}

.service-process {
    margin-bottom: 60px;
}

.service-process h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    max-width: 200px;
    margin: 0 auto;
}

/* Transformations Section */
.transformations {
    padding: 80px 0;
    background-color: var(--white);
}

.transformations .container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.transformations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 0 15px;
    width: 100%;
    font-family: 'QTCaslanOpen', serif;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--dark-gray);
    padding: 0 15px;
}

.transformation-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 50px;
}

.transformation-item {
    display: flex;
    gap: 30px;
    align-items: center;
}

.transformation-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    max-width: 600px;
}

.before-image, .after-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

.before-image:hover, .after-image:hover {
    transform: scale(1.02);
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(25, 36, 43, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.transformation-content {
    flex: 1;
}

.transformation-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.transformation-feature-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transformation-feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.transformation-feature-list li:hover {
    transform: translateY(-3px);
}

.transformation-feature-list i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-block;
}

.transformation-feature-list p {
    margin: 0;
    line-height: 24px;
    font-weight: 500;
    color: var(--text-color);
}

/* Transformation images custom styles */
.transformation-images-custom {
    height: 550px;
    background-color: #f8f9fa;
}

.transformation-2d-plan {
    background-image: url('/images/floorplans/1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
}

.transformation-3d-capture {
    background-image: url('/images/dollhouses/1.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding: 20px;
}

.transformation-floor-plan {
    background-image: url('/images/floorplans/2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
}

.transformation-dollhouse {
    background-image: url('/images/dollhouses/2.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding: 10px;
}

.transformation-original {
    background-image: url('/images/floorplans/3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
}

.transformation-digital-twin {
    background-image: url('/images/dollhouses/3.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding: 10px;
} 