/* GTICK Contact Page Specific Styles */

/* Page Hero Section */
.gtick-page-hero {
    background: var(--gtick-gradient);
    color: var(--gtick-white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gtick-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.gtick-page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.gtick-page-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gtick-page-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Breadcrumb */
.gtick-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.gtick-breadcrumb a {
    color: var(--gtick-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gtick-breadcrumb a:hover {
    opacity: 1;
}

.gtick-breadcrumb-separator {
    color: var(--gtick-white);
    opacity: 0.6;
}

.gtick-breadcrumb-current {
    color: var(--gtick-white);
    font-weight: 500;
}

/* Contact Info */
.gtick-contact-info {
    padding: 6rem 0;
    background: var(--gtick-white);
}

.gtick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gtick-contact-card {
    background: var(--gtick-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--gtick-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gtick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gtick-shadow-lg);
}

.gtick-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gtick-gradient);
    border-radius: 50%;
    color: var(--gtick-white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.gtick-contact-card:hover .gtick-contact-icon {
    transform: scale(1.1);
    box-shadow: var(--gtick-shadow);
}

.gtick-contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gtick-black);
    margin-bottom: 1rem;
}

.gtick-contact-details {
    color: var(--gtick-gray-600);
    line-height: 1.6;
}

.gtick-contact-link {
    color: var(--gtick-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gtick-contact-link:hover {
    color: var(--gtick-secondary);
}

.gtick-contact-hours {
    font-size: 0.9rem;
    color: var(--gtick-gray-500);
    font-style: italic;
}

/* Contact Form Section */
.gtick-contact-form-section {
    padding: 6rem 0;
    background: var(--gtick-gray-100);
}

.gtick-contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.gtick-contact-form-content {
    background: var(--gtick-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--gtick-shadow);
}

.gtick-contact-form-description {
    color: var(--gtick-gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gtick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gtick-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gtick-form-group {
    display: flex;
    flex-direction: column;
}

.gtick-form-label {
    font-weight: 600;
    color: var(--gtick-black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.gtick-form-input,
.gtick-form-select,
.gtick-form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gtick-gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gtick-white);
}

.gtick-form-input:focus,
.gtick-form-select:focus,
.gtick-form-textarea:focus {
    outline: none;
    border-color: var(--gtick-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.gtick-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.gtick-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.gtick-checkbox-label input[type="checkbox"] {
    display: none;
}

.gtick-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gtick-gray-400);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.gtick-checkbox-label input[type="checkbox"]:checked + .gtick-checkbox-custom {
    background: var(--gtick-primary);
    border-color: var(--gtick-primary);
}

.gtick-checkbox-label input[type="checkbox"]:checked + .gtick-checkbox-custom::after {
    content: '✓';
    color: var(--gtick-white);
    font-size: 0.8rem;
    font-weight: bold;
}

.gtick-form-link {
    color: var(--gtick-primary);
    text-decoration: none;
}

.gtick-form-link:hover {
    text-decoration: underline;
}

.gtick-form-submit {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Info Sidebar */
.gtick-contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gtick-sidebar-card {
    background: var(--gtick-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--gtick-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gtick-sidebar-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gtick-black);
    margin-bottom: 1rem;
}

.gtick-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gtick-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gtick-gray-600);
}

.gtick-sidebar-list li i {
    color: var(--gtick-secondary);
    font-size: 0.9rem;
}

.gtick-sidebar-description {
    color: var(--gtick-gray-600);
    line-height: 1.6;
}

/* Map Section */
.gtick-map-section {
    padding: 6rem 0;
    background: var(--gtick-white);
}

.gtick-map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--gtick-shadow);
    margin-top: 3rem;
}

.gtick-map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gtick-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gtick-map-container:hover .gtick-map-overlay {
    opacity: 1;
}

.gtick-map-info {
    text-align: center;
    color: var(--gtick-white);
    padding: 2rem;
}

.gtick-map-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gtick-map-address {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gtick-page-hero-title {
        font-size: 2.5rem;
    }

    .gtick-page-hero-subtitle {
        font-size: 1.1rem;
    }

    .gtick-contact-grid {
        grid-template-columns: 1fr;
    }

    .gtick-contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gtick-contact-form-content {
        padding: 2rem;
    }

    .gtick-form-row {
        grid-template-columns: 1fr;
    }

    .gtick-form-submit {
        align-self: stretch;
        justify-content: center;
    }

    .gtick-map-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gtick-page-hero {
        padding: 6rem 0 3rem;
    }

    .gtick-page-hero-title {
        font-size: 2rem;
    }

    .gtick-contact-card {
        padding: 2rem;
    }

    .gtick-contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .gtick-contact-form-content {
        padding: 1.5rem;
    }

    .gtick-sidebar-card {
        padding: 1.5rem;
    }

    .gtick-map-image {
        height: 250px;
    }
}
