/* ATG Components Styles */

/* Common Button Styles */
.atg-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.atg-btn-primary {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.atg-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

.atg-btn-secondary {
    background: transparent;
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
}

.atg-btn-secondary:hover {
    background: #FF6B6B;
    color: white;
}

.atg-btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.atg-btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* ATG Header Styles */
.atg-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.atg-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
}

.atg-logo img {
    height: 50px;
    width: auto;
}

.atg-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B6B;
    text-decoration: none;
}

.atg-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.atg-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.atg-nav a:hover {
    color: #FF6B6B;
}

.atg-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B6B;
    transition: width 0.3s ease;
}

.atg-nav a:hover::after {
    width: 100%;
}

.atg-header-cta {
    display: flex;
    gap: 15px;
}

.atg-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .atg-mobile-toggle {
        display: block;
    }
    
    .atg-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .atg-nav.active {
        display: block;
    }
    
    .atg-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .atg-header-cta {
        margin-top: 20px;
        flex-direction: column;
    }
}

/* ATG Footer Styles */
.atg-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 20px;
}

.atg-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.atg-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.atg-footer-section h3 {
    color: #FF6B6B;
    margin-bottom: 20px;
    font-size: 18px;
}

.atg-footer-section ul {
    list-style: none;
    padding: 0;
}

.atg-footer-section li {
    margin-bottom: 10px;
}

.atg-footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.atg-footer-section a:hover {
    color: #FF6B6B;
}

.atg-newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.atg-newsletter-input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.atg-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.atg-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.atg-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.atg-social-links a:hover {
    background: #FF6B6B;
    transform: translateY(-2px);
}

.atg-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* ATG Hero Section Styles */
.atg-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.atg-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.atg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.atg-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.atg-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.atg-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.4;
}

.atg-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.atg-hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.atg-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.atg-feature i {
    font-size: 20px;
    color: #FFD700;
}

@media (max-width: 768px) {
    .atg-hero-title {
        font-size: 2.5rem;
    }
    
    .atg-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .atg-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .atg-hero-features {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

/* ATG Tours Grid Styles */
.atg-tours-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.atg-tours-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.atg-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.atg-filter-btn {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.atg-filter-btn:hover,
.atg-filter-btn.active {
    background: #FF6B6B;
    border-color: #FF6B6B;
    color: white;
}

.atg-search-box {
    position: relative;
    min-width: 250px;
}

.atg-search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
}

.atg-search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.atg-tours-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.atg-tours-grid[data-columns="2"] {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.atg-tours-grid[data-columns="3"] {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.atg-tours-grid[data-columns="4"] {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.atg-tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.atg-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.atg-tour-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.atg-tour-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.atg-tour-card:hover .atg-tour-thumb {
    transform: scale(1.1);
}

.atg-tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.atg-tour-meta {
    display: flex;
    gap: 15px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.atg-tour-content {
    padding: 20px;
}

.atg-tour-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.atg-tour-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.atg-tour-title a:hover {
    color: #FF6B6B;
}

.atg-tour-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.atg-tour-location i {
    color: #FF6B6B;
}

.atg-tour-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.atg-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.atg-price {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B6B;
}

.atg-price-free {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
    background: #d4edda;
    padding: 4px 8px;
    border-radius: 4px;
}

.atg-no-tours {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.atg-no-tours i {
    font-size: 48px;
    color: #FF6B6B;
    margin-bottom: 20px;
}

.atg-tours-pagination {
    text-align: center;
    margin-top: 40px;
}

.atg-tours-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.atg-tours-pagination .page-numbers:hover,
.atg-tours-pagination .page-numbers.current {
    background: #FF6B6B;
    border-color: #FF6B6B;
    color: white;
}

/* ATG Contact Form Styles */
.atg-contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.atg-contact-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.atg-contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.atg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.atg-form-group {
    margin-bottom: 20px;
}

.atg-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.atg-form-group input,
.atg-form-group textarea,
.atg-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.atg-form-group input:focus,
.atg-form-group textarea:focus,
.atg-form-group select:focus {
    outline: none;
    border-color: #FF6B6B;
}

.atg-form-group input.error,
.atg-form-group textarea.error,
.atg-form-group select.error {
    border-color: #dc3545;
}

.atg-form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
}

.atg-form-response .success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 6px;
}

.atg-form-response .error {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .atg-form-row {
        grid-template-columns: 1fr;
    }
    
    .atg-contact-form {
        padding: 20px;
    }
    
    .atg-tours-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .atg-search-box {
        min-width: auto;
    }
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 480px) {
    .atg-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .atg-hero-title {
        font-size: 2rem;
    }
    
    .atg-btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
}
#pcmProceedName {
  margin-left: -4px !important;
}

/* Search Results Dropdown */
#atg-search-results {
    position: absolute;
    z-index: 9999;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 450px;
    max-height: 400px;
    overflow-y: auto;
    font-family: Arial, sans-serif;
}
