/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE — Luxury theme
═══════════════════════════════════════════════════════════════ */

.ct-hero {
    position: relative;
    height: 52vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -84px;
    padding-top: 84px;
    overflow: hidden;
}
.ct-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: ct-kenburns 24s ease infinite alternate;
}
@keyframes ct-kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,25,15,0.35) 0%, rgba(10,25,15,0.55) 50%, rgba(10,25,15,0.88) 100%);
    z-index: 1;
}
.ct-hero-shine {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 3;
    animation: ct-shimmer 3.5s ease-in-out infinite;
}
@keyframes ct-shimmer {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}
.ct-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 720px;
}
.ct-hero-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(197,168,90,0.45);
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
}
.ct-hero-title {
    font-size: clamp(34px, 5.5vw, 56px);
    color: white;
    margin-bottom: 16px;
    font-family: var(--font-serif);
    line-height: 1.12;
}
.ct-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

/* Channel cards */
.ct-channels-section {
    margin-top: -48px;
    position: relative;
    z-index: 20;
    padding-bottom: 20px;
}
.ct-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 992px) {
    .ct-channels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ct-channels-grid { grid-template-columns: 1fr; }
}
.ct-channel-card {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(197,168,90,0.22);
    border-radius: 16px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(18,60,36,0.1);
    transition: transform 0.45s cubic-bezier(.4,0,.2,1), box-shadow 0.45s ease, border-color 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}
.ct-channel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(18,60,36,0.14);
    border-color: rgba(197,168,90,0.45);
}
.ct-channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #1a5c34);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
    transition: transform 0.35s ease;
}
.ct-channel-card:hover .ct-channel-icon { transform: scale(1.08); }
.ct-channel-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--primary);
}
.ct-channel-card p {
    font-size: 12.5px;
    color: var(--gray-dark);
    line-height: 1.55;
    margin: 0;
}

/* Main split */
.ct-main-section { padding: 56px 0 72px; }
.ct-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 992px) {
    .ct-main-grid { grid-template-columns: 1fr; }
}

/* Form */
.ct-form-card {
    background: var(--white);
    border-radius: 22px;
    padding: 36px 34px;
    box-shadow: 0 20px 60px rgba(18,60,36,0.1);
    border: 1px solid rgba(197,168,90,0.18);
    position: relative;
    overflow: hidden;
}
.ct-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}
.ct-form-title {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: var(--font-serif);
}
.ct-form-desc {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 28px;
    line-height: 1.65;
}
.ct-success-banner {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border: 1px solid rgba(29,170,96,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.ct-success-banner i { color: #1daa60; font-size: 18px; margin-top: 2px; }
.ct-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .ct-form-grid { grid-template-columns: 1fr; }
}
.ct-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ct-form-group label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--gray-dark);
}
.ct-form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-sans);
    transition: var(--transition);
}
.ct-form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197,168,90,0.15);
}
.ct-form-full { grid-column: 1 / -1; }
.ct-form-actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Office panel */
.ct-office-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.ct-office-image {
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    box-shadow: var(--shadow-hover);
    position: relative;
}
.ct-office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.ct-office-image:hover img { transform: scale(1.06); }
.ct-office-image-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(18,60,36,0.88);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}
.ct-office-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}
.ct-office-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
    font-family: var(--font-serif);
}
.ct-office-card p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}
.ct-office-hours {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 18px;
}
.ct-office-hours strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    margin-bottom: 6px;
}
.ct-office-hours span {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.6;
}
.ct-map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--border-color);
    height: 240px;
    box-shadow: var(--shadow);
}
.ct-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Gallery strip */
.ct-gallery-section {
    padding: 0 0 72px;
}
.ct-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .ct-gallery-grid { grid-template-columns: 1fr; }
}
.ct-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.ct-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.ct-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.ct-gallery-item:hover img { transform: scale(1.07); }
.ct-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18,60,36,0.35) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.ct-gallery-item:hover::after { opacity: 1; }

/* Trust bar */
.ct-trust-bar {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 28px 0 56px;
}
.ct-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.ct-trust-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.ct-trust-item i { color: var(--accent); }

/* WhatsApp CTA */
.ct-wa-section { padding-bottom: 80px; }
.ct-wa-card {
    background: linear-gradient(135deg, #eefdf4 0%, #f4fbf7 100%);
    border: 1px solid #c9ebd4;
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 12px 40px rgba(37,211,102,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ct-wa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(37,211,102,0.12);
}
@media (max-width: 600px) {
    .ct-wa-card { flex-direction: column; text-align: center; }
}
.ct-wa-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.ct-wa-body { flex: 1; }
.ct-wa-body h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #123c24;
    font-family: var(--font-serif);
}
.ct-wa-body p {
    font-size: 14px;
    color: #1a5c34;
    margin: 0;
    line-height: 1.6;
}
.ct-wa-btn {
    background: #25d366;
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.ct-wa-btn:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* FAQ */
.ct-faq-section {
    background: linear-gradient(180deg, #f4f7f0, var(--bg-warm));
    padding: 72px 0;
    border-top: 1px solid var(--border-color);
}
.ct-faq-grid {
    max-width: 760px;
    margin: 0 auto;
}
.ct-faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.3s ease;
}
.ct-faq-item:hover { border-color: rgba(197,168,90,0.4); }
.ct-faq-item summary {
    padding: 16px 22px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    list-style: none;
}
.ct-faq-item summary::-webkit-details-marker { display: none; }
.ct-faq-item summary i { color: var(--accent); font-size: 12px; }
.ct-faq-answer {
    padding: 0 22px 16px;
    font-size: 13.5px;
    color: var(--gray-dark);
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin: 0 22px 16px;
}

/* Scroll reveal */
.ct-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(.4,0,.2,1), transform 0.75s cubic-bezier(.4,0,.2,1);
}
.ct-reveal.ct-visible {
    opacity: 1;
    transform: none;
}
.ct-reveal-d1 { transition-delay: 0.08s; }
.ct-reveal-d2 { transition-delay: 0.16s; }
.ct-reveal-d3 { transition-delay: 0.24s; }

.field-hint {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
}

.traveller-count-input {
    max-width: 120px;
}

.traveller-counts-row.ct-form-full {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 768px) {
    .traveller-counts-row.ct-form-full {
        grid-template-columns: 1fr;
    }
}
