/* ================================
   PAGE-SPECIFIC STYLES
   ================================ */

/* ================================
   ABOUT US PAGE
   ================================ */

.about-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-intro h2 {
    color: var(--brand-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mission-section {
    background: linear-gradient(135deg, rgba(0, 149, 217, 0.1), rgba(0, 149, 217, 0.05));
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.mission-section h2 {
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services-section {
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
}

.service-item h3 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-h4);
    font-weight: 600;
}

.service-item p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: var(--font-size-caption);
    line-height: 1.4;
}

.service-item a {
    font-size: var(--font-size-caption);
    padding: 6px 12px;
    margin: 0;
}

/* ================================
   TEAM SECTION
   ================================ */

.team-section {
    margin-top: 2rem;
}

.team-section h2 {
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.team-member {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.team-member h3 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.team-member .position {
    color: #666;
    font-style: italic;
    margin: 0;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--brand-primary);
    image-rendering: -webkit-optimize-contrast;
}

/* ================================
   TOUR GUIDES SECTION
   ================================ */

.guides-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.guides-section h2 {
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.guides-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.guide-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.guide-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.guides-description {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ================================
   CONTACT INFORMATION SECTION
   ================================ */

.contact-info-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 149, 217, 0.05), rgba(0, 149, 217, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(0, 149, 217, 0.1);
}

.contact-info-section h2 {
    color: var(--brand-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.company-details h3 {
    color: var(--brand-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item strong {
    color: var(--brand-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0.25rem 0;
    color: #333;
    line-height: 1.4;
}

.contact-item a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 149, 217, 0.05), rgba(0, 149, 217, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(0, 149, 217, 0.1);
}

.services-section h2 {
    color: var(--brand-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item strong {
    color: var(--brand-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-item p {
    margin: 0.5rem 0 1rem 0;
    color: #333;
    line-height: 1.4;
}

.service-item .btn {
    margin-top: auto;
}

/* ================================
   VACATION PLANNING SECTION
   ================================ */

.vacation-planning-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
}

.vacation-planning-section h2 {
    color: var(--brand-primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.planning-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.planning-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.planning-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.planning-step h3 {
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.planning-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ================================
   ARTICLE TEMPLATE STYLES
   ================================ */

.article-meta-style {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-section);
    color: var(--text-quaternary);
    font-size: var(--font-size-caption);
}

.article-content-style {
    line-height: 1.6;
    margin: 1.5rem 0;
}

.article-content-style p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.article-navigation {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-section);
}

.article-back-style {
    display: inline-block;
    margin-top: 2rem;
    color: var(--brand-primary);
    text-decoration: none;
}

.article-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.content-container .article-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* ================================
   TOUR DETAIL STYLES
   ================================ */

.tour-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.tour-header {
    margin-bottom: 2rem;
}

.tour-header h1 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: var(--font-size-hero);
}

.tour-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.tour-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--glass-bg-card);
    backdrop-filter: var(--glass-blur);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.tour-info p {
    margin: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.tour-info strong {
    color: var(--text-dark);
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: var(--font-size-h3);
}

.simple-list {
    margin: 1rem 0;
}

.simple-list li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.5;
}

.itinerary-item {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-divider);
}

.itinerary-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: var(--font-size-base);
}

.itinerary-item p {
    color: var(--text-quaternary);
    margin: 0;
}

.included-excluded {
    margin: 1.5rem 0;
}

.included-excluded h4 {
    margin: 1rem 0 0.5rem 0;
    color: var(--text-dark);
}

.included-excluded ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.included-excluded li {
    margin-bottom: 0.3rem;
    color: var(--text-quaternary);
}

.booking-section {
    background: #f8f9fa;
    border: 1px solid var(--border-section);
    padding: 1.5rem;
    margin: 2rem 0;
}

.booking-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.booking-section p {
    color: var(--text-quaternary);
    margin-bottom: 1rem;
}

/* ================================
   MICE PAGE SPECIAL TEXT
   ================================ */

.mice-contact-text {
    color: var(--text-quaternary);
}