/* SMILE DESIGNING PAGE */

.smile-hero {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.95), rgba(255, 107, 157, 0.95)),
                url('../images/dental-hero.jpg') center/cover;
    min-height: 550px;
    padding: 150px 0 100px;
}

.hero-promise {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.promise-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promise-item i {
    font-size: 22px;
}

/* Opening */
.smile-opening {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.opening-statement {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.08);
    border: 1px solid #FFE5EC;
    position: relative;
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.quote-icon i {
    font-size: 24px;
    color: white;
}

.opening-main {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.opening-sub {
    font-size: 22px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.opening-insight {
    font-size: 20px;
    font-weight: 600;
    color: #E91E63;
    margin: 0;
}

.opening-philosophy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.opening-philosophy p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* What is Smile */
.what-is-smile {
    padding: 100px 0;
    background: white;
}

.smile-definition {
    max-width: 1000px;
    margin: 50px auto;
}

.definition-text {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.correction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.correction-item {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.correction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.correction-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.correction-icon i {
    font-size: 30px;
    color: white;
}

.correction-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.smile-procedures {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.smile-procedures > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.analogy-box {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.analogy-box i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
    margin-top: 5px;
}

.analogy-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Who Should Consider */
.who-should-consider {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.candidate-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.candidate-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.candidate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.candidate-icon i {
    font-size: 35px;
    color: white;
}

.candidate-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.candidate-box p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.consideration-note {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
}

.consideration-note p {
    font-size: 17px;
    color: #555;
    font-weight: 500;
}

/* Cost */
.smile-cost {
    padding: 100px 0;
    background: white;
}

.cost-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.cost-intro p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.cost-ranges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cost-range-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFE5EC;
    transition: all 0.3s ease;
}

.cost-range-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.cost-range-card.complete {
    border-color: #E91E63;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
}

.range-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.range-icon i {
    font-size: 35px;
    color: white;
}

.cost-range-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.range-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.range-price {
    font-size: 32px;
    font-weight: 700;
    color: #E91E63;
    font-family: 'Cormorant Garamond', serif;
}

.per-tooth {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.cost-philosophy {
    max-width: 900px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cost-philosophy i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
}

.cost-philosophy p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.cost-determinants {
    max-width: 1000px;
    margin: 0 auto;
}

.cost-determinants h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.determinants-intro {
    font-size: 17px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.determinants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.determinant-card {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.determinant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.determinant-card i {
    font-size: 35px;
    color: #E91E63;
    margin-bottom: 15px;
}

.determinant-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.determinant-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.comparison-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Process */
.smile-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 50px auto 40px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #E91E63, #FF6B9D);
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
    z-index: 2;
}

.step-content {
    background: white;
    padding: 30px 35px;
    border-radius: 15px;
    border: 1px solid #FFE5EC;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.process-philosophy {
    text-align: center;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    color: white;
    padding: 30px 50px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.process-philosophy i {
    font-size: 32px;
}

.process-philosophy p {
    font-size: 18px;
    margin: 0;
}

/* Duration */
.smile-duration {
    padding: 100px 0;
    background: white;
}

.duration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.duration-card {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.duration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.duration-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.duration-icon.simple {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.duration-icon.moderate {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.duration-icon.complex {
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
}

.duration-icon i {
    font-size: 40px;
    color: white;
}

.duration-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.duration-time {
    font-size: 32px;
    font-weight: 700;
    color: #E91E63;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 10px;
}

.duration-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.rush-warning {
    max-width: 900px;
    margin: 50px auto 0;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.rush-warning i {
    font-size: 28px;
    color: #856404;
    flex-shrink: 0;
}

.rush-warning p {
    font-size: 16px;
    color: #856404;
    margin: 0;
    line-height: 1.7;
}

/* Best Designer */
.best-designer {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.designer-insight {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.insight-lead {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
}

.designer-qualities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.quality-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.quality-icon i {
    font-size: 35px;
    color: white;
}

.quality-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.quality-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.designer-philosophy {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    color: white;
    padding: 35px 45px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.25);
}

.designer-philosophy i {
    font-size: 40px;
    opacity: 0.2;
    position: absolute;
    top: 25px;
    left: 35px;
}

.designer-philosophy p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Natural Smile */
.natural-smile {
    padding: 100px 0;
    background: white;
}

.natural-intro {
    text-align: center;
    margin-bottom: 40px;
}

.natural-intro p {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

.factors-grid-natural {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.natural-factor {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #FFE5EC;
    position: relative;
    transition: all 0.3s ease;
}

.natural-factor:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.factor-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.natural-factor .factor-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}

.natural-factor .factor-icon i {
    font-size: 30px;
    color: #E91E63;
}

.natural-factor h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.natural-factor p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.natural-warning {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.natural-warning i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
}

.natural-warning p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Permanence */
.smile-permanence {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.permanence-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid #FFE5EC;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.08);
}

.permanence-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.permanence-answer {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

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

.detail-item {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-item i {
    font-size: 32px;
    color: #E91E63;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.detail-content p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Worth It */
.smile-worth {
    padding: 100px 0;
    background: white;
}

.worth-answer {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.worth-main {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
}

.worth-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-box {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.benefit-box i {
    font-size: 50px;
    color: #E91E63;
    margin-bottom: 20px;
}

.benefit-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-box p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.worth-key {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    color: white;
    padding: 30px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.worth-key i {
    font-size: 36px;
    flex-shrink: 0;
}

.worth-key p {
    font-size: 18px;
    margin: 0;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .process-timeline::before { left: 30px; }
    .step-number { width: 60px; height: 60px; font-size: 24px; }
    .process-step { padding-left: 90px; }
}

@media (max-width: 768px) {
    .smile-hero { padding: 120px 0 80px; min-height: 450px; }
    .smile-opening, .what-is-smile, .who-should-consider, .smile-cost, .smile-process, .smile-duration, .best-designer, .natural-smile, .smile-permanence, .smile-worth { padding: 60px 0; }
    .opening-statement, .permanence-box { padding: 40px 30px; }
    .section-header h2 { font-size: 32px; }
    .correction-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .process-philosophy { flex-direction: column; padding: 25px 30px; }
}

@media (max-width: 480px) {
    .section-header h2 { font-size: 28px; }
    .opening-main { font-size: 20px; }
    .opening-sub { font-size: 18px; }
    .promise-item { padding: 12px 20px; font-size: 14px; }
    .range-price, .duration-time { font-size: 28px; }
    .insight-lead, .worth-main { font-size: 20px; }
    .designer-philosophy i { font-size: 30px; top: 20px; left: 20px; }
    .designer-philosophy p { font-size: 17px; }
}