/* ===== RECEIVE ITEMS PAGE STYLES - FOLLOWING MAIN SITE DESIGN SYSTEM ===== */

/* Import main styles variables */
:root {
    /* Color Palette - Professional */
    --primary-color: #1e293b;
    --secondary-color: #334155;
    --accent-color: #c49b61;
    --accent-light: #d4af37;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-dark: #1e293b;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --gradient-primary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #c49b61 0%, #d4af37 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --border-radius: 12px;
    --border-radius-small: 8px;
    
    /* Shadows - Professional */
    --shadow-light: 0 4px 20px rgba(30, 41, 59, 0.08);
    --shadow-medium: 0 8px 30px rgba(30, 41, 59, 0.12);
    --shadow-heavy: 0 16px 50px rgba(30, 41, 59, 0.15);
    --shadow-elegant: 0 2px 10px rgba(30, 41, 59, 0.05);
    
    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.6s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION STYLES (SAME AS MAIN SITE) ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-elegant);
}

.navbar.scrolled {
    background: rgba(30, 41, 59, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-fast);
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link.btn-primary {
    background: var(--gradient-accent);
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(196, 155, 97, 0.25);
    transition: var(--transition-fast);
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 97, 0.35);
}

.nav-link.btn-primary::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== RECEIVE HERO SECTION ===== */
.receive-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.6)), 
                url('assets/images/documents.png') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.4;
    z-index: -1;
}

.receive-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

.receive-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.1;
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--accent-light);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
}

.receive-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NOTICE SECTION ===== */
.notice-section {
    padding: 80px 0;
    background: white;
}

.notice-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background: #fef3cd;
    padding: 40px 50px;
    border-radius: var(--border-radius);
    border-left: 5px solid #f59e0b;
    box-shadow: var(--shadow-light);
}

.notice-icon {
    font-size: 3rem;
    color: #f59e0b;
}

.notice-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #92400e;
    margin-bottom: 15px;
    font-weight: 600;
}

.notice-text {
    font-size: 1.1rem;
    color: #92400e;
    line-height: 1.8;
    margin: 0;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.03;
    transition: var(--transition-smooth);
}

.process-step:hover::before {
    left: 0;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== FORM SECTION ===== */
.form-section {
    padding: var(--section-padding);
    background: white;
}

.form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Form Container */
.form-container {
    background: white;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form Status */
.form-status {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-fast);
    margin-bottom: 30px;
}

.form-status.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.status-message {
    background: #10b981;
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-light);
}

.status-message.error {
    background: #ef4444;
}

/* Form Styles */
.receive-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(30, 41, 59, 0.1);
    border-radius: var(--border-radius-small);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(196, 155, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

/* Error Messages */
.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-5px);
    transition: var(--transition-fast);
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* Submit Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 6px 20px rgba(196, 155, 97, 0.25);
    letter-spacing: 0.025em;
    width: 100%;
    max-width: 350px;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 155, 97, 0.35);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.1);
    color: var(--primary-color);
    border: 2px solid rgba(30, 41, 59, 0.1);
}

.btn-secondary:hover {
    background: rgba(30, 41, 59, 0.15);
    border-color: rgba(30, 41, 59, 0.2);
    transform: translateY(-2px);
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: var(--transition-fast);
}

.spinner.show {
    opacity: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== INFORMATION SIDEBAR ===== */
.info-container {
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius-small);
    transition: var(--transition-fast);
}

.info-item:hover {
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Card */
.contact-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-buttons .btn {
    width: 100%;
}

/* ===== FOOTER STYLES (SAME AS MAIN SITE) ===== */
.footer {
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elegant);
}

.social-link img {
    width: 24px;
    height: 24px;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom span {
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .info-container {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .notice-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .receive-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .form-grid {
        gap: 40px;
    }
    
    .info-card {
        padding: 30px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 25px 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .notice-card {
        padding: 30px 20px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
}