/* =========================================================
   CRICKET STATION — CONTACT PAGE STYLES
   Prefix: ct- (Contact) to avoid conflicts
========================================================= */

/* ---------- GLOBAL ---------- */
.ct-label {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}
.ct-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.ct-title span { color: #C9A15A; font-style: italic; }
.ct-section-header { margin-bottom: 4rem; }

/* ---------- SECTION 1: HERO ---------- */
.ct-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ct-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.ct-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}
.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,23,0.65) 0%, rgba(13,27,23,0.92) 100%);
    z-index: 2;
}
.ct-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}
.ct-breadcrumb {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #D1D5DB;
    margin-bottom: 2rem;
}
.ct-breadcrumb a { color: #D1D5DB; transition: color 0.3s; }
.ct-breadcrumb a:hover { color: #C9A15A; }
.ct-breadcrumb span { color: #C9A15A; }
.ct-hero-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.ct-hero-title span { color: #C9A15A; font-style: italic; }
.ct-hero-desc {
    color: #D1D5DB;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* ---------- SECTION 2: CONTACT METHODS ---------- */
.ct-methods { padding: 6rem 0; }
.ct-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.ct-method-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}
.ct-method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,161,90,0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}
.ct-method-card:hover {
    transform: translateY(-10px);
    border-color: #C9A15A;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.ct-method-card:hover::before { opacity: 1; }

.ct-method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.5rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}
.ct-method-card:hover .ct-method-icon {
    background: #C9A15A;
    color: #0D1B17;
    transform: rotate(360deg);
}
.ct-method-card h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.ct-method-primary {
    color: #C9A15A;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.ct-method-meta {
    font-size: 0.75rem;
    color: #D1D5DB;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
}
.ct-method-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
}
.ct-method-card:hover .ct-method-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- SECTION 3: FORM ---------- */
.ct-form-section { padding: 6rem 0; background: #16261F; }
.ct-form-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ct-form-wrap {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 6px;
    padding: 3rem;
}
.ct-form-desc {
    color: #D1D5DB;
    line-height: 1.7;
}

.ct-form { margin-top: 2.5rem; }
.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.ct-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}
.ct-field.full { margin-bottom: 1.5rem; }
.ct-field label {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}
.ct-field label span { color: #C9A15A; }

.ct-field input,
.ct-field select,
.ct-field textarea {
    width: 100%;
    background: #0D1B17;
    border: 1px solid rgba(143,106,53,0.3);
    border-radius: 2px;
    padding: 1rem 1.25rem;
    color: #F5F1E8;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.ct-field textarea {
    resize: vertical;
    min-height: 140px;
}
.ct-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A15A'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    cursor: pointer;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
    border-color: #C9A15A;
    box-shadow: 0 0 0 3px rgba(201,161,90,0.15);
}
.ct-field input::placeholder,
.ct-field textarea::placeholder {
    color: rgba(209,213,219,0.4);
}

.ct-field-error {
    display: block;
    color: #E57373;
    font-size: 0.75rem;
    margin-top: 0.4rem;
    min-height: 1rem;
    letter-spacing: 0.05em;
}

/* Checkbox */
.ct-checkbox label {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #D1D5DB;
    letter-spacing: 0;
    margin-bottom: 0;
}
.ct-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #C9A15A;
    cursor: pointer;
}
.ct-checkbox a {
    color: #C9A15A;
    text-decoration: underline;
    transition: color 0.3s;
}
.ct-checkbox a:hover { color: #E3BE74; }

/* Submit Button */
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
    padding: 1.15rem 2rem;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    border: 1px solid #C9A15A;
    border-radius: 2px;
    color: #0D1B17;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}
.ct-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E3BE74, #C9A15A);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}
.ct-submit-btn:hover::before { opacity: 1; }
.ct-submit-btn:hover {
    box-shadow: 0 15px 40px rgba(201,161,90,0.3);
    transform: translateY(-2px);
}
.ct-submit-btn span,
.ct-submit-btn i {
    position: relative;
    z-index: 1;
}
.ct-submit-btn i {
    font-size: 0.85rem;
    transition: transform 0.4s;
}
.ct-submit-btn:hover i { transform: translate(4px, -4px); }
.ct-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Message */
.ct-success {
    text-align: center;
    padding: 3rem 2rem;
    animation: ct-fadeIn 0.6s ease;
}
.ct-success.hidden { display: none; }
@keyframes ct-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.ct-success-icon {
    font-size: 4rem;
    color: #7FB77E;
    margin-bottom: 1.5rem;
}
.ct-success h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.ct-success p {
    color: #D1D5DB;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.ct-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.75rem;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    color: #F5F1E8;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: all 0.4s;
    border-radius: 2px;
}
.ct-reset-btn:hover {
    background: #C9A15A;
    color: #0D1B17;
    border-color: #C9A15A;
}

/* Info Sidebar */
.ct-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ct-info-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 6px;
    padding: 2.5rem 2rem;
}
.ct-info-card h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.ct-info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,161,90,0.3), transparent);
    margin: 1.5rem 0;
}
.ct-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(143,106,53,0.15);
}
.ct-info-item:last-child { border-bottom: none; }
.ct-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(201,161,90,0.1);
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 0.95rem;
}
.ct-info-item h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.ct-info-item p {
    color: #D1D5DB;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}
.ct-info-item a {
    color: #C9A15A;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}
.ct-info-item a:hover { color: #E3BE74; }

/* Social Grid */
.ct-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.ct-social-grid a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: #0D1B17;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 2px;
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.ct-social-grid a i {
    color: #C9A15A;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
.ct-social-grid a:hover {
    border-color: #C9A15A;
    color: #F5F1E8;
    transform: translateX(4px);
}

/* ---------- SECTION 4: LOCATION ---------- */
.ct-location { padding: 6rem 0; }
.ct-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.ct-map {
    position: relative;
    min-height: 500px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(143,106,53,0.2);
}
.ct-map iframe {
    filter: grayscale(0.4) invert(0.92) hue-rotate(180deg) contrast(0.85);
}
.ct-map-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 3;
}
.ct-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(13,27,23,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 2px;
    color: #C9A15A;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.ct-location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ct-detail-block {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    transition: all 0.4s;
}
.ct-detail-block:hover {
    border-color: rgba(201,161,90,0.4);
    transform: translateX(5px);
}
.ct-detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(201,161,90,0.1);
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.1rem;
}
.ct-detail-block h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.ct-detail-block p {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.6;
}
.ct-hours {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.ct-hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.3rem 0;
}
.ct-hour-row span:first-child { color: #D1D5DB; }
.ct-hour-row span:last-child { color: #F5F1E8; font-weight: 500; }
.ct-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: #C9A15A;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: gap 0.3s;
}
.ct-detail-link:hover { gap: 0.85rem; }

/* ---------- SECTION 5: FAQ PREVIEW ---------- */
.ct-faq-preview { padding: 6rem 0; background: #16261F; }
.ct-faq-list { margin-bottom: 2rem; }
.ct-faq-item {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.4s;
}
.ct-faq-item:hover { border-color: rgba(201,161,90,0.4); }
.ct-faq-item.active {
    border-color: #C9A15A;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.ct-faq-question {
    width: 100%;
    padding: 1.4rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    color: #F5F1E8;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}
.ct-faq-question:hover { color: #C9A15A; }
.ct-faq-item.active .ct-faq-question { color: #C9A15A; }
.ct-faq-question i {
    color: #C9A15A;
    transition: transform 0.4s;
    flex-shrink: 0;
}
.ct-faq-item.active .ct-faq-question i { transform: rotate(45deg); }
.ct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.ct-faq-answer p {
    padding: 0 1.75rem 1.5rem;
    color: #D1D5DB;
    line-height: 1.7;
    font-size: 0.95rem;
}

.ct-faq-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 2rem;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    color: #F5F1E8;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s;
}
.ct-faq-more:hover {
    background: #C9A15A;
    color: #0D1B17;
    border-color: #C9A15A;
}

/* ---------- SECTION 6: CTA ---------- */
.ct-cta {
    position: relative;
    padding: 10rem 0;
    background: linear-gradient(135deg, rgba(13,27,23,0.95), rgba(22,38,31,0.95)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1920&q=80') center/cover;
}
.ct-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,161,90,0.08) 0%, transparent 60%);
}
.ct-cta-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.ct-cta-title span { color: #C9A15A; font-style: italic; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .ct-methods-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-form-grid { grid-template-columns: 1fr; }
    .ct-location-grid { grid-template-columns: 1fr; }
    .ct-map { min-height: 400px; }
}
@media (max-width: 768px) {
    .ct-hero { height: 70vh; min-height: 500px; }
    .ct-methods, .ct-form-section, .ct-location, .ct-faq-preview { padding: 4rem 0; }
    .ct-form-wrap { padding: 2rem 1.5rem; }
    .ct-form-row { grid-template-columns: 1fr; gap: 0; }
    .ct-social-grid { grid-template-columns: 1fr; }
    .ct-cta { padding: 6rem 0; }
}
@media (max-width: 480px) {
    .ct-hero-title { font-size: 2.5rem !important; }
    .ct-methods-grid { grid-template-columns: 1fr; }
    .ct-method-card { padding: 2rem 1.5rem; }
}