/* ========================================
   BP Way — CSS (converted from React/Tailwind)
   ======================================== */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    --background: #000000;
    --foreground: #f5f5f5;
    --accent: hsl(20, 70%, 55%);
    --accent-foreground: #fff;
    --muted-foreground: hsl(25, 10%, 50%);
    --border: hsl(30, 15%, 88%);
    --destructive: hsl(0, 84.2%, 60.2%);
    --card-back-bg: #1a1a2e;
    --green-accent: #8cc540;
    --radius: 0.5rem;
    --font-serif: 'Hind', sans-serif;
    --font-sans: 'Poppins', system-ui, sans-serif;
}

/* Base */
html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Coffee Loader
   ======================================== */
.coffee-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--background);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.coffee-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.coffee-cup {
    position: relative;
    width: 80px;
    height: 96px;
}

.coffee-cup-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 72px;
    border-radius: 0 0 16px 16px;
    border: 2px solid rgba(245, 245, 245, 0.3);
    overflow: hidden;
}

.coffee-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(30, 50%, 25%);
    border-radius: 0 0 12px 12px;
    animation: fill-cup 2.5s ease-in-out infinite;
}

.coffee-foam {
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    border-radius: 50%;
    background-color: hsl(35, 40%, 65%);
    animation: foam-rise 2.5s ease-in-out infinite;
}

.coffee-handle {
    position: absolute;
    right: -6px;
    top: 28px;
    width: 20px;
    height: 32px;
    border-radius: 0 50% 50% 0;
    border: 2px solid rgba(245, 245, 245, 0.3);
    border-left: 0;
}

.steam-wisps {
    position: relative;
    width: 64px;
    height: 32px;
    margin-top: -4px;
}

.steam {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 16px;
    border-radius: 50%;
    background: rgba(245, 245, 245, 0.15);
    animation: steam-rise 1.8s ease-in-out infinite;
}

.steam:nth-child(1) { left: 20%; animation-delay: 0s; }
.steam:nth-child(2) { left: 45%; animation-delay: 0.4s; }
.steam:nth-child(3) { left: 70%; animation-delay: 0.8s; }

.coffee-loader-text {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
    letter-spacing: 0.05em;
    animation: fade-in 0.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes fill-cup {
    0%, 100% { height: 0%; }
    50% { height: 85%; }
}

@keyframes foam-rise {
    0%, 100% { bottom: 0%; opacity: 0; }
    50% { bottom: 80%; opacity: 1; }
}

@keyframes steam-rise {
    0%, 100% { transform: translateY(-4px) scaleY(0.5); opacity: 0; }
    50% { transform: translateY(-18px) scaleY(1.2); opacity: 0.6; }
}

@keyframes fade-in {
    to { opacity: 1; }
}

/* ========================================
   Page Layout (Grid)
   ======================================== */
.page-wrapper {
    position: relative;
    display: grid;
    width: 100vw;
    min-height: 100vh;
    overflow-y: auto;
    align-items: start;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1rem 1fr 1rem;
    overscroll-behavior: contain;
}

@media (min-width: 768px) {
    .page-wrapper {
        grid-template-columns: 2.5rem 1fr 2.5rem;
        grid-template-rows: 1fr minmax(500px, calc(100vh - 200px)) 1fr;
    }
}

@media (min-width: 1024px) {
    .page-wrapper {
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
        align-items: center;
        grid-template-columns: 1fr min(1200px, 100%) 1fr;
        grid-template-rows: 1fr min(740px, calc(100vh - 260px)) 1fr;
    }
}

/* Green glow spots */
.glow-spots {
    pointer-events: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.glow-spot {
    position: absolute;
    border-radius: 50%;
}

.glow-spot-1 {
    top: 0%;
    left: 10%;
    width: 500px;
    height: 500px;
    opacity: 0.3;
    background: radial-gradient(circle, hsl(140, 60%, 40%) 0%, transparent 70%);
    transform: translate(-50%, -20%);
}

.glow-spot-2 {
    top: 2%;
    left: 15%;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    background: radial-gradient(circle, hsl(160, 55%, 35%) 0%, transparent 70%);
}

.glow-spot-3 {
    bottom: -5%;
    right: -5%;
    width: 500px;
    height: 500px;
    opacity: 0.3;
    background: radial-gradient(circle, hsl(130, 50%, 45%) 0%, transparent 70%);
}

.glow-spot-4 {
    bottom: 8%;
    right: 12%;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    background: radial-gradient(circle, hsl(150, 65%, 30%) 0%, transparent 70%);
}

/* Content container */
.content-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    grid-column: 2;
    grid-row: 2;
    padding-top: 1rem;
    pointer-events: auto;
}

@media (min-width: 640px) {
    .content-container {
        gap: 1rem;
        padding-top: 25px;
    }
}

@media (min-width: 1024px) {
    .content-container {
        gap: 1.5rem;
        padding-top: 0;
    }
}

/* ========================================
   Logo Banner
   ======================================== */
.logo-banner {
    width: 100%;
    margin-bottom: 1rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    background: transparent;
}

@media (min-width: 768px) {
    .logo-banner {
        margin-bottom: 0;
    }
}

.logo-banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    position: relative;
    z-index: 10;
}

.logo-banner-header img {
    width: 300px;
    height: auto;
    transition: all 0.5s ease;
}

.menu-button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-button:hover {
    color: #fff;
}

/* Expanded banner content */
.logo-banner-expanded {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out, opacity 0.35s ease-in-out;
}

.logo-banner.expanded .logo-banner-expanded {
    max-height: 300px;
    opacity: 1;
}

.logo-banner-content {
    padding: 0.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .logo-banner-content {
        flex-direction: row;
    }
}

.logo-banner-content .info {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .logo-banner-content .info {
        text-align: left;
    }
}

.logo-banner-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .logo-banner-content h2 {
        font-size: 1.25rem;
    }
}

.logo-banner-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .logo-banner-content p {
        font-size: 0.875rem;
    }
}

.logo-banner-content .links {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .logo-banner-content .links {
        justify-content: flex-start;
    }
}

.logo-banner-content .links a {
    font-size: 0.875rem;
    color: var(--accent);
    text-decoration: none;
}

.logo-banner-content .links a:hover {
    text-decoration: underline;
}

/* ========================================
   Card Nav (Top Bar)
   ======================================== */
.card-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    overflow-x: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .card-nav {
        justify-content: center;
    }
}

.card-nav::-webkit-scrollbar {
    display: none;
}

.card-nav {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.card-nav-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

@media (min-width: 640px) {
    .card-nav-btn {
        font-size: 0.75rem;
    }
}

.card-nav-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.card-nav-btn.active {
    color: #fff;
    background-color: var(--green-accent);
}

/* ========================================
   Gallery — Desktop Horizontal Layout
   ======================================== */
.gallery-horizontal {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 2px solid var(--green-accent);
    flex-shrink: 0;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, border-color 0.3s ease;
    perspective: 1000px;
}

.gallery-card.active {
    border-color: #ffffff;
}

/* Desktop sizes */
@media (min-width: 1280px) {
    .gallery-card {
        width: 9.21875rem;
        height: min(36.875rem, 60vh);
    }
    .gallery-card.active {
        width: 27.65625rem;
    }
}

/* Large Tablet */
@media (min-width: 1024px) and (max-width: 1279px) {
    .gallery-card {
        width: 18%;
        height: min(28rem, 50vh);
    }
    .gallery-card.active {
        width: 46%;
    }
    .gallery-horizontal {
        gap: 0.75rem;
    }
}

/* Card flip inner */
.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.card-flip-inner.flipped {
    transform: rotateY(180deg);
}

/* Card faces */
.card-front,
.card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
    filter: grayscale(100%);
}

.gallery-card.active .card-front img,
.gallery-card:hover .card-front img {
    filter: grayscale(0%);
}

.card-front .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card.active .card-front .gradient-overlay {
    opacity: 1;
}

.card-front .card-label {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card.active .card-front .card-label {
    opacity: 1;
}

/* Card Back */
.card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: var(--card-back-bg);
}

.card-back-video {
    position: relative;
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.card-back-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.card-back-video .coming-soon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-back-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
    padding: 1rem;
    cursor: pointer;
}

.card-back-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-back-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.card-back-info a.card-link {
    font-size: 0.875rem;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.card-back-info a.card-link:hover {
    text-decoration: underline;
}

.card-back-socials {
    display: flex;
    gap: 1rem;
}

.card-back-socials a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.card-back-socials a:hover {
    color: #fff;
}

.card-back-socials svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Gallery — Mobile Grid Layout
   ======================================== */
.gallery-grid {
    display: grid;
    gap: 0.75rem;
    width: 100%;
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 24rem;
        margin: 0 auto;
    }

    .gallery-grid .gallery-card {
        width: 100% !important;
        height: min(16rem, 40vh);
        border-radius: 0.75rem;
    }

    .gallery-grid .gallery-card.flipped-card {
        height: min(32rem, 80vh);
    }

    .content-container {
        margin-top: 40px;
    }
}

/* Small Tablet: 3 columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid .gallery-card {
        width: 100% !important;
        height: min(24rem, 50vh);
        border-radius: 0.75rem;
    }

    .card-back {
        border-radius: 0.75rem;
    }
}

/* Grid card labels */
.gallery-grid .card-front .grid-label {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
}

.gallery-grid .card-front .grid-label p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .gallery-grid .card-front .grid-label p {
        font-size: 0.75rem;
    }
}

.gallery-grid .card-front .gradient-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* Grid card back adjustments */
.gallery-grid .card-back-info h3 {
    font-size: 1rem;
}

@media (min-width: 640px) {
    .gallery-grid .card-back-info h3 {
        font-size: 0.75rem;
    }
    .gallery-grid .card-back-info p {
        font-size: 0.625rem;
        line-height: 1.3;
    }
    .gallery-grid .card-back-info a.card-link {
        font-size: 0.625rem;
    }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    width: 100%;
    padding: 1rem 0;
    margin-top: 1rem;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(128, 128, 128, 0.3);
    margin: 0 auto 1rem;
    max-width: 1200px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    font-size: 0.875rem;
    color: rgba(128, 128, 128, 0.4);
}

@media (min-width: 640px) {
    .footer-content {
        flex-direction: row;
        font-size: 0.75rem;
    }
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(128, 128, 128, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--foreground);
}

.footer-contact svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   Slide-In Menu (Sheet)
   ======================================== */
.sheet-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sheet-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sheet-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 24rem;
    z-index: 101;
    background: #000;
    border-left: 1px solid var(--border);
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .sheet-panel {
        width: 75%;
    }
}

.sheet-overlay.open + .sheet-panel,
.sheet-panel.open {
    transform: translateX(0);
}

.sheet-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    color: var(--foreground);
    opacity: 0.7;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: opacity 0.3s ease;
}

.sheet-close:hover {
    opacity: 1;
}

.sheet-close svg {
    width: 16px;
    height: 16px;
}

.sheet-header {
    margin-bottom: 1.5rem;
}

.sheet-header h2 {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.sheet-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.sheet-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.sheet-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sheet-contact a:hover {
    color: var(--foreground);
}

.sheet-contact svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.sheet-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.sheet-nav a,
.sheet-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.sheet-nav a:hover,
.sheet-nav button:hover {
    color: var(--foreground);
    border-color: var(--accent);
}

.sheet-categories h3 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.sheet-categories nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sheet-categories button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid var(--green-accent);
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 245, 245, 0.8);
    background: none;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.sheet-categories button:hover {
    color: var(--foreground);
}

/* ========================================
   Contact Dialog
   ======================================== */
.dialog-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    padding: 0;
}

@media (min-width: 640px) {
    .dialog-overlay {
        padding: 1rem;
    }
}

.dialog-overlay.open {
    opacity: 1;
    visibility: visible;
}

.dialog-panel {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--background);
    padding: 1.5rem;
    overflow-y: auto;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 640px) {
    .dialog-panel {
        height: auto;
        max-width: 28rem;
        border-radius: 0.5rem;
        border: 1px solid var(--border);
    }
}

.dialog-overlay.open .dialog-panel {
    transform: scale(1);
    opacity: 1;
}

.dialog-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    color: var(--foreground);
    opacity: 0.7;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: opacity 0.3s ease;
}

.dialog-close:hover {
    opacity: 1;
}

.dialog-close svg {
    width: 16px;
    height: 16px;
}

.dialog-header {
    margin-bottom: 1rem;
}

.dialog-header h2 {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.dialog-header p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    padding-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background: var(--background);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}

.form-group textarea {
    resize: none;
    min-height: 6rem;
}

.form-error {
    font-size: 0.75rem;
    color: var(--destructive);
    margin-top: 0.25rem;
}

.form-submit {
    width: 100%;
    border-radius: 0.5rem;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    transition: opacity 0.3s ease;
}

.form-submit:hover {
    opacity: 0.9;
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-submit svg {
    width: 16px;
    height: 16px;
}

/* Success message */
.contact-success {
    text-align: center;
    padding: 2rem 0;
}

.contact-success .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(var(--accent), 0.2);
    background: hsla(20, 70%, 55%, 0.2);
    margin-bottom: 0.5rem;
}

.contact-success .icon-circle svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.contact-success .success-title {
    color: var(--foreground);
    font-weight: 500;
    margin-top: 0.75rem;
}

.contact-success .success-message {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* ========================================
   Utility / Animations
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Error Page */
.error-page {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}

.error-page .error-content {
    text-align: center;
}

.error-page h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.error-page p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.error-page a {
    color: #3b82f6;
    text-decoration: underline;
}

.error-page a:hover {
    color: #1d4ed8;
}
