/* Main Styles for Montenegro Transfer App - Dark Theme */
:root {
    --primary-color: #2196F3; /* Daha canlı mavi renk */
    --secondary-color: #00BFA5; /* Daha parlak turkuaz */
    --accent-color: #607D8B; /* Daha açık gri-mavi ton */
    --text-color: #e0e0e0;
    --bg-color: #121212; /* Ana arka plan rengi */
    --card-bg: #1e1e1e; /* Kart arka plan rengi */
    --light-gray: #2a2a2a; 
    --dark-gray: #9e9e9e;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --border-radius: 4px;
}

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

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

.app-container {
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 100%;
    width: auto;
    max-height: 25px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

/* Hero Section */
.hero {
    padding: 4rem 1rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(25, 25, 25, 0.5));
    z-index: 1;
}

.hero h2, .hero p, .hero-cta {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.hero-cta {
    margin-top: 1.5rem;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}

/* Page Title */
.page-title {
    padding: 1.5rem 1rem;
    text-align: center;
    background-color: var(--bg-color);
    color: white;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(25, 25, 25, 0.6));
    z-index: 1;
}

.page-title h2, .page-title p {
    position: relative;
    z-index: 2;
}

.page-title h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-title p {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin-top: -1rem;
    position: relative;
    z-index: 5;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    color: white;
}

.btn i {
    font-size: 1.2rem;
}

.primary {
    background-color: var(--primary-color);
    color: white;
}

.secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Features */
.features {
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.feature-card-1 {
    background-image: url('images/feature_bg_1.jpg');
    background-size: cover;
    background-position: center;
}

.feature-card-2 {
    background-image: url('images/feature_bg_2.jpg');
    background-size: cover;
    background-position: center;
}

.feature-card-3 {
    background-image: url('images/feature_bg_3.jpg');
    background-size: cover;
    background-position: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i, .feature-card h3, .feature-card p {
    position: relative;
    z-index: 2;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    font-weight: 400;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 1.5rem;
    background-color: var(--card-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    justify-content: space-around;
}

.footer-links a {
    color: var(--dark-gray);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Fixed Footer Navigation */
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    display: flex;
    justify-content: space-around;
    padding: 0.8rem 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-gray);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.nav-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item:hover {
    color: var(--primary-color);
    background-color: rgba(196, 153, 118, 0.1);
}

/* Form Styles */
.form-container {
    padding: 1.5rem;
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #444;
    background-color: #252525;
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(196, 153, 118, 0.2);
}

input[type="date"], input[type="time"] {
    appearance: none;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card {
    flex: 1;
    border: 2px solid #444;
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--card-bg);
}

.option-card.selected {
    border-color: var(--primary-color);
    background-color: rgba(196, 153, 118, 0.15);
}

.option-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.option-card.selected i {
    color: var(--primary-color);
}

.form-footer {
    margin-top: 2rem;
}

.form-footer .btn {
    width: 100%;
}

/* Login Page Styles */
.login-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    border: 1px solid #333;
}

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

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
}

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

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #333;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #444;
}

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

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

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

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #444;
}

.login-separator span {
    padding: 0 10px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 400;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    padding: 0.8rem;
}

.google {
    background-color: #d8b08d; /* Açık altın tonu */
    color: black;
}

.facebook {
    background-color: #a67c52; /* Koyu altın tonu */
    color: white;
}

.register-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.register-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* QR Code Styles */
.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-color);
}

.qr-code {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: white; /* QR kodu beyaz arka plana ihtiyaç duyar */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 100%;
}

.qr-code img {
    max-width: 100%;
    height: auto;
}

.qr-info {
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.qr-info p {
    margin-bottom: 0.5rem;
}

.qr-actions {
    margin-top: 1rem;
}

.info-text {
    margin-bottom: 1rem;
    max-width: 500px;
}

#qr-link {
    color: var(--primary-color);
    word-break: break-all;
}

/* Panel Styles */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #1a237e;
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.tab-navigation {
    display: flex;
    background-color: var(--card-bg);
    border-bottom: 1px solid #444;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    font-weight: bold;
}

.request-list {
    padding: 1rem;
}

.request-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid #333;
}

.request-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.request-info {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.request-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.request-actions button {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    background-color: var(--primary-color);
    color: black;
}

/* Error Styles */
.error {
    border-color: #e74c3c !important;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* Mobile-First Design */
@media (max-width: 480px) {
    .hero h2, .page-title h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .app-container {
        max-width: 600px;
    }
    
    .action-buttons {
        flex-direction: row;
    }
    
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-options {
        flex-direction: row;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .app-container {
        max-width: 800px;
    }
}

/* Profile Page Styles */
.profile-container {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    margin: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #333;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.profile-avatar {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.profile-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.premium {
    background-color: var(--primary-color);
    color: black;
}

.edit-profile {
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: var(--dark-gray);
    box-shadow: none;
    border: 1px solid #444;
}

.edit-profile:hover {
    background-color: var(--light-gray);
    transform: none;
}

.account-details {
    padding: 1rem 0;
}

.detail-row {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    width: 40%;
    font-weight: 500;
    color: var(--dark-gray);
}

.detail-value {
    width: 60%;
    font-weight: 400;
}

.commission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background-color: #252525;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.commission-table-container {
    background-color: #252525;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.commission-table-container h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.commission-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.commission-table th, 
.commission-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.commission-table th {
    color: var(--dark-gray);
    font-weight: 500;
}

.commission-table tbody tr:last-child td {
    border-bottom: none;
}

.note {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.note i {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    color: var(--primary-color);
}

.transaction-list {
    margin-top: 1rem;
}

.transaction-item {
    display: flex;
    padding: 1rem;
    background-color: #252525;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.transaction-info {
    flex: 1;
}

.transaction-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.transaction-title h4 {
    font-size: 1rem;
    font-weight: 500;
}

.transaction-date {
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.transaction-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.transaction-amount {
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.positive {
    color: #2ecc71;
}

.negative {
    color: #e74c3c;
}

/* Settings Page Styles */
.settings-container {
    padding: 1.5rem;
    margin: 1.5rem;
}

.settings-section {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #333;
    overflow: hidden;
}

.section-title {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.setting-item {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    flex: 1;
    font-weight: 500;
}

.setting-control {
    min-width: 120px;
    text-align: right;
}

.select-dropdown {
    background-color: #252525;
    color: var(--text-color);
    border: 1px solid #444;
    padding: 0.6rem;
    border-radius: var(--border-radius);
    width: 100%;
    font-size: 0.9rem;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239e9e9e' 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 0.75rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.range-slider {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

#commission-value {
    margin-left: 0.5rem;
}

.input-with-icon {
    position: relative;
    display: inline-block;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
}

.input-text {
    width: 100%;
    padding: 0.6rem;
    padding-left: 2rem;
    background-color: #252525;
    border: 1px solid #444;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

.settings-footer {
    margin-top: 2rem;
    text-align: center;
}

.save-settings {
    padding: 0.8rem 2rem;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .profile-container,
    .settings-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .commission-stats {
        grid-template-columns: 1fr;
    }
    
    .transaction-item {
        flex-direction: column;
    }
    
    .transaction-amount {
        margin-top: 0.5rem;
    }
    
    .transaction-title {
        flex-direction: column;
    }
    
    .transaction-date {
        margin-top: 0.3rem;
    }
}

/* Input number spinners/clear button removal */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-clear-button,
input[type="number"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Input containers with enhanced styling */
.input-container.enhanced {
    position: relative;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-container.enhanced:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.input-container.enhanced input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 5px 30px 5px 5px;
    color: var(--text-color);
    font-size: 1rem;
}

.input-container.enhanced input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.input-container.enhanced i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

/* Search form styling improvements */
.search-form {
    padding: 1.5rem;
}

.search-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.search-form .form-group {
    flex: 1;
    min-width: 0; /* Fix for flex items overflowing */
}

.search-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Fixing tab styling */
.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(0, 0, 0, 0.1);
}

.search-tab {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.search-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
}

/* Improving action buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.search-btn {
    flex: 1.5;
}

#request-quote {
    flex: 1;
}

@media (max-width: 768px) {
    .search-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .search-btn, #request-quote {
        width: 100%;
    }
} 