@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 75%, #475569 100%);
    min-height: 100vh;
}

.farm-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

.container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
}

.card {
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.input-field {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    outline: none;
}

.input-field:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.input-large {
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-primary:active {
    transform: translateY(0px);
}

.btn-secondary {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(100, 116, 139, 0.39);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.5);
}

.slide {
    display: none;
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.progress-bar {
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    height: 1rem;
    border-radius: 9999px;
}

.progress-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    height: 1rem;
    backdrop-filter: blur(4px);
}

.farm-icon {
    color: #10b981;
    filter: drop-shadow(0 4px 6px rgba(16, 185, 129, 0.4));
}

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

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

.field-label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.success-checkmark {
    animation: checkmarkPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes checkmarkPop {
    0% { transform: scale(0) rotate(0deg); }
    80% { transform: scale(1.1) rotate(360deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #10b981;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
}

/* Header Styles */
.modern-header {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.95) 0%, 
        rgba(5, 150, 105, 0.95) 50%, 
        rgba(4, 120, 87, 0.95) 100%);
    padding: 2rem;
}

.header-content {
    position: relative;
    z-index: 2;
}

/* Top Navigation */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.brand-icon i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.brand-info h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #064e3b;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.brand-info span {
    font-size: 0.9rem;
    color: #065f46;
    font-weight: 500;
}

.nav-status {
    display: flex;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
}

.status-indicator span {
    color: #064e3b;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Progress Timeline */
.progress-timeline {
    margin-bottom: 2rem;
}

.timeline-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 2px;
    width: 33.33%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-step.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.timeline-step.completed {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.step-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-step.active .step-marker {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.timeline-step.completed .step-marker {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.step-marker i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.timeline-step.active .step-marker i {
    color: #10b981;
    transform: scale(1.1);
}

.step-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.step-info p {
    font-size: 0.8rem;
    color: #065f46;
    margin: 0;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 1.5rem 0;
}

.welcome-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #064e3b;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.welcome-section p {
    font-size: 1.1rem;
    color: #065f46;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-header {
        padding: 1.5rem;
    }

    .top-nav {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .brand-info h1 {
        font-size: 1.5rem;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .timeline-step {
        padding: 0.75rem;
    }

    .step-marker {
        width: 45px;
        height: 45px;
    }

    .step-marker i {
        font-size: 1rem;
    }

    .welcome-section h2 {
        font-size: 1.6rem;
    }

    .welcome-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .step-info h3 {
        font-size: 0.9rem;
    }

    .step-info p {
        font-size: 0.75rem;
    }
}

/* Progress Bar Styles */
.progress-section {
    margin-bottom: 2.5rem;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    color: #bef264;
    font-size: 1.125rem;
    margin-top: 0.75rem;
    font-weight: 600;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Slide Styles */
.slide-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.slide-header .farm-icon {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
}

.slide-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.slide-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Form Styles */
.form-section {
    margin-bottom: 1.5rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Thank You Page */
.thank-you {
    text-align: center;
}

.thank-you h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.thank-you p {
    color: #6b7280;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.success-message {
    background: linear-gradient(to right, #dcfce7, #d1fae5);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid #bbf7d0;
    margin-bottom: 1.5rem;
}

.success-message p {
    color: #166534;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

.state-zip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .slide-header h2 {
        font-size: 1.875rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Form Section Cards */
.form-section-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border: 2px solid rgba(226, 232, 240, 0.5);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-section-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.1);
}

.section-icon {
    color: #10b981;
    font-size: 1.5rem;
    margin-right: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.section-header h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

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

.field-label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.label-icon {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

/* Enhanced Checkbox Design */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.checkbox-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(16, 185, 129, 0.05));
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.2);
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.checkbox-content i {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.checkbox-content span {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    color: #10b981;
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content i {
    color: #10b981;
    transform: scale(1.2);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content span {
    color: #10b981;
}

.checkbox-card:has(input[type="checkbox"]:checked) {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Print Styles */
.print-section {
    background: linear-gradient(to right, #f0fdf4, #dcfce7);
    border: 2px solid #bbf7d0;
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.print-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.print-title {
    color: #166534;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.btn-print {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-print:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(5, 150, 105, 0.3);
}

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

.info-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem;
    border-radius: 0.75rem;
    border-left: 4px solid #10b981;
}

.info-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 600;
    margin-top: 0.25rem;
}

@media print {
    body * {
        visibility: hidden;
    }
    .print-content, .print-content * {
        visibility: visible;
    }
    .print-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}

/* Searchable Dropdown Styles */
.searchable-dropdown {
    position: relative;
}

.dropdown-input {
    width: 100%;
    position: relative;
    z-index: 2;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.dropdown-option:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

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

/* Guide Dropdown Özel Stilleri */
.guide-option-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.guide-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.guide-details {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.dropdown-option:hover .guide-name {
    color: #10b981;
}

.dropdown-option:hover .guide-details {
    color: #059669;
}

.dropdown-option.no-results {
    color: #6b7280;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

/* Customer Dropdown Styles */
.customer-option-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.customer-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.customer-details {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.3;
}

.dropdown-option:hover .customer-name {
    color: #10b981;
}

.dropdown-option:hover .customer-details {
    color: #059669;
}

/* Full Name Dropdown Specific Styles */
#fullNameDropdown .dropdown-option {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

#fullNameDropdown .dropdown-option:last-child {
    border-bottom: none;
}

#fullNameDropdown .dropdown-option:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dropdown-option.completed-record {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-left: 4px solid #10b981;
    opacity: 0.8;
    position: relative;
}

.dropdown-option.completed-record::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent #10b981 transparent transparent;
}

.dropdown-option.completed-record:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    opacity: 1;
}

.completed-badge {
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem;
    margin-left: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-option.completed-record:hover .completed-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Mount Options Grid Styles */
.mount-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.mount-option-btn {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.mount-option-btn:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(16, 185, 129, 0.05));
    border-color: #10b981;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.12);
}

.mount-option-btn.selected {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15);
}

.mount-option-btn span {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.3;
}

.mount-option-btn.selected span {
    color: #10b981;
}

@media (max-width: 768px) {
    .mount-options-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.4rem;
    }
    
    .mount-option-btn {
        padding: 0.6rem 0.75rem;
        min-height: 45px;
    }
    
    .mount-option-btn span {
        font-size: 0.8rem;
    }
}

/* Signature Canvas Styles */
.signature-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    border: 2px solid rgba(226, 232, 240, 0.6);
    border-radius: 1.25rem;
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.signature-container:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.12);
}

.signature-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(5, 150, 105, 0.02));
    pointer-events: none;
    border-radius: inherit;
}

#signatureCanvas {
    border: 3px solid rgba(16, 185, 129, 0.2);
    border-radius: 1rem;
    background: #ffffff;
    cursor: crosshair;
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(16, 185, 129, 0.08);
    position: relative;
    z-index: 1;
}

#signatureCanvas:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
}

#signatureCanvas:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(16, 185, 129, 0.15),
        0 8px 25px rgba(16, 185, 129, 0.2);
}

.signature-instructions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.signature-instructions p {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.signature-instructions p:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-1px);
}

.signature-instructions i {
    color: #10b981;
    font-size: 1.1rem;
    min-width: 16px;
}

.signature-controls {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.signature-controls .btn-secondary {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.04));
    border: 2px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.signature-controls .btn-secondary:hover {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.08));
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

.signature-controls .btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

#signatureError {
    margin-top: 1.5rem;
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: #dc2626;
    font-weight: 600;
}

/* Responsive Signature Canvas */
@media (max-width: 768px) {
    .signature-container {
        padding: 1.5rem;
        margin: 1rem 0;
        border-radius: 1rem;
    }
    
    #signatureCanvas {
        width: 100%;
        max-width: 100%;
        border-width: 2px;
    }
    
    .signature-instructions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.25rem;
    }
    
    .signature-instructions p {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }
    
    .signature-controls {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }
    
    .signature-controls .btn-secondary {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .signature-container {
        padding: 1.25rem;
        margin: 0.75rem 0;
    }
    
    .signature-instructions p {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .signature-instructions i {
        font-size: 1rem;
    }
    
    .signature-controls .btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* iOS Safari Optimizations */
@supports (-webkit-touch-callout: none) {
    .btn-primary, .btn-secondary {
        -webkit-appearance: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    #submitButton {
        -webkit-appearance: none !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        pointer-events: auto !important;
    }
    
    #submitButton:disabled {
        pointer-events: none;
        cursor: not-allowed;
    }
    
    #signatureCanvas {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        touch-action: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .signature-container {
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
        touch-action: none;
    }
    
    /* iOS Safari'de form submit'i engelle */
    form {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* iOS Safari'de zoom'u engelle */
    input, textarea, select {
        font-size: 16px !important;
        -webkit-appearance: none;
    }
    
    /* iOS Safari'de slide geçişlerini optimize et */
    .slide {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* iOS Safari'de button animasyonlarını optimize et */
    .btn-primary:active, .btn-secondary:active {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Radio Button Styles for Primos Meat */
.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 1rem 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    justify-content: center;
    min-height: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.radio-option:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(16, 185, 129, 0.08));
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked + .radio-custom + .radio-label {
    color: #10b981;
    font-weight: 700;
}

.radio-option input[type="radio"]:checked {
    & ~ .radio-label {
        color: #10b981;
        font-weight: 700;
    }
}

.radio-option:has(input[type="radio"]:checked) {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.08));
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2), 0 8px 25px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-label {
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    user-select: none;
}

/* Special styling for Yes option */
.radio-option:first-child:has(input[type="radio"]:checked) {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.08));
    border-color: #10b981;
}

.radio-option:first-child:has(input[type="radio"]:checked) .radio-custom::after {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Special styling for No option */
.radio-option:last-child:has(input[type="radio"]:checked) {
    background: linear-gradient(145deg, rgba(107, 114, 128, 0.15), rgba(75, 85, 99, 0.08));
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.2), 0 8px 25px rgba(107, 114, 128, 0.15);
}

.radio-option:last-child:has(input[type="radio"]:checked) .radio-custom {
    border-color: #6b7280;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.radio-option:last-child:has(input[type="radio"]:checked) .radio-custom::after {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.radio-option:last-child:has(input[type="radio"]:checked) .radio-label {
    color: #6b7280;
}

/* Primos Fields Container */
.primos-fields {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.03), rgba(5, 150, 105, 0.02));
    border: 2px solid rgba(16, 185, 129, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.primos-fields.show {
    display: block !important;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .radio-group {
        gap: 0.75rem;
    }
    
    .radio-option {
        padding: 0.875rem 1.25rem;
        min-height: 55px;
    }
    
    .radio-custom {
        width: 22px;
        height: 22px;
        margin-right: 0.75rem;
    }
    
    .radio-custom::after {
        width: 10px;
        height: 10px;
    }
    
    .radio-label {
        font-size: 1rem;
    }
    
    .primos-fields {
        padding: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .radio-option {
        padding: 0.75rem 1rem;
        min-height: 50px;
    }
    
    .radio-custom {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
    }
    
    .radio-custom::after {
        width: 8px;
        height: 8px;
    }
    
    .radio-label {
        font-size: 0.95rem;
    }
}

/* Email Buttons Styles */
.email-section {
    background: linear-gradient(to right, #f0f9ff, #dbeafe);
    border: 2px solid #93c5fd;
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#emailButtonsSection {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.email-section h3 {
    color: #1e40af;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-align: center;
}

.email-buttons-grid {
    display: flex !important;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-email {
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 140px;
}

.btn-email:hover:not(:disabled) {
    transform: translateY(-2px);
}

.btn-email:active:not(:disabled) {
    transform: translateY(0px);
}

.btn-email:disabled {
    cursor: not-allowed !important;
    opacity: 0.5 !important;
    transform: none !important;
    background: #9ca3af !important;
    color: #6b7280 !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

.btn-email:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #9ca3af !important;
}

.btn-email i {
    font-size: 1rem;
}

/* Customer Email Button - Blue like print button */
.btn-email.customer {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.btn-email.customer:hover:not(:disabled) {
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

/* Conroe Email Button - Green like print button */
.btn-email.conroe {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-email.conroe:hover:not(:disabled) {
    box-shadow: 0 4px 8px rgba(5, 150, 105, 0.3);
}

/* Taxidermy Email Button - Orange */
.btn-email.taxidermy {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-email.taxidermy:hover:not(:disabled) {
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

/* Email Button Loading State */
.btn-email.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-email.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: emailButtonSpin 1s linear infinite;
}

@keyframes emailButtonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Email Status Messages */
#emailStatus {
    min-height: 24px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    color: #374151;
}

#emailStatus.success {
    color: #059669;
}

#emailStatus.error {
    color: #dc2626;
}

#emailStatus.loading {
    color: #d97706;
}

/* Responsive Email Buttons */
@media (max-width: 768px) {
    .email-section {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .email-buttons-grid {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-email {
        width: 100%;
        max-width: 250px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .email-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .email-section {
        padding: 1rem;
    }
    
    .btn-email {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .btn-email i {
        font-size: 0.9rem;
    }
    
    .email-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
} 