/* ==========================================================
   Components: cards, buttons, forms, photo frames, tip panels
========================================================== */

/* =========================
   Buttons
========================= */

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    color: var(--text);
    font-weight: 950;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
}

.button.primary {
    color: var(--bg-black);
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    box-shadow: 0 16px 34px rgba(199, 162, 122, 0.22);
}

.button.ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.065);
    border-color: var(--border);
}

.button:hover {
    transform: translateY(-1px);
}

/* =========================
   Panels & Cards
========================= */

.card,
.panel,
.tip-card,
.quote-card,
.form-card,
.price-card,
.service-card,
.reward-card,
.policy-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(169, 117, 214, 0.05)),
        rgba(255, 255, 255, 0.035);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.19);
}

.card,
.panel,
.price-card,
.service-card,
.reward-card,
.policy-card {
    padding: 26px;
}

.card .icon,
.service-card .icon,
.policy-card .icon {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 2rem;
}

.card p,
.service-card p,
.price-card p,
.policy-card p {
    color: var(--muted);
}

.featured {
    border-color: rgba(243, 214, 155, 0.48);
    box-shadow:
        0 0 0 2px rgba(199, 162, 122, 0.16),
        0 18px 48px rgba(0, 0, 0, 0.22);
}

/* =========================
   About Photo Frame
========================= */

.about-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(26px, 6vw, 70px);
    align-items: center;
}

.ashley-photo-frame {
    position: relative;
    padding: 14px;
    border: 3px solid var(--purple-border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(214, 168, 242, 0.95), rgba(94, 53, 127, 0.92)),
        var(--bg-purple);
    box-shadow:
        0 0 0 3px rgba(94, 53, 127, 0.75),
        var(--shadow),
        var(--glow);
}

.ashley-photo-frame::before {
    content: "✦";
    position: absolute;
    top: 12px;
    left: 18px;
    color: var(--gold-bright);
    font-size: 1.4rem;
    z-index: 2;
}

.ashley-photo-frame::after {
    content: "✦";
    position: absolute;
    right: 18px;
    bottom: 12px;
    color: var(--gold-bright);
    font-size: 1.4rem;
    z-index: 2;
}

.ashley-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 30px;
}

/* =========================
   Tip Images
========================= */

.tip-image {
    width: min(940px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.tip-image img {
    width: 100%;
}

/* =========================
   Service Hexley Sheet
========================= */

.service-hexley-sheet {
    width: min(1040px, 100%);
    margin: 34px auto 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-hexley-sheet img {
    width: 100%;
}

/* =========================
   Pricing
========================= */

.price {
    margin: 10px 0;
    color: var(--gold-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1;
}

.price-note {
    margin-top: 10px;
    color: var(--muted);
}

.addon-list,
.clean-list,
.policy-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.addon-list li,
.clean-list li,
.policy-list li {
    margin-bottom: 8px;
}

/* =========================
   Forms
========================= */

.form-card {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 42px);
}

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

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

label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--text);
    font-weight: 850;
}

input,
textarea,
select {
    width: 100%;
    color: var(--text);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 14px;
}

textarea {
    resize: vertical;
    min-height: 130px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(217, 204, 235, 0.62);
}

.check-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.check-group label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
    font-weight: 750;
}

.check-group input {
    width: auto;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

/* =========================
   Contact Links
========================= */

.contact-links {
    display: grid;
    gap: 12px;
    max-width: 760px;
    margin: 28px auto 0;
}

.contact-links a,
.contact-links span {
    display: block;
    padding: 16px 18px;
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
}

/* =========================
   Schedule Button + Section
========================= */

.nav .nav-cta {
    color: var(--bg-black);
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border: 1px solid rgba(243, 214, 155, 0.6);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(199, 162, 122, 0.22);
}

.nav .nav-cta:hover {
    transform: translateY(-1px);
}

.schedule-section {
    text-align: center;
}

.hero-photo {
    max-width: 430px;
    margin: 0 auto;
}