/* === CONTACT PAGE === */
.contact-section {
    padding: 4rem 0;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

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

.luxury-contact-form .form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: 'Poppins', sans-serif;
}

.luxury-contact-form .form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.luxury-contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.luxury-contact-form .btn-luxury {
    width: 100%;
    justify-content: center;
}

/* === CONTACT INFO === */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), #2a2a2a);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-info-card h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-card > p {
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-details h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.contact-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-social h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-links-contact a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-hours {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.contact-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-hours h4 i {
    color: var(--secondary-color);
}

.contact-hours ul {
    list-style: none;
}

.contact-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.contact-hours ul li:last-child {
    border-bottom: none;
}

.contact-hours ul li span:first-child {
    font-weight: 500;
}

.contact-hours ul li span:last-child {
    color: var(--text-gray);
}

/* === MAP SECTION === */
.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-wrapper iframe {
    display: block;
}

/* === CONTACT CTA === */
.contact-cta {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 1200px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.3rem; }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .categories-scroll {
        padding: 2rem 1rem;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .destinations-masonry {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .highlight-content {
        padding: 2rem 0;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-slider {
        height: 95vh;
        min-height: 700px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 20px;
    }
    
    .slider-nav.next {
        right: 20px;
    }
    
    .slider-dots {
        bottom: 100px;
        gap: 10px;
        padding: 12px 18px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .btn-luxury {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-hero {
        height: 50vh;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content p {
        font-size: 1.1rem;
    }
    
    .category-card {
        min-width: 250px;
    }
    
    .experience-large-card {
        height: 400px;
    }
    
    .experience-overlay h3 {
        font-size: 1.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-item {
        height: 300px;
    }
    
    .story-featured-image {
        height: 300px;
    }
    
    .story-featured-content {
        padding: 2rem;
    }
    
    .story-featured-content h2 {
        font-size: 1.8rem;
    }
    
    .story-excerpt {
        font-size: 1rem;
    }
    
    .story-article {
        padding: 1.5rem;
    }
    
    .story-article-image {
        min-height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-cta .btn-luxury {
        margin-top: 1rem;
    }
    
    .filter-bar {
        gap: 0.8rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .search-filter-bar {
        flex-direction: column;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-masonry {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        margin-bottom: 2rem;
    }
    
    .package-content h3 {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .luxury-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 80px;
        gap: 8px;
        padding: 10px 16px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-card {
        min-width: 220px;
    }
    
    .category-image {
        height: 280px;
    }
    
    .experience-overlay {
        padding: 1.5rem;
    }
    
    .experience-overlay h3 {
        font-size: 1.3rem;
    }
    
    .destination-masonry-content h3 {
        font-size: 1.5rem;
    }
    
    .story-meta {
        gap: 1rem;
    }
    
    .story-meta span {
        font-size: 0.85rem;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .package-details {
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-luxury {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.4rem;
    }
}

/* === AOS ANIMATION LIBRARY COMPATIBILITY === */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* === LOADING STATES === */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* === PRINT STYLES === */
@media print {
    .navbar-glass,
    .hamburger,
    .scroll-top,
    .newsletter-cta,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
}
