/* About Page Styles */

/* Reset default margins and padding */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header Container */
.new-header-container {
    margin: 0;
    padding: 20px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
}

/* Header Fixed */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: background-color 0.3s ease;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 헤더가 첫 섹션에 있을 때 배경 투명 */
.header.transparent {
    background: transparent;
}

/* 헤더가 다른 섹션에 있을 때 배경 적용 */
.header.solid {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Container */
.about-page {
    min-height: 100vh;
    margin: 0;
    position: relative;
    top: 0;
}

/* ==================== Services About Section ==================== */
.services-about-section {
    display: flex;
    flex-direction: column;
    padding: 40vh 0;
    z-index: 1;
    position: relative;
    background: #1a1a1a;
    min-height: 100vh;
}

.services-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}
.services-about-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1400px;
}

/* ==================== Description Section ==================== */
.description-section {
    background: #1a1a1a;
    height: auto;
    position: relative;
    overflow: hidden;
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.description-container {
    position: relative;
    z-index: 1;
    padding: 50vh 0 30vh 0;
    margin: 0 auto;
}

/* Description Title Wrapper */
.description-title-wrapper {
    opacity: 0;
    transform: translateY(50px);
    padding-bottom: 20vh;
    transition: transform 0.8s ease, opacity 0.8s ease;
}
/*
.description-main-title {
}*/

.description-main-title svg {
    width: 100%;
    height: auto;
    max-width: 600px;
}

.description-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bracket {
    font-family: 'Tiny5', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    color: #ffc14d;
}

.subtitle-text {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    color: #ffc14d;
    font-weight: 500;
}

/* Description Text */
.description-text {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 400;
    max-width: 85vw;
    line-height: 1.6;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin: 0 auto;
    overflow: hidden;
}

/* ScrollFloat 효과를 위한 글자 단위 span */
.description-text .char-float {
    display: inline-block;
    will-change: opacity, transform;
}

/* 공백 문자 처리 */
.description-text .char-space {
    width: 0.25em;
    opacity: 1;
}

.text-bold {
    font-weight: 700;
}

.text-normal {
    font-weight: 400;
}

/* Description Process Wrapper */
.description-process-wrapper {
    padding:30vh 0;
}

.description-process-title {
    margin-bottom: 40px;
}

.process-title-text {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(25px, 2.5vw, 45px);
    font-weight: 900;
    letter-spacing: -2px;
    color: #ffffff;
    text-align: center;
}

.process-subtitle-text {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(18px, 1vw, 25px);
    font-weight: 400;
    letter-spacing: -1px;
    color: #ffffff;
    text-align: center;
}

.description-process-steps {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: visible;
    will-change: transform;
    justify-content: center;
}

/* Process Steps in Description Section */
.description-process-steps .process-step {
    position: relative;
    flex-shrink: 0;
}


.description-process-steps .step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Tiny5', sans-serif;
    font-size: clamp(50px, 6vw, 81px);
    line-height: 57px;
    color: #ffffff;
    text-align: left;
    letter-spacing: -1.62px;
    z-index: 1;
}

.description-process-steps .step-card {
    width: 220px;
    height: 220px;
    background: #1a1a1a;
    border: 1.95px solid #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 0.426px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

/* Different shapes for each step in description section (인덱스와 동일) */
.description-process-steps .step-card.step-01 {
    border-radius: 110px 0 0 0;
}

.description-process-steps .step-card.step-02 {
    border-radius: 128.7px 128.7px 0 0;
}

.description-process-steps .step-card.step-03 {
    border-radius: 327.459px;
}

.description-process-steps .step-card.step-04 {
    border-radius: 117px 0 117px 0;
}

.description-process-steps .step-card.step-05 {
    border-radius: 128.7px 128.7px 0 0;
}

.description-process-steps .step-card.step-06 {
    border-radius: 327.459px 327.457px 0 327.459px;
}

.description-process-steps .step-icon {
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description-process-steps .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
}

.description-process-steps .step-label {
    font-family: 'SUIT', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 29px;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Responsive for description process */
@media (max-width: 768px) {
    .description-container {
    position: relative;
    z-index: 1;
    padding: 30vh 0 30vh 0;
    margin: 0 auto;
}


    .description-process-steps .step-card {
        width: 180px;
        height: 180px;
    }
.description-process-steps {
    flex-wrap: wrap;
}
    
    .description-process-steps .step-number {
        font-size: clamp(40px, 8vw, 60px);
        line-height: 45px;
        top: 5px;
        left: 5px;
    }
    
    .description-process-steps .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .description-process-steps .step-label {
        font-size: clamp(14px, 2vw, 18px);
        line-height: 24px;
    }



    .process-subtitle-text {
    font-size: clamp(14px, 1vw, 18px);
}


}

@media (max-width: 480px) {
    .description-process-steps .step-card {
        width: 160px;
        height: 160px;
    }
    
    .description-process-steps .step-number {
        font-size: clamp(30px, 10vw, 50px);
        line-height: 35px;
        top: 5px;
        left: 5px;
    }
    
    .description-process-steps .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .description-process-steps .step-label {
        font-size: clamp(12px, 2vw, 16px);
        line-height: 20px;
    }
}

/* Description Title Styles */
.description-title-wrapper {
    text-align: right;
    display: block;
    margin-bottom: 80px;
}

.description-main-title {
    width: 100%;
    max-width: 992px;
    height: auto;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 0;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    z-index: 2;
}

/* When description section has scrolled and text is visible */
.description-section.text-visible .description-main-title {
    opacity: 0.5;
    position: fixed;
    top: 40%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.description-main-title svg {
    width: 100%;
    height: auto;
    max-width: 992px;
    min-height: 100px;
}

.description-main-title svg path {
    fill: none;
    stroke: #ffc14d;
    stroke-width: 3;
}

.description-subtitle {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    color: white;
    margin-top: 20px;
}

.description-subtitle .bracket {
    font-family: 'Tiny5', sans-serif;
    font-size: 104px;
    font-weight: 400;
    color: #ffc14d;
    letter-spacing: -4.16px;
    line-height: 117px;
}

.description-subtitle .subtitle-text {
    font-family: 'SUIT', sans-serif;
    font-size: 53px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.59px;
    line-height: 66px;
}

.description-text {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(28px, 3.5vw, 55px);
    line-height: 1.25;
    word-break: keep-all;
    letter-spacing: -2.5px;
}

.description-text .text-bold {
    font-weight: 500;
    color: #ffffff;
}

.description-text .text-normal {
    font-weight: 100;
    color: #adadad;
}




/* Title Styles */
.services-title-wrapper {
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 0 10vh 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-title-wrapper.animate {
    opacity: 1;
    transform: translateY(0);
}
.services-main-title {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.services-main-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-main-title svg {
    width: 100%;
    height: auto;
    max-width: 600px;
    min-height: 100px;
}

.services-subtitle {
    font-size: 24px;
    align-items: center;
    margin: 0 auto;
    gap: 16px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.services-subtitle.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-subtitle .bracket {
    font-family: 'Tiny5', sans-serif;
    font-size: 55px;
    font-weight: 400;
    color: #ffc14d;
    line-height: 117px;
}


.services-subtitle .subtitle-text {
    font-family: 'SUIT', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -1.59px;
    line-height: 66px;
}

/* Service Cards Grid */
.service-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 100%;
    justify-content: center;
    padding: 0 20px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .service-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 480px 이하 최적화 */
@media (max-width: 480px) {
    .service-cards-grid {
        padding: 0;
        gap: 15px;
    }

    .services-title-wrapper {
        margin-bottom: 0;
    }

    .services-subtitle .bracket {
        line-height: 60px;
    }

    .services-subtitle .subtitle-text {
        line-height: 40px;
    }
}

/* 360px 이하 초소형 모바일 */
@media (max-width: 360px) {
    .service-cards-grid {
        padding: 0;
        gap: 12px;
    }

    .services-subtitle .subtitle-text {
        font-size: 30px;
    }

    .services-title-wrapper {
        margin-bottom: 0;
    }

    .services-subtitle .bracket {
        line-height: 50px;
    }

    .services-subtitle .subtitle-text {
        line-height: 35px;
    }
}

.service-card {
    background: #191919;
    border: 2px solid #ffffff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 400px;
    flex: 1 1 calc(33.333% - 10px);
    min-width: 300px;
    max-width: 600px;
    box-sizing: border-box;
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.service-title {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 900;
    letter-spacing: -2px;
    color: #ffffff;
    line-height: 1;
}

.service-subtitle {
    font-family: 'SUIT', sans-serif;
    font-size: clamp(25px, 2vw, 30px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -2px;
    margin-bottom: 0;
}

.service-icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: clamp(60px, 8vw, 108px);
    height: clamp(60px, 8vw, 108px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(0%) hue-rotate(180deg) brightness(98%) contrast(98%);
}



/* Responsive adjustments */
@media (max-width: 1200px) {
    .service-card {
        height: 350px;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .service-card {
        height: 300px;
        padding: 25px 20px;
    }
    
    .service-icon {
        bottom: 20px;
        right: 20px;
    }
}


/* Responsive */
@media (max-width: 1200px) {

@media (max-width: 768px) {
    .pro-section {
        height: 200vh;
        margin: 0;
    }

    .pro-content {
        padding: 100px 20px 150px 20px;
        min-height: 200vh;
    }

    .pro-description {
        margin-bottom: 80px;
    }

    .pro-header {
        flex-direction: column;
        gap: 20px;
    }

    .pro-why,
    .pro-how {
        display: none;
    }

    .pro-bracket-left,
    .pro-bracket-right {
        font-size: 80px;
    }

    .pro-title {
        font-size: 60px;
    }

    .pro-text {
        font-size: 24px;
    }

    .pro-studio {
        font-size: 26px;
    }


    .step-card {
        width: 200px;
        height: 200px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-label {
        font-size: 18px;
    }

    .step-number {
        font-size: 60px;
        top: 5px;
        left: 5px;
    }
}

@media (max-width: 480px) {
    .pro-section {
        height: 180vh;
    }

    .pro-content {
        padding: 80px 15px 120px 15px;
        min-height: 180vh;
    }

    .pro-header {
        margin-bottom: 40vh;
    }

    .pro-description {
        margin-bottom: 60px;
    }

    .pro-text {
        font-size: 20px;
    }

    .pro-studio {
        font-size: 22px;
    }

    .step-card {
        width: 160px;
        height: 160px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-label {
        font-size: 16px;
    }

    .step-number {
        font-size: 50px;
        top: 5px;
        left: 5px;
    }
}


/* ==================== Contact About Section ==================== */
.contact-about-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, #ffc14d 0%, #ffef43 100%);
}

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

/* Let's Talk Section */
.lets-talk-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro-text {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
}

.contact-intro-text .text-bold {
    font-weight: 700;
}

.contact-intro-text .text-normal {
    font-weight: 400;
}

.lets-talk-big {
    display: flex;
    flex-direction: column;
}

.lets-line,
.talk-line {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.lets-line {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lets-text {
    display: inline-block;
}

.star-icon {
    font-size: 80px;
    display: inline-block;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.go-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #1a1a1a;
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.go-button:hover {
    background: #333;
    transform: translateX(10px);
}

.go-button .arrow {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.go-button .arrow.flip {
    transform: scaleX(-1);
}

.go-button:hover .arrow:not(.flip) {
    animation: arrowSlide 0.6s ease infinite;
}

.go-button:hover .arrow.flip {
    animation: arrowSlideReverse 0.6s ease infinite;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@keyframes arrowSlideReverse {
    0%, 100% {
        transform: scaleX(-1) translateX(0);
    }
    50% {
        transform: scaleX(-1) translateX(5px);
    }
}

.go-text {
    font-weight: 700;
}

/* Contact Form Preview */
.contact-form-preview {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-preview-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-text {
    font-size: 18px;
    color: #1a1a1a;
    display: inline;
}

.form-text.bold {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
}

.form-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    line-height: 2;
}

.form-line input {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 200px;
    padding: 8px 16px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 16px;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-line input:focus {
    outline: none;
    border-bottom-color: #ffc14d;
}

.reference-input {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.reference-input input {
    flex: 1;
    min-width: 200px;
}

.add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.form-detail-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-detail-section textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-detail-section textarea:focus {
    outline: none;
    border-color: #ffc14d;
}

.form-submit-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: not-allowed;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: not-allowed;
}

.privacy-check a {
    color: #1a1a1a;
    text-decoration: underline;
}



















/* ==================== Responsive Design ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .services-main-title {
        font-size: 48px;
    }

    .services-subtitle {
        font-size: 20px;
    }

    .service-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards-row:last-child {
        max-width: 100%;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lets-line,
    .talk-line {
        font-size: 80px;
    }

    .contact-form-preview {
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-about-section,
    .description-section,
    .pro-section,
    .contact-about-section {
        padding: 80px 20px 60px;
    }
    
    .description-text {
        font-size: clamp(35px, 5vw, 40px);
        line-height: 1.4;
    }
    
    .description-main-title svg {
        min-height: 60px;
    }
    
    .description-subtitle {
        font-size: 16px;
        gap: 12px;
    }
    
    .description-subtitle .bracket {
        font-size: 24px;
    }
    
    .description-subtitle .subtitle-text {
        font-size: 20px;
    }

    .services-main-title svg {
        min-height: 60px;
    }

    .services-subtitle {
        font-size: 16px;
        gap: 12px;
    }

    .services-subtitle .bracket {
        font-size: 55px;
    }

    .services-title-wrapper,
    .process-title-wrapper {
        margin-bottom: 0;
    }

    .service-cards-row {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-title {
        font-size: 10vw;
    }

    .service-icon {
        width: 10vw;
        height: 10vh;
    }

    .process-title {
        font-size: 32px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-label {
        font-size: 16px;
    }

    .contact-intro-text {
        font-size: 18px;
    }

    .lets-line,
    .talk-line {
        font-size: 56px;
    }

    .star-icon {
        font-size: 48px;
    }

    .go-button {
        padding: 16px 32px;
        font-size: 20px;
    }

    .contact-form-preview {
        padding: 30px 20px;
    }

    .form-text {
        font-size: 16px;
    }

    .form-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-line input {
        width: 100%;
        max-width: 100%;
    }

    .reference-input input {
        min-width: auto;
    }

    .form-submit-section {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

    .pro-studio {
        font-size: 26px;
    }


    .step-card {
        width: 200px;
        height: 200px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-label {
        font-size: 18px;
    }

    .step-number {
        font-size: 60px;
        top: 5px;
        left: 5px;
    }


@media (max-width: 480px) {
    .pro-section {
        height: 180vh;
    }

    .pro-content {
        padding: 80px 15px 120px 15px;
        min-height: 180vh;
    }

    .pro-header {
        margin-bottom: 40vh;
    }

    .pro-description {
        margin-bottom: 60px;
    }

    .pro-text {
        font-size: 20px;
    }

    .pro-studio {
        font-size: 22px;
    }

    .step-card {
        width: 160px;
        height: 160px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-label {
        font-size: 16px;
    }

    .step-number {
        font-size: 50px;
        top: 5px;
        left: 5px;
    }
}


/* ==================== Contact About Section ==================== */
.contact-about-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, #ffc14d 0%, #ffef43 100%);
}

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

/* Let's Talk Section */
.lets-talk-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro-text {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
}

.contact-intro-text .text-bold {
    font-weight: 700;
}

.contact-intro-text .text-normal {
    font-weight: 400;
}

.lets-talk-big {
    display: flex;
    flex-direction: column;
}

.lets-line,
.talk-line {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.lets-line {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lets-text {
    display: inline-block;
}

.star-icon {
    font-size: 80px;
    display: inline-block;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.go-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #1a1a1a;
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.go-button:hover {
    background: #333;
    transform: translateX(10px);
}

.go-button .arrow {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.go-button .arrow.flip {
    transform: scaleX(-1);
}

.go-button:hover .arrow:not(.flip) {
    animation: arrowSlide 0.6s ease infinite;
}

.go-button:hover .arrow.flip {
    animation: arrowSlideReverse 0.6s ease infinite;
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@keyframes arrowSlideReverse {
    0%, 100% {
        transform: scaleX(-1) translateX(0);
    }
    50% {
        transform: scaleX(-1) translateX(5px);
    }
}

.go-text {
    font-weight: 700;
}

/* Contact Form Preview */
.contact-form-preview {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-preview-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-text {
    font-size: 18px;
    color: #1a1a1a;
    display: inline;
}

.form-text.bold {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
}

.form-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    line-height: 2;
}

.form-line input {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 200px;
    padding: 8px 16px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 16px;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-line input:focus {
    outline: none;
    border-bottom-color: #ffc14d;
}

.reference-input {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.reference-input input {
    flex: 1;
    min-width: 200px;
}

.add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.form-detail-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-detail-section textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-detail-section textarea:focus {
    outline: none;
    border-color: #ffc14d;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: not-allowed;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: not-allowed;
}

.privacy-check a {
    color: #1a1a1a;
    text-decoration: underline;
}

















/* ==================== Responsive Design ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .services-main-title {
        font-size: 48px;
    }

    .services-subtitle {
        font-size: 20px;
    }

    .service-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-cards-row:last-child {
        max-width: 100%;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lets-line,
    .talk-line {
        font-size: 80px;
    }

    .contact-form-preview {
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-about-section,
    .description-section,
    .pro-section,
    .contact-about-section {
        padding: 80px 20px 60px;
    }
    
    .description-text {
        font-size: clamp(35px, 5vw, 40px);
        line-height: 1.4;
    }
    
    .description-main-title svg {
        min-height: 60px;
    }
    
    .description-subtitle {
        font-size: 16px;
        gap: 12px;
    }
    
    .description-subtitle .bracket {
        font-size: 24px;
    }
    
    .description-subtitle .subtitle-text {
        font-size: 20px;
    }

    .services-main-title svg {
        min-height: 60px;
    }

    .services-subtitle {
        font-size: 16px;
        gap: 12px;
    }

    .services-subtitle .bracket {
        font-size: 55px;
    }

    .services-title-wrapper,
    .process-title-wrapper {
        margin-bottom: 0;
    }

    .service-cards-row {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-title {
        font-size: 10vw;
    }

    .service-icon {
        width: 10vw;
        height: 10vh;
    }

    .process-title {
        font-size: 32px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-label {
        font-size: 16px;
    }

    .contact-intro-text {
        font-size: 18px;
    }

    .lets-line,
    .talk-line {
        font-size: 56px;
    }

    .star-icon {
        font-size: 48px;
    }

    .go-button {
        padding: 16px 32px;
        font-size: 20px;
    }

    .contact-form-preview {
        padding: 30px 20px;
    }

    .form-text {
        font-size: 16px;
    }

    .form-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-line input {
        width: 100%;
        max-width: 100%;
    }

    .reference-input input {
        min-width: auto;
    }

    .form-submit-section {
        flex-direction: column;
        gap: 16px;
        margin: 20px 0 0 0 ;
        align-items: flex-start;
    }


