/* ============================================================
   50K Puppy Class Premium Style Sheet
   Clean natural light, warmth, and professional structure.
   ============================================================ */

.puppy-page-wrapper {
    --puppy-orange: var(--primary-orange, #E67E22);
    --puppy-navy: #1a2a3a;
    --puppy-warm-white: #faf8f5;
    --puppy-text-gray: #666;
    --puppy-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-x: hidden;
    background: #fff;
    color: var(--puppy-navy);
}

.puppy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.puppy-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.puppy-section-header h2 {
    margin: 0;
    color: var(--puppy-navy);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    word-break: keep-all;
}

.puppy-section-header h2 strong {
    color: var(--puppy-orange);
    font-weight: 850;
}

.puppy-section-header p {
    margin: 18px 0 0;
    color: var(--puppy-text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.puppy-section-header .tag {
    display: block;
    margin-bottom: 15px;
    color: var(--puppy-orange);
    font-size: 0.9rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.puppy-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(135deg, rgba(42, 32, 22, 0.12), rgba(42, 32, 22, 0.24)),
        url("https://images.unsplash.com/photo-1601758174114-e711c0cbaa69?auto=format&fit=crop&w=1800&q=80") center/cover;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 20, 24, 0.1), rgba(15, 20, 24, 0.28)),
        linear-gradient(90deg, rgba(255, 248, 236, 0.16), rgba(255, 248, 236, 0.02));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 120px 0 96px;
}

.hero-content .sub-title {
    display: block;
    margin-bottom: 20px;
    font-size: 1.35rem;
    font-weight: 450;
    line-height: 1.5;
}

.hero-content .main-title {
    margin: 0 0 28px;
    color: var(--puppy-orange);
    font-size: clamp(4rem, 8vw, 5.6rem);
    font-weight: 900;
    line-height: 1;
}

.hero-content .aux-text {
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.7;
}

.hero-btns,
.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-main,
.btn-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 42px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-main {
    background: var(--puppy-orange);
    color: #fff;
}

.btn-sub {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #fff;
}

.btn-main:hover,
.btn-sub:hover {
    transform: translateY(-4px);
}

.btn-main:hover {
    box-shadow: 0 12px 24px rgba(230, 126, 34, 0.28);
}

.btn-sub:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--puppy-navy);
}

.puppy-hero-v2 {
    padding: 160px 0 100px;
    overflow: hidden;
    background: #fcfcfc;
}

.puppy-hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 72px;
    width: 100%;
    max-width: var(--container-width, 1200px);
    margin: 0 auto;
    padding: 0 20px;
}

.puppy-hero-content {
    max-width: none;
}

.puppy-hero-label {
    display: block;
    margin-bottom: 20px;
    color: var(--puppy-orange);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.puppy-hero-title {
    margin: 0 0 30px;
    color: var(--puppy-navy);
    font-size: clamp(3rem, 5.4vw, 4.5rem);
    font-weight: 900;
    line-height: 1.18;
    word-break: keep-all;
}

.puppy-hero-title span {
    color: var(--puppy-orange);
}

.puppy-hero-description {
    margin: 0 0 45px;
    color: var(--puppy-text-gray);
    font-size: 18px;
    line-height: 1.65;
    word-break: keep-all;
}

.puppy-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.puppy-hero-primary,
.puppy-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    font-size: 16px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.puppy-hero-primary {
    padding: 0 40px;
    border-radius: 50px;
    color: #fff;
    background: var(--puppy-orange);
}

.puppy-hero-primary:hover {
    background: #cf6d1a;
    transform: translateY(-3px);
}

.puppy-hero-secondary {
    gap: 8px;
    color: var(--puppy-navy);
}

.puppy-hero-secondary span {
    color: var(--puppy-orange);
    transition: transform 0.3s ease;
}

.puppy-hero-secondary:hover span {
    transform: translateX(5px);
}

.puppy-hero-image-side {
    display: flex;
    justify-content: flex-end;
}

.puppy-hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.puppy-hero-image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.puppy-hero-accent {
    position: absolute;
    right: -20px;
    bottom: -20px;
    z-index: -1;
    width: 150px;
    height: 150px;
    border-right: 10px solid var(--puppy-orange);
    border-bottom: 10px solid var(--puppy-orange);
    border-radius: 0 0 40px 0;
}

.puppy-intro {
    padding: 120px 0;
    background: #fff;
}

.intro-visual {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(250, 248, 245, 0.3), rgba(230, 126, 34, 0.08)),
        url("https://images.unsplash.com/photo-1601758125946-6ec2ef64daf8?auto=format&fit=crop&w=1600&q=80") center/cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.intro-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-stats {
    position: absolute;
    left: 50%;
    bottom: 40px;
    display: flex;
    gap: 40px;
    padding: 30px 60px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(33, 29, 24, 0.09);
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
}

.stat-item {
    min-width: 120px;
    text-align: center;
}

.stat-item span {
    display: block;
    color: var(--puppy-orange);
    font-size: 1.75rem;
    font-weight: 900;
}

.stat-item p {
    margin: 8px 0 0;
    color: var(--puppy-text-gray);
    font-size: 0.9rem;
    font-weight: 650;
}

.puppy-curriculum {
    padding: 120px 0;
    background: var(--puppy-warm-white);
}

.curr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.curr-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(31, 42, 58, 0.05);
    transition: var(--puppy-transition);
}

.curr-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(31, 42, 58, 0.1);
}

.card-img {
    height: 250px;
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.16), rgba(250, 248, 245, 0.7)),
        url("https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&w=900&q=80") center/cover;
}

.curr-card:nth-child(2) .card-img {
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(250, 248, 245, 0.72)),
        url("https://images.unsplash.com/photo-1588943211346-0908a1fb0b01?auto=format&fit=crop&w=900&q=80") center/cover;
}

.curr-card:nth-child(3) .card-img {
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.12), rgba(250, 248, 245, 0.72)),
        url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?auto=format&fit=crop&w=900&q=80") center/cover;
}

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

.card-body {
    padding: 30px;
}

.card-body h3 {
    margin: 0 0 15px;
    color: var(--puppy-navy);
    font-size: 1.35rem;
    font-weight: 850;
}

.card-body p {
    margin: 0;
    color: var(--puppy-text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.puppy-message {
    padding: 100px 0;
    background: var(--puppy-navy);
    color: #fff;
    text-align: center;
}

.message-box h2 {
    margin: 0;
    font-size: clamp(2.1rem, 5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.35;
}

.message-box h2 strong {
    color: var(--puppy-orange);
    font-weight: 850;
}

.message-box p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.puppy-check-area {
    padding: 100px 0;
    background: #f9f9f9;
    text-align: center;
}

.puppy-check-header {
    margin-bottom: 60px;
}

.puppy-check-header h2 {
    margin: 0 0 15px;
    color: var(--puppy-navy);
    font-size: 32px;
    font-weight: 850;
    line-height: 1.35;
    word-break: keep-all;
}

.puppy-title-line {
    width: 40px;
    height: 3px;
    margin: 0 auto;
    background: var(--puppy-orange);
}

.puppy-check-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.puppy-check-card {
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    border: 1px solid #eee;
    border-radius: 20px;
    background: #fff;
    transition: var(--puppy-transition);
}

.puppy-check-card:hover {
    transform: translateY(-10px);
    border-color: var(--puppy-orange);
    box-shadow: 0 15px 30px rgba(31, 42, 58, 0.08);
}

.puppy-check-index {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--puppy-orange);
    border-bottom: 2px solid var(--puppy-orange);
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
}

.puppy-check-card p {
    margin: 0;
    color: #444;
    font-size: 18px;
    line-height: 1.5;
    word-break: keep-all;
}

.puppy-check-card p strong {
    color: var(--puppy-navy);
    font-weight: 850;
}

.puppy-info {
    padding: 120px 0;
    background: #fff;
}

.info-flex {
    display: flex;
    gap: 80px;
}

.info-steps,
.info-table {
    flex: 1;
}

.info-steps h3,
.info-table h3 {
    margin: 0 0 30px;
    color: var(--puppy-navy);
    font-size: 1.8rem;
    font-weight: 850;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.step span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--puppy-orange);
    color: #fff;
    font-weight: 850;
}

.step p {
    margin: 0;
    color: #30363d;
    font-weight: 750;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid var(--puppy-navy);
}

.info-table th,
.info-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.info-table th {
    width: 100px;
    color: var(--puppy-text-gray);
}

.puppy-final-cta {
    position: relative;
    padding: 150px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(26, 42, 58, 0.58), rgba(26, 42, 58, 0.58)),
        url("https://images.unsplash.com/photo-1601758064224-c3c0ec91035b?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin: 0 0 40px;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 450;
    line-height: 1.3;
}

.cta-content h2 strong {
    color: #fff;
    font-weight: 850;
}

@media (max-width: 1024px) {
    .puppy-hero-container {
        display: flex;
        flex-direction: column;
        gap: 54px;
        text-align: center;
    }

    .puppy-hero-content {
        max-width: 760px;
    }

    .puppy-hero-actions,
    .puppy-hero-image-side {
        justify-content: center;
    }

    .puppy-hero-image-frame {
        max-width: 620px;
    }

    .curr-grid,
    .puppy-check-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-flex {
        flex-direction: column;
        gap: 60px;
    }

    .intro-stats {
        width: calc(100% - 80px);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .puppy-hero-v2 {
        padding: 118px 0 72px;
    }

    .puppy-hero-container {
        width: min(100% - 36px, 640px);
        gap: 34px;
    }

    .puppy-hero-label {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .puppy-hero-title {
        margin-bottom: 20px;
        font-size: clamp(2.45rem, 11vw, 3.2rem);
        line-height: 1.18;
    }

    .puppy-hero-description {
        margin-bottom: 30px;
        font-size: 15.5px;
    }

    .puppy-hero-description br {
        display: none;
    }

    .puppy-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .puppy-hero-primary,
    .puppy-hero-secondary {
        width: 100%;
        min-height: 54px;
    }

    .puppy-hero-image-frame img {
        aspect-ratio: 4 / 3;
        border-radius: 28px;
    }

    .puppy-hero-accent {
        right: -10px;
        bottom: -10px;
        width: 96px;
        height: 96px;
        border-width: 7px;
        border-radius: 0 0 28px 0;
    }

    .puppy-hero {
        min-height: 76vh;
        align-items: flex-end;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(26, 42, 58, 0.04), rgba(26, 42, 58, 0.24)),
            linear-gradient(180deg, rgba(255, 248, 236, 0.2) 0%, rgba(255, 248, 236, 0.72) 52%, rgba(255, 248, 236, 0.94) 100%);
    }

    .hero-content {
        padding: 150px 0 56px;
        color: var(--puppy-navy);
    }

    .hero-content .sub-title {
        font-size: 1.05rem;
        font-weight: 650;
    }

    .hero-content .main-title {
        font-size: 3.4rem;
    }

    .hero-content .aux-text {
        color: rgba(26, 42, 58, 0.76);
        font-size: 1rem;
    }

    .hero-btns,
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-main,
    .btn-sub {
        width: 100%;
        min-height: 54px;
    }

    .btn-sub {
        border-color: rgba(26, 42, 58, 0.18);
        color: var(--puppy-navy);
        background: rgba(255, 255, 255, 0.72);
    }

    .puppy-intro,
    .puppy-curriculum,
    .puppy-info {
        padding: 86px 0;
    }

    .puppy-message,
    .puppy-check-area {
        padding: 54px 0;
    }

    .puppy-check-header {
        margin-bottom: 34px;
    }

    .puppy-check-header h2 {
        font-size: 2rem;
    }

    .puppy-title-line {
        width: 34px;
        margin-top: 4px;
    }

    .puppy-section-header {
        margin-bottom: 38px;
    }

    .puppy-section-header h2 {
        font-size: 2rem;
    }

    .intro-visual {
        border-radius: 28px;
    }

    .intro-visual img {
        height: 420px;
    }

    .intro-stats {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        flex-direction: column;
        gap: 20px;
        margin: -72px 20px 24px;
        padding: 26px;
        transform: none;
    }

    .curr-grid,
    .puppy-check-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .puppy-check-card {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 20px 18px;
        border-radius: 18px;
    }

    .puppy-check-index {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .puppy-check-card p {
        display: flex;
        align-items: baseline;
        gap: 4px;
        font-size: 16px;
        line-height: 1.45;
    }

    .puppy-check-card p br {
        display: none;
    }

    .info-steps,
    .info-table {
        text-align: center;
    }

    .step-list {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .step {
        justify-content: flex-start;
        gap: 16px;
        margin-bottom: 18px;
        text-align: left;
    }

    .step span {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .info-table table {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .info-table th,
    .info-table td {
        display: table-cell;
        width: auto;
        padding: 14px 8px;
        text-align: left;
    }

    .info-table th {
        width: 72px;
        padding-left: 0;
        white-space: nowrap;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .info-table td {
        padding-right: 0;
        text-align: left;
    }

    .puppy-final-cta {
        padding: 110px 0;
    }
}
