:root {
    --deep-teal: #2b6c69;
    --deep-teal-rgb: 43, 108, 105;
    --ice-strong: #1b1e7e7;
    --ice-soft: #dff7f6;
    --ice-pale: #eefbfb;
    --ice-foam: #f6ffff;
    --ink: #2b6c69;
    --muted: #375b5c;
    --card-bg: rgba(255, 255, 255, 0.96);
    --line: #b8e6e1;
    --shadow: rgba(43, 108, 105, 0.12);
    --button-primary: #4eb9b5;
    --button-primary-dark: #3d9f9c;
    --button-secondary: #edfdfc;
    --menu-hover: #e8f9f8;
}

body {
    background: linear-gradient(135deg, var(--ice-pale) 0%, var(--ice-soft) 100%);
    color: var(--ink);
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

.frost-main {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 1rem 0;
}

.hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 18px 42px rgba(75, 46, 37, 0.14);
    margin-bottom: 2rem;
}

.contact-page .hero {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 18px 42px rgba(75, 46, 37, 0.14);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-page .hero-copy {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.faq-page .feature-grid {
    grid-template-columns: 1fr;
}

.faq-page .faq-intro {
    text-align: center;
    padding: 2rem 1.5rem;
}

.faq-page .faq-intro h2 {
    margin-bottom: 0.6rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--button-primary);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.hero h1,
.content-section h2 {
    color: var(--deep-teal);
    margin: 0 0 0.8rem;
    font-family: 'Russo One', 'Segoe UI', Arial, sans-serif;
}

.hero p,
.content-section p,
.content-section li {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.button-primary {
    background: var(--button-primary);
    color: #fff;
}

.button-secondary {
    background: var(--button-secondary);
    color: var(--deep-teal);
    border: 1px solid var(--line);
}

.hero-card img,
.info-card img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(75, 46, 37, 0.12);
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 14px 36px var(--shadow);
}

.info-card ol {
    margin: 0.5rem auto;
    padding: 0;
    list-style: none;
    max-width: 620px;
    text-align: center;
}

.info-card li {
    text-align: center;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.contact-form {
    display: block;
    width: 100%;
    max-width: 680px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #fffdf9 0%, var(--ice-soft) 100%);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Ensure consistent font family across the contact form */
.contact-page .contact-form,
.contact-page .contact-form * {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--deep-teal);
    font-weight: 700;
    font-size: 0.95rem;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 0.95rem;
    border: 1px solid rgba(51, 102, 102, 0.28);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.custom-select-trigger:focus {
    outline: none;
    border-color: var(--button-primary);
    box-shadow: 0 0 0 3px rgba(78, 185, 181, 0.18);
}

.custom-select-value {
    color: var(--muted);
    letter-spacing: 0.01em;
}

.custom-select-arrow {
    color: var(--deep-teal);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(51, 102, 102, 0.16);
    border-radius: 1rem;
    box-shadow: 0 14px 30px rgba(14, 33, 38, 0.18);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-4px);
}

.custom-select.open .custom-select-menu {
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 1;
    transform: translateY(0);
    scrollbar-width: thin;
    scrollbar-color: rgba(51, 102, 102, 0.35) transparent;
}

.custom-select.open .custom-select-menu::-webkit-scrollbar {
    width: 8px;
}

.custom-select.open .custom-select-menu::-webkit-scrollbar-thumb {
    background: rgba(51, 102, 102, 0.35);
    border-radius: 999px;
}

.custom-select-option {
    display: block;
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: none;
    border-bottom: 1px solid rgba(122, 154, 160, 0.2);
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover,
.custom-select-option:focus {
    background: rgba(78, 185, 181, 0.08);
    color: var(--deep-teal);
    outline: none;
}

.form-upload-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.file-upload-input {
    display: none;
}

.file-upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--button-primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 8px 18px rgba(78, 185, 181, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.file-upload-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(78, 185, 181, 0.24);
}

.file-upload-caption {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.98rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.date-input {
    appearance: none;
    -webkit-appearance: none;
}

.date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    color: var(--deep-teal);
    opacity: 1;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #cccccc;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--button-primary);
    box-shadow: 0 0 0 3px rgba(78, 185, 181, 0.18);
}

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

.error-message,
.error-name,
.error-email,
.error-phone {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.submit-button {
    background: linear-gradient(135deg, var(--button-primary) 0%, var(--button-primary-dark) 100%);
    color: white;
    padding: 0.85rem 1.4rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-shadow: 0 8px 18px rgba(78, 185, 181, 0.18);
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(78, 185, 181, 0.24);
}

/* Disabled submit button styling */
.submit-button[disabled] {
    background: linear-gradient(135deg, #d1d5db 0%, #bfc3c7 100%);
    color: #475569;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.95;
}

.submit-button[disabled]:hover {
    transform: none;
    box-shadow: none;
}

.info-card {
    background: var(--ice-foam);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
}

.info-card h3 {
    color: var(--deep-teal);
    margin-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.gallery-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px var(--shadow);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(43, 108, 105, 0.16);
}

.gallery-card::after {
    content: "view";
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(43, 108, 105, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.gallery-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-card img:hover {
    transform: scale(1.01);
    opacity: 0.96;
}

.gallery-card-content {
    padding: 1rem;
}

.pricing-title {
    text-align: center;
}

.pricing-title .section-heading {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.pricing-item {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 1.4rem;
    align-items: center;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 24px var(--shadow);
    text-align: left;
    cursor: pointer;
}

.pricing-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
}

.pricing-item-content h3 {
    color: var(--deep-teal);
    margin: 0.2rem 0 0.45rem;
}

.pricing-item-content p {
    margin: 0;
}

.pricing-item-content .pricing-price {
    color: var(--button-primary-dark);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    text-align: left;
}

.pricing-note p {
    margin: 0;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(134, 142, 141, 0.739);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 2000;
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-inner {
    position: relative;
    max-width: min(92vw, 1200px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox img {
    display: block;
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.528);
    background: rgba(134, 142, 141, 0.826);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.gallery-lightbox-close {
    position: absolute;
    top: -0.9rem;
    right: -0.9rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #fff;
    color: var(--deep-teal);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.preview-image-item {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.preview-image-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25);
}

.preview-image-remove:hover {
    background: #b91c1c;
}

.gallery-card-content h3 {
    color: var(--deep-teal);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.frost-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.8rem;
    padding: 2rem 1rem 3rem;
    color: var(--deep-teal);
}

.frost-footer > a {
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--button-secondary);
    border: 1px solid var(--line);
    color: var(--deep-teal);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px var(--shadow);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

header {
    position: relative;
}

.menu-container {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 999;
    display: inline-block;
}

.menu-button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.menu-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 22px;
    height: 22px;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: var(--deep-teal);
}

.menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 180px;
    background: rgba(255, 250, 246, 0.98);
    border-radius: 14px;
    box-shadow: 0 12px 30px var(--shadow);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.menu-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
}

.menu-list li a {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--deep-teal);
    font-weight: 700;
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

.menu-list li a:hover {
    background: var(--menu-hover);
    color: var(--button-primary);
}

@media screen and (max-width: 780px) {
    html {
        font-size: 14px;
    }

    body {
        padding: 0 5px;
    }

    .frost-main {
        padding: 6rem 0.75rem 0;
    }

    .hero,
    .feature-grid,
    .gallery-grid,
    .pricing-item {
        grid-template-columns: 1fr;
    }

    .content-section,
    .hero,
    .contact-form,
    .info-card,
    .gallery-card,
    .faq-page .faq-intro {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-form {
        padding: 1.2rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-actions,
    .social-links,
    .pricing-note {
        gap: 0.6rem;
    }

    .pricing-note {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    .submit-button {
        width: 100%;
    }

    .file-upload-button {
        width: auto;
        max-width: 100%;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p,
    li,
    label,
    input,
    textarea,
    a,
    button {
        font-size: 0.95rem;
    }
}
