:root {
    /* Color System: Mediterranean Premium */
    --c-brand: #0f172a;       /* Dark premium slate for text/headers */
    --c-brand-light: #334155; 
    --c-accent: #0284c7;      /* Vivid aegean blue */
    --c-accent-hover: #0369a1;
    --c-accent-soft: #e0f2fe;
    
    --c-bg: #fdfdfc;          /* Warm elegant white (not pure white) */
    --c-bg-alt: #f1f5f9;      /* Light gray for section alternating */
    --c-surface: #ffffff;
    
    --c-border: #e2e8f0;
    --c-border-light: #f1f5f9;
    
    --c-text-main: #1e293b;
    --c-text-muted: #64748b;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Layout */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--c-text-main);
    background-color: var(--c-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    color: var(--c-brand);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    color: var(--c-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
.editorial-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px; /* Pill shaped for premium feel */
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--font-sans);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--c-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background-color: var(--c-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--c-brand);
    border-color: var(--c-border);
}

.btn-outline:hover {
    border-color: var(--c-brand);
    background-color: var(--c-bg-alt);
}

/* Global Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--c-text-muted);
}

/* Navbar */
#navbar {
    background: rgba(253, 253, 252, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.25rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-brand-light);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--c-accent);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 860px) {
    .nav-links { display: none; }
}

/* Hero Section */
#hero {
    background-color: var(--c-bg);
    overflow: hidden;
    padding: 4rem 2rem 6rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-content {
    padding-right: 2rem;
}

#hero h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.text-highlight {
    color: var(--c-accent);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    margin-bottom: 3rem;
    max-width: 90%;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-trust-signals {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-brand-light);
}

.trust-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--c-accent);
    border-radius: 50%;
    margin-right: 8px;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
}

.hero-image {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-color: #e2e8f0; /* Placeholder color before img loads */
    box-shadow: var(--shadow-lg);
}

.floating-stat-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--c-surface);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.floating-stat-card strong {
    font-size: 1.25rem;
    color: var(--c-brand);
    margin-bottom: 0.25rem;
}

.floating-stat-card span {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-text-content { padding-right: 0; text-align: center; }
    .hero-subheadline { margin: 0 auto 3rem; }
    .hero-trust-signals { justify-content: center; }
    .floating-stat-card { left: 50%; transform: translateX(-50%); bottom: -1rem; text-align: center; }
    #hero h1 { font-size: 3.5rem; }
    .hero-image { height: 400px; }
}

/* Benefits Section (Minimal Text Cards) */
#benefits {
    background-color: var(--c-bg-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: transparent;
    padding: 2rem 0;
    border-top: 1px solid var(--c-border);
}

.benefit-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--c-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Editorial Lifestyle */
#why-greece {
    background: var(--c-surface);
}

.lifestyle-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lifestyle-images {
    position: relative;
    height: 600px;
}

.lifestyle-main-img {
    width: 80%;
    height: 85%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: absolute;
    top: 0;
    right: 0;
    background-color: #cbd5e1;
}

.lifestyle-sub-img {
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--c-surface);
    background-color: #94a3b8;
}

.lifestyle-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.lifestyle-body p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    padding-left: 1.5rem;
    border-left: 2px solid var(--c-accent-soft);
}

.feature-item strong {
    color: var(--c-brand);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

@media (max-width: 900px) {
    .lifestyle-container { grid-template-columns: 1fr; gap: 3rem; }
    .lifestyle-images { height: 400px; }
    .lifestyle-title { font-size: 2.5rem; }
}

/* Testimonials Carousel */
.testimonials-section {
    background-color: var(--c-bg-alt);
    padding: 6rem 1rem;
    border-top: 1px solid var(--c-border);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.test-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 3px solid #fff;
}

.test-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--c-brand);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
}

.test-author {
    font-weight: 700;
    color: var(--c-brand);
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.test-meta {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.35rem;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-arrow {
    background: transparent;
    border: 1px solid var(--c-border);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--c-text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: var(--c-brand);
    color: #fff;
    border-color: var(--c-brand);
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--c-accent);
}

@media (max-width: 768px) {
    .test-quote { font-size: 1.25rem; }
}

/* Gallery Strip */
#gallery {
    padding: 1rem;
    background-color: var(--c-bg);
}

.gallery-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-img-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: #e2e8f0;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-img-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Jobs Board Filter System */
.jobs-section {
    background-color: var(--c-bg-alt);
}

.filters-panel {
    background: var(--c-surface);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.filter-group input, 
.filter-group select {
    width: 100%;
    padding: 0.875rem 1.2rem;
    background: var(--c-bg-alt);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--c-text-main);
    transition: var(--transition-smooth);
    outline: none;
    appearance: none;
}

.filter-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.filter-group input:focus, 
.filter-group select:focus {
    background: var(--c-surface);
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px var(--c-accent-soft);
}

@media (max-width: 900px) {
    .filters-panel { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .filters-panel { grid-template-columns: 1fr; }
}

.results-info {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--c-text-muted);
}
.results-info strong {
    color: var(--c-brand);
}

/* Premium Job Cards */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.job-card {
    background: var(--c-surface);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--c-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-border);
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tag-perm { background-color: #f1f5f9; color: #475569; }
.tag-remote { background-color: var(--c-accent-soft); color: var(--c-accent-hover); }
.tag-relo { border: 1px solid var(--c-border); color: #0f172a; }

.job-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.job-client {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 500;
}

.job-desc {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.job-actions {
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--c-border-light);
    padding-top: 1.5rem;
}

.job-actions .btn {
    flex: 1;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

/* FAQ Accordion */
.faq-section {
    background-color: var(--c-surface);
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--c-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.75rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    color: var(--c-brand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: var(--c-accent);
}

.accordion-header .icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.accordion-header .icon::before,
.accordion-header .icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s;
}

.accordion-header .icon::before {
    top: 7px; left: 0; width: 16px; height: 2px;
}
.accordion-header .icon::after {
    top: 0; left: 7px; width: 2px; height: 16px;
}

.accordion-header.active .icon::after {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding-bottom: 1.75rem;
    color: var(--c-text-muted);
    font-size: 1.05rem;
}

/* Final CTA */
#final-cta {
    background-color: var(--c-brand);
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* QUICK APPLY SECTION */
.quick-apply-section {
    padding: 6rem 0;
    background-color: var(--c-surface);
}

.quick-apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quick-benefits {
    list-style: none;
    padding: 0;
}

.quick-benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.quick-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-accent);
    font-weight: bold;
}

.quick-apply-form-box {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Footer */
.site-footer {
    background-color: var(--c-surface);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--c-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

.brand-logo-footer {
    height: 70px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.footer-tagline {
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-brand-light);
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    color: var(--c-text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--c-accent);
}

.disclaimer {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--c-border);
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 3rem; }
    .footer-nav { grid-template-columns: 1fr; }
    .quick-apply-grid { grid-template-columns: 1fr; gap: 3rem; }
    .quick-apply-form-box { padding: 2rem; }
}

/* Premium Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal-dialog {
    min-height: calc(100% - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem;
}

.modal-content {
    background-color: var(--c-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    max-width: 760px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.apply-modal-content {
    max-width: 640px;
}

@keyframes modalScaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal, .close-apply-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--c-bg-alt);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--c-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.close-modal:hover, .close-apply-modal:hover {
    background: var(--c-border);
    color: var(--c-brand);
}

/* Job Modal Typography */
.modal-title-text, .modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}

.modal-client {
    color: var(--c-text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 2rem;
}

.modal-grid-item {
    display: flex;
    flex-direction: column;
}

.modal-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-muted);
    margin-bottom: 0.25rem;
}

.modal-val {
    font-weight: 500;
    color: var(--c-brand);
}

.modal-desc {
    color: var(--c-text-main);
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Premium Forms */
.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.apply-subtitle {
    font-size: 1.05rem;
}

.premium-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.span-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--c-brand);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--c-text-main);
    transition: var(--transition-smooth);
    outline: none;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px var(--c-accent-soft);
    background: var(--c-surface);
}

.read-only-input {
    background-color: var(--c-bg-alt);
    color: var(--c-text-muted);
    cursor: default;
}

.form-legal {
    text-align: center;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-top: 1rem;
}

.submit-btn {
    width: 100%;
}

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

.success-mark {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.success-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 640px) {
    .premium-form .form-grid { grid-template-columns: 1fr; }
    .modal-content { padding: 2rem 1.5rem; margin: 1rem; }
    .modal-dialog { margin: 1rem; }
}
