/* ETG Hotels Plugin Styles */

/* Search Form */
.etg-search-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.etg-search-form h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 24px;
}

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

.etg-form-row:last-child {
    margin-bottom: 0;
}

.etg-form-group {
    flex: 1;
    position: relative;
}

.etg-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.etg-help-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.etg-form-group input,
.etg-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.etg-form-group input:focus,
.etg-form-group select:focus {
    outline: none;
    border-color: #0073aa;
}

.etg-form-group input.etg-region-selected {
    border-color: #00a000;
    background-color: #f0fff0;
}

.etg-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.etg-suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.etg-suggestion-item:hover {
    background: #f5f5f5;
}

.etg-child-age-select {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.etg-form-actions {
    margin-top: 20px;
}

.etg-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.etg-btn-primary {
    background: #0073aa;
    color: #fff;
}

.etg-btn-primary:hover {
    background: #005a87;
}

.etg-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.etg-btn-secondary:hover {
    background: #e0e0e0;
}

.etg-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.etg-search-icon {
    margin-right: 5px;
}

/* Results Container */
.etg-hotels-results {
    margin-top: 30px;
}

.etg-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.etg-results-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.etg-results-count {
    font-size: 14px;
    color: #666;
}

.etg-results-container {
    display: flex;
    gap: 30px;
}

/* Sidebar Filters */
.etg-sidebar-filters {
    flex: 0 0 250px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.etg-filter-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.etg-filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.etg-filter-section h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
}

.etg-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.etg-price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.etg-price-inputs input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.etg-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.etg-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.etg-checkbox input {
    margin-right: 8px;
    cursor: pointer;
}

/* Hotels List */
.etg-hotels-list {
    flex: 1;
}

.etg-hotels-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.etg-hotel-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.etg-hotel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.etg-hotel-image {
    flex: 0 0 250px;
    position: relative;
    overflow: hidden;
}

.etg-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.etg-no-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.etg-hotel-info {
    flex: 1;
    padding: 20px;
}

.etg-hotel-name {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.etg-hotel-stars {
    color: #ffa500;
    font-size: 16px;
    margin-bottom: 10px;
}

.etg-hotel-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.etg-hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.etg-amenity {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px;
    color: #555;
}

.etg-hotel-price {
    flex: 0 0 180px;
    padding: 20px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.etg-price-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.etg-price-amount {
    font-size: 28px;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 5px;
}

.etg-price-total {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.etg-view-details {
    width: 100%;
}

/* Loading */
.etg-loading {
    text-align: center;
    padding: 60px 20px;
}

.etg-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* No Results */
.etg-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 8px;
}

.etg-no-results p {
    color: #666;
    font-size: 16px;
    margin: 10px 0;
}

/* Modal */
.etg-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.etg-modal-content {
    background-color: #fff;
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.etg-modal-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.etg-modal-close:hover {
    color: #000;
}

/* Hotel Details */
.etg-hotel-details {
    padding: 30px;
}

.etg-hotel-details h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333;
}

.etg-hotel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.etg-hotel-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.etg-hotel-description {
    margin: 20px 0;
    line-height: 1.6;
    color: #555;
}

.etg-amenities-groups {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.etg-amenity-group h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.etg-amenity-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.etg-amenity-group li {
    padding: 5px 0;
    color: #666;
    font-size: 14px;
}

.etg-amenity-group li:before {
    content: "✓ ";
    color: #0073aa;
    font-weight: bold;
}

/* Rates */
.etg-rates-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.etg-rate-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    background: #f9f9f9;
}

.etg-rate-card h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.etg-rate-price {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
    margin: 10px 0;
}

.etg-rate-price-night {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .etg-results-container {
        flex-direction: column;
    }
    
    .etg-sidebar-filters {
        position: static;
        flex: 1;
    }
}

@media (max-width: 768px) {
    .etg-form-row {
        flex-direction: column;
    }
    
    .etg-hotel-card {
        flex-direction: column;
    }
    
    .etg-hotel-image {
        flex: 0 0 200px;
    }
    
    .etg-hotel-price {
        flex: 1;
    }
    
    .etg-modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .etg-hotel-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* VERSION 2.0 - Improved styles */
.etg-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.etg-hotel-card:hover .etg-hotel-image img {
    transform: scale(1.05);
}

.etg-hotel-short-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 8px 0;
    max-height: 60px;
    overflow: hidden;
}

.etg-hotel-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.etg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.etg-gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.etg-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.etg-info-item {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.etg-amenities-section,
.etg-rates-section,
.etg-hotel-location-info {
    margin-top: 25px;
}

.etg-rate-header {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 4px 4px 0 0;
    margin: -15px -15px 10px -15px;
}

.etg-rate-pricing {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.etg-rate-price-night {
    font-size: 18px;
    color: #667eea;
    font-weight: 500;
}

.etg-rate-price-total {
    font-size: 20px;
    color: #333;
    text-align: right;
}

.etg-rate-price-total small {
    font-size: 12px;
    color: #999;
    display: block;
    font-weight: normal;
}

/* ========================================
   POPUP IMPROVEMENTS - Clean & Modern
   ======================================== */

/* Header Section */
.etg-hotel-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.etg-hotel-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333;
}

.etg-hotel-stars {
    font-size: 20px;
    color: #ffc107;
    margin-bottom: 8px;
}

.etg-hotel-address {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Gallery - 3 Columns Grid */
.etg-hotel-gallery {
    margin-bottom: 30px;
}

.etg-hotel-gallery h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.etg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.etg-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
    cursor: pointer;
}

.etg-gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Description Section */
.etg-hotel-description {
    margin-bottom: 25px;
}

.etg-hotel-description h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.etg-hotel-description p {
    line-height: 1.6;
    color: #555;
}

/* Location Info Grid */
.etg-hotel-location-info {
    margin-bottom: 25px;
}

.etg-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.etg-info-item {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    border-left: 3px solid #667eea;
}

/* Amenities - Clean 3 Column Grid */
.etg-amenities-section {
    margin-bottom: 25px;
}

.etg-amenities-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

/* Hide old amenities groups */
.etg-amenities-groups {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.etg-amenity-group {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.etg-amenity-group h4 {
    display: none !important;
}

.etg-amenity-group ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: contents !important;
}

.etg-amenity-group ul li {
    background: #f0f4ff;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    border-left: 3px solid #667eea;
}

.etg-amenity-group ul li::before {
    content: '' !important;
}

/* Rooms Section - Modern Cards */
.etg-rates-section {
    margin-bottom: 20px;
}

.etg-rates-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.etg-rates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.etg-rate-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s;
}

.etg-rate-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.etg-rate-header {
    flex: 1;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.etg-rate-header h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.etg-rate-meal {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    margin: 8px 0;
}

.etg-rate-amenities {
    font-size: 13px;
    color: #666;
    margin: 8px 0 0 0;
}

.etg-rate-pricing {
    flex-shrink: 0;
    text-align: right;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.etg-rate-price-night {
    font-size: 16px;
    color: #667eea;
    font-weight: 500;
}

.etg-rate-price-total {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.etg-rate-price-total small {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    display: block;
    margin-top: 3px;
}

/* Modal Scrollbar */
.etg-modal-content::-webkit-scrollbar {
    width: 8px;
}

.etg-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.etg-modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.etg-modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ========================================
   LIGHTBOX pentru Galerie
   ======================================== */

.etg-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.etg-lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.etg-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.etg-lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.etg-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.etg-lightbox-prev,
.etg-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    user-select: none;
}

.etg-lightbox-prev {
    left: 30px;
}

.etg-lightbox-next {
    right: 30px;
}

.etg-lightbox-prev:hover,
.etg-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.etg-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Cursor pointer pentru imagini din galerie */
.etg-gallery-grid img {
    cursor: zoom-in !important;
}

/* ========================================
   PAGINATION
   ======================================== */

#etg-pagination {
    margin: 40px 0;
    display: none; /* Hidden by default, shown by JS */
}

.etg-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.etg-page-btn,
.etg-page-num {
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 44px;
    text-align: center;
}

.etg-page-btn:hover,
.etg-page-num:hover {
    border-color: #667eea;
    background: #f0f4ff;
    color: #667eea;
}

.etg-page-active {
    background: #667eea !important;
    color: white !important;
    border-color: #667eea !important;
    cursor: default;
}

.etg-page-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.etg-page-dots {
    padding: 0 8px;
    color: #999;
    font-size: 18px;
}

.etg-page-prev,
.etg-page-next {
    font-size: 14px;
    padding: 10px 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .etg-pagination {
        gap: 5px;
    }
    
    .etg-page-btn,
    .etg-page-num {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 38px;
    }
    
    .etg-page-prev,
    .etg-page-next {
        padding: 8px 15px;
    }
}

.etg-pagination-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.etg-pagination-info {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.etg-page-btn[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.etg-page-btn[disabled]:hover {
    border-color: #e0e0e0;
    background: white;
    color: #333;
}

/* Rating Badge on Image */
.etg-rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

.etg-hotel-distance {
    color: #666;
    font-size: 13px;
    margin: 5px 0;
}

/* Adjust image container for badge */
.etg-hotel-image {
    position: relative;
}

/* Loading Progress Bar */
.etg-loading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.etg-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin: 10px 0;
}

.etg-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.etg-progress-text {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

/* ========================================
   BOOKING FORM
   ======================================== */

.etg-booking-form-section {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px solid #667eea;
}

.etg-booking-form-section h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 22px;
}

.etg-booking-intro {
    color: #666;
    margin-bottom: 25px;
}

.etg-booking-form {
    background: white;
    padding: 25px;
    border-radius: 8px;
}

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

.etg-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.etg-form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.etg-form-group input,
.etg-form-group select,
.etg-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.etg-form-group input:focus,
.etg-form-group select:focus,
.etg-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.etg-form-group input[required] + label::after,
.etg-form-group label:has(+ input[required])::after {
    content: ' *';
    color: #e74c3c;
}

.etg-btn-large {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
}

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

/* ========================================
   LOCATION AUTOCOMPLETE
   ======================================== */

.etg-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #667eea;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.etg-suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.etg-suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.etg-suggestion-item:hover {
    background: #f0f4ff;
}

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

.etg-suggestion-icon {
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.etg-suggestion-text {
    flex: 1;
}

.etg-suggestion-text strong {
    display: block;
    color: #333;
    font-size: 15px;
    margin-bottom: 2px;
}

.etg-suggestion-text small {
    display: block;
    color: #999;
    font-size: 13px;
}

.etg-form-group {
    position: relative;
}

.etg-help-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}
