/* Local Fonts - Sharp Luxury Theme */
@font-face { font-family: 'Bodoni Moda'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/bodoni-moda-400.woff2') format('woff2'); }
@font-face { font-family: 'Bodoni Moda'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/bodoni-moda-700.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/jost-300.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/jost-400.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/jost-500.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/jost-600.woff2') format('woff2'); }


/* Base Styles & Variables - Premium Modern Aesthetic */
:root {
    --primary: #B8904D;
    /* Refined Gold */
    --primary-hover: #9E7A3E;
    --text-main: #1A1A1A;
    /* Deep Charcoal for maximum contrast/legibility */
    --text-light: #595959;
    --bg-main: #FFFFFF;
    --bg-light: #FCFAF2;
    /* Soft Champagne - very premium */
    --bg-light-alt: #F7F5EE;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Jost', sans-serif;
    --border-color: #E6E1D6;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    /* Large base font for seniors */
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--text-main);
    overflow-wrap: break-word;
    hyphens: manual;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-light-alt {
    background-color: var(--bg-light-alt);
}

.highlight {
    color: var(--primary);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Custom Glassmorphism Component */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    border-radius: 12px;
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    white-space: normal;
    /* Allow text to wrap if it's too long */
    max-width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(184, 144, 77, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 8px 25px rgba(184, 144, 77, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.25rem;
}

/* Pulse animation for main CTA */
@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 144, 77, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(184, 144, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 144, 77, 0);
    }
}

.cta-pulse {
    animation: ctaPulse 3s infinite;
}

/* Top Bar */
.top-bar {
    background-color: var(--text-main);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    font-size: 0.95rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-link {
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.logo-text span {
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.2rem;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 1.05rem;
    transition: var(--transition);
}

.main-nav a:not(.btn):hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-main);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 10px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 20px;
}

.mobile-menu-btn.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-btn.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background blur */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 144, 77, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-signal {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    padding: 10px;
    position: relative;
}

.hero-img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.floating-badge .icon {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Premium Hero Enhancements */
.premium-hero-card {
    position: relative;
    padding: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    border: 1px solid rgba(184, 144, 77, 0.3);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.premium-hero-img {
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.premium-badge {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 400px;
    justify-content: center;
    background: linear-gradient(to right, #1A1A1A, #333333);
    color: #fff;
    border: 1px solid var(--primary);
    padding: 18px 25px;
    text-align: center;
}

.premium-badge strong {
    font-weight: 400;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.glow-effect {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
}

.top-glow {
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    opacity: 0.3;
    filter: blur(15px);
}

.bottom-glow {
    bottom: 20%;
    left: -20px;
    width: 80px;
    height: 80px;
    opacity: 0.2;
    filter: blur(20px);
}

/* Ensure sections have spacing */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 750px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2.8rem;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
}

/* Features/Trust Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
}

.feature-card .icon-circle {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    border: 1px solid var(--border-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-body);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Process Section */
.process-path {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Connecting line */
.process-path::before {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 30px;
    width: 2px;
    background: var(--border-color);
    z-index: 0;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    width: 62px;
    height: 62px;
    min-width: 62px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    box-shadow: 0 0 0 8px var(--bg-light-alt);
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding: 35px;
    text-align: left;
}

.step-content h3 {
    font-size: 1.6rem;
    font-family: var(--font-body);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.category-image {
    width: 140px;
    min-width: 140px;
    background-color: var(--bg-light-alt);
    background-size: cover;
    background-position: center;
    position: relative;
}

.cat-antiques { background-image: url('../img/cat_antiques.png'); }
.cat-jewelry { background-image: url('../img/cat_jewelry.png'); }
.cat-watches { background-image: url('../img/cat_watches.png'); }
.cat-silver { background-image: url('../img/cat_silver.png'); }
.cat-coins { background-image: url('../img/cat_coins.png'); }
.cat-exclusive { background-image: url('../img/cat_exclusive.png'); }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.05), transparent);
}

.category-info {
    padding: 30px;
}

.category-info h3 {
    font-size: 1.4rem;
    font-family: var(--font-body);
    margin-bottom: 10px;
    word-wrap: break-word;
}

/* About / Location Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 20px;
}

.check-list {
    margin-top: 30px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.image-composition {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.comp-img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    right: -10px;
    bottom: -10px;
    background: var(--text-main);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: none;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    flex: 1;
}

.author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.author span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
}

.accordion-item {
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
}

.accordion-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding: 0 30px 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact / Lead Gen Form */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-main) 0%, var(--bg-light) 100%);
}

.contact-wrapper {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.form-shadow {
    box-shadow: var(--shadow-lg);
}

.contact-text {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light-alt);
}

.contact-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.lead-description {
    font-size: 1.15rem;
    color: var(--text-light);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.info-box.subtle {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-box .icon {
    font-size: 1.8rem;
}

.info-box p {
    color: var(--text-light);
    margin: 0;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    font-family: var(--font-body);
    color: var(--text-main);
}

.ghl-form-embed {
    width: 100%;
    min-height: 750px;
    flex: 1;
}

/* Footer */
.footer {
    background-color: var(--text-main);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    max-width: 350px;
    font-size: 1.05rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.footer h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.95rem;
}

.privacy-note {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Mobile Floating CTA (Hidden on desktop) */
.mobile-floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsiveness */
@media (max-width: 1024px) {
    html {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-container,
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .form-container {
        padding: 40px 20px;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .process-path::before {
        left: 25px;
        /* Adjust line position */
    }

    .step-indicator {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.4rem;
        box-shadow: 0 0 0 6px var(--bg-light-alt);
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        /* Below header */
        left: 0;
        width: 100%;
        height: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        overflow: hidden;
        transition: height 0.4s ease;
        box-shadow: var(--shadow-md);
    }

    .main-nav.active {
        height: calc(100vh - 80px);
    }

    .main-nav .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-text,
    .section-header {
        text-align: center;
    }

    .hero-actions {
        align-items: center;
    }

    section {
        padding: 60px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 15px auto;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    /* Show floating CTA on mobile */
    .mobile-floating-cta {
        display: block;
    }

    body {
        padding-bottom: 60px;
        /* Make room for floating CTA */
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
        left: 0;
        margin: 0 auto;
        width: max-content;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .premium-badge {
        width: 95%;
        padding: 12px 15px;
        bottom: -15px;
    }

    .premium-badge strong {
        font-size: 0.95rem;
    }

    .hero-img {
        aspect-ratio: 1/1;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-text {
        padding: 40px 20px;
    }

    .form-container {
        padding: 30px 15px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .contact-info-boxes {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .info-box {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .process-step {
        gap: 15px;
    }

    .step-content {
        padding: 20px 15px;
    }

    .category-card {
        flex-direction: column;
    }

    .category-image {
        width: 100%;
        height: 150px;
    }
} 
 /* Custom Form Styles */
.custom-form-wrapper {
    width: 100%;
    position: relative;
    min-height: 500px;
}

.anthonys-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.4s ease;
}

.anthonys-form.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.required {
    color: #d9534f;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 144, 77, 0.15);
}

.form-control::placeholder {
    color: #adb5bd;
}

/* Custom File Upload */
.file-upload-group {
    margin-top: 10px;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}

.file-upload-btn:hover {
    border-color: var(--primary);
    background: rgba(184, 144, 77, 0.05);
}

.file-input {
    display: none;
}

.file-icon {
    font-size: 1.5rem;
}

.file-text {
    font-weight: 500;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
}

.remove-file {
    color: #d9534f;
    cursor: pointer;
    font-weight: bold;
    padding: 0 5px;
}

/* Custom Checkbox */
.checkbox-group {
    margin-top: 5px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    top: 2px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--primary);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-light);
}

/* Submit Button & Spinner */
.submit-btn {
    position: relative;
    margin-top: 15px;
    height: 56px;
}

.w-100 {
    width: 100%;
}

.spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

.submit-btn .btn-text.hidden {
    opacity: 0;
    visibility: hidden;
}

.submit-btn .spinner:not(.hidden) {
    display: block;
}
.submit-btn .spinner.hidden {
    display: none;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success Message */
.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-light-alt);
    border-radius: 12px;
    padding: 40px;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.form-success.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: -1;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.form-success h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
