/* Contact Us Page Styles */

.ctc-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.ctc-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.ctc-hero-sub {
    font-size: 1em;
    opacity: 0.9;
}

.ctc-content {
    padding: 60px 0;
}
.ctc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.ctc-info h2 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 24px;
}
.ctc-block {
    margin-bottom: 24px;
}
.ctc-block h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #333;
}
.ctc-block p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}
.ctc-block a {
    color: #2d5a87;
    text-decoration: none;
}
.ctc-block a:hover {
    text-decoration: underline;
}

.ctc-map {
    margin-top: 24px;
}

.ctc-form h2 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 8px;
}
.ctc-form > p {
    font-size: 1em;
    color: #666;
    margin-bottom: 24px;
}

.ctc-form-group {
    margin-bottom: 18px;
}
.ctc-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    font-size: 1em;
}
.ctc-form-group input,
.ctc-form-group select,
.ctc-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.ctc-form-group input:focus,
.ctc-form-group select:focus,
.ctc-form-group textarea:focus {
    border-color: #2d5a87;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45,90,135,0.1);
}

.ctc-submit-btn {
    background: #e8a838;
    color: #1a365d;
    border: none;
    padding: 14px 40px;
    font-size: 1em;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.ctc-submit-btn:hover {
    background: #d4952f;
}

/* Contact Form 7 override */
.ctc-form .wpcf7 input[type="text"],
.ctc-form .wpcf7 input[type="email"],
.ctc-form .wpcf7 input[type="tel"],
.ctc-form .wpcf7 textarea,
.ctc-form .wpcf7 select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
}
.ctc-form .wpcf7 input[type="submit"] {
    background: #e8a838;
    color: #1a365d;
    border: none;
    padding: 14px 40px;
    font-size: 1em;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.ctc-cta {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}
.ctc-cta h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 12px;
}
.ctc-cta p {
    font-size: 1em;
    color: #555;
    margin-bottom: 24px;
}
.ctc-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.ctc-cta-buttons .btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.ctc-cta-buttons .btn-primary {
    background: #e8a838;
    color: #1a365d;
}
.ctc-cta-buttons .btn-primary:hover {
    background: #d4952f;
}
.ctc-cta-buttons .btn-secondary {
    background: #fff;
    color: #1a365d;
    border: 2px solid #1a365d;
}
.ctc-cta-buttons .btn-secondary:hover {
    background: #1a365d;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .ctc-hero { padding: 60px 0 40px; }
    .ctc-hero h1 { font-size: 2rem; }
    .ctc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ctc-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
