* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #74b9ff 100%);
    min-height: 100vh;
}

.voccontact-main-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.voccontact-page-header {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.voccontact-org-logo {
    width: 80px;
    height: 80px;
    background: blue;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.voccontact-primary-title {
    font-size: 2.8rem;
    color: #000080;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.voccontact-org-name {
    font-size: 1.5rem;
    color: #138808;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.voccontact-tagline {
    font-size: 1.1rem;
    color: #ff9933;
    font-style: italic;
    font-weight: 500;
}

.voccontact-mission-statement {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.voccontact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.voccontact-info-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-left: 5px solid #ff9933;
}

.voccontact-form-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-left: 5px solid #138808;
}

.voccontact-section-heading {
    font-size: 1.8rem;
    color: #000080;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.voccontact-details-list {
    list-style: none;
    margin-bottom: 2rem;
}

.voccontact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #ff9933;
}

.voccontact-detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.voccontact-detail-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #138808;
    min-width: 2rem;
}

.voccontact-detail-content {
    flex: 1;
}

.voccontact-detail-label {
    font-weight: 600;
    color: #000080;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.voccontact-detail-value {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
}

.voccontact-quick-links {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.voccontact-links-title {
    font-size: 1.2rem;
    color: #000080;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.voccontact-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.voccontact-quick-link {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.voccontact-quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.voccontact-inquiry-form {
    display: grid;
    gap: 1.5rem;
}

.voccontact-form-group {
    display: flex;
    flex-direction: column;
}

.voccontact-input-label {
    color: #000080;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.voccontact-text-field,
.voccontact-select-field,
.voccontact-textarea-field {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.voccontact-text-field:focus,
.voccontact-select-field:focus,
.voccontact-textarea-field:focus {
    outline: none;
    border-color: #ff9933;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
    transform: translateY(-1px);
}

.voccontact-textarea-field {
    resize: vertical;
    min-height: 120px;
}

.voccontact-submit-wrapper {
    text-align: center;
}

.voccontact-submit-btn {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.4);
}

.voccontact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.6);
}

.voccontact-map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-left: 5px solid #000080;
}

.voccontact-map-title {
    font-size: 1.8rem;
    color: #000080;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.voccontact-map-frame {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.voccontact-org-values {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.voccontact-values-title {
    font-size: 1.2rem;
    color: #000080;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.voccontact-values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.voccontact-value-item {
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #2c3e50;
    border-left: 3px solid #138808;
}

.voccontact-emergency-contact {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.voccontact-emergency-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.voccontact-emergency-number {
    font-size: 1.3rem;
    font-weight: bold;
}

.voccontact-required-asterisk {
    color: #e74c3c;
    font-weight: bold;
}

.voccontact-legal-notice {
    background: rgba(0, 0, 128, 0.1);
    border: 1px solid #000080;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #000080;
    text-align: center;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .voccontact-main-wrapper {
        max-width: 1400px;
        padding: 0 2rem;
    }

    .voccontact-primary-title {
        font-size: 3.2rem;
    }

    .voccontact-map-frame {
        height: 500px;
    }
}

/* Standard Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
    .voccontact-primary-title {
        font-size: 2.5rem;
    }

    .voccontact-org-name {
        font-size: 1.4rem;
    }
}

/* Tablet Landscape */
@media (max-width: 991px) and (min-width: 769px) {
    .voccontact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .voccontact-primary-title {
        font-size: 2.3rem;
    }

    .voccontact-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .voccontact-values-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .voccontact-map-frame {
        height: 350px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) and (min-width: 577px) {
    .voccontact-main-wrapper {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .voccontact-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .voccontact-primary-title {
        font-size: 2rem;
    }

    .voccontact-org-name {
        font-size: 1.2rem;
    }

    .voccontact-info-section,
    .voccontact-form-section,
    .voccontact-map-container,
    .voccontact-page-header {
        padding: 1.5rem;
    }

    .voccontact-map-frame {
        height: 300px;
    }

    .voccontact-org-logo {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .voccontact-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .voccontact-values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .voccontact-detail-item {
        flex-direction: column;
        text-align: center;
    }

    .voccontact-detail-icon {
        margin: 0 0 0.5rem 0;
        font-size: 2rem;
    }
}

/* Mobile Large */
@media (max-width: 576px) and (min-width: 481px) {
    .voccontact-main-wrapper {
        margin: 1rem auto;
        padding: 0 0.75rem;
    }

    .voccontact-primary-title {
        font-size: 1.8rem;
    }

    .voccontact-org-name {
        font-size: 1.1rem;
    }

    .voccontact-tagline {
        font-size: 1rem;
    }

    .voccontact-info-section,
    .voccontact-form-section,
    .voccontact-map-container,
    .voccontact-page-header {
        padding: 1.25rem;
    }

    .voccontact-org-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .voccontact-links-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .voccontact-values-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .voccontact-map-frame {
        height: 280px;
    }

    .voccontact-detail-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .voccontact-detail-icon {
        margin: 0 0 0.75rem 0;
        font-size: 2rem;
    }

    .voccontact-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Medium */
@media (max-width: 480px) and (min-width: 376px) {
    .voccontact-main-wrapper {
        margin: 0.75rem auto;
        padding: 0 0.5rem;
    }

    .voccontact-primary-title {
        font-size: 1.6rem;
    }

    .voccontact-org-name {
        font-size: 1rem;
    }

    .voccontact-tagline {
        font-size: 0.9rem;
    }

    .voccontact-info-section,
    .voccontact-form-section,
    .voccontact-map-container,
    .voccontact-page-header {
        padding: 1rem;
    }

    .voccontact-org-logo {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .voccontact-detail-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }

    .voccontact-detail-icon {
        margin: 0 0 0.5rem 0;
        font-size: 1.8rem;
    }

    .voccontact-map-frame {
        height: 250px;
    }

    .voccontact-submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .voccontact-section-heading {
        font-size: 1.5rem;
    }

    .voccontact-mission-statement {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .voccontact-main-wrapper {
        margin: 0.5rem auto;
        padding: 0 0.25rem;
    }

    .voccontact-primary-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .voccontact-org-name {
        font-size: 0.9rem;
    }

    .voccontact-tagline {
        font-size: 0.8rem;
    }

    .voccontact-info-section,
    .voccontact-form-section,
    .voccontact-map-container,
    .voccontact-page-header {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .voccontact-org-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .voccontact-detail-item {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .voccontact-detail-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .voccontact-detail-label {
        font-size: 0.8rem;
    }

    .voccontact-detail-value {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .voccontact-map-frame {
        height: 200px;
    }

    .voccontact-submit-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .voccontact-section-heading {
        font-size: 1.3rem;
    }

    .voccontact-mission-statement {
        padding: 0.75rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .voccontact-text-field,
    .voccontact-select-field,
    .voccontact-textarea-field {
        padding: 0.625rem;
        font-size: 0.9rem;
    }

    .voccontact-quick-link {
        padding: 0.625rem;
        font-size: 0.8rem;
    }

    .voccontact-value-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .voccontact-main-wrapper {
        margin: 0.25rem auto;
        padding: 0 0.125rem;
    }

    .voccontact-primary-title {
        font-size: 1.2rem;
        line-height: 1.1;
    }

    .voccontact-org-name {
        font-size: 0.8rem;
    }

    .voccontact-tagline {
        font-size: 0.7rem;
    }

    .voccontact-info-section,
    .voccontact-form-section,
    .voccontact-map-container,
    .voccontact-page-header {
        padding: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .voccontact-org-logo {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .voccontact-map-frame {
        height: 180px;
    }

    .voccontact-section-heading {
        font-size: 1.1rem;
    }

    .voccontact-mission-statement {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .voccontact-emergency-contact {
        padding: 1rem;
    }

    .voccontact-emergency-number {
        font-size: 1.1rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .voccontact-page-header {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .voccontact-org-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .voccontact-primary-title {
        font-size: 1.5rem;
    }

    .voccontact-map-frame {
        height: 200px;
    }
}

/* 🌍 Responsive Fixes */

/* Grid auto-fit for all screens */
.voccontact-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
}

/* Responsive text scaling */
.voccontact-primary-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    line-height: 1.2;
}

.voccontact-org-name {
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.voccontact-tagline {
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);
}

/* Inputs fully responsive */
.voccontact-text-field,
.voccontact-select-field,
.voccontact-textarea-field {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Map responsiveness */
.voccontact-map-frame {
    width: 100%;
    height: clamp(200px, 40vh, 500px);
    border: none;
}

/* 📱 Tablet (≤991px) */
@media (max-width: 991px) {
    .voccontact-page-header {
        padding: 2rem 1rem;
    }

    .voccontact-primary-title {
        font-size: 2rem;
    }

    .voccontact-content-grid {
        gap: 1.5rem;
    }

    .voccontact-detail-item {
        flex-direction: column;
        text-align: center;
    }
}

/* 📱 Mobile (≤768px) */
@media (max-width: 768px) {
    .voccontact-page-header {
        padding: 1.5rem 1rem;
    }

    .voccontact-primary-title {
        font-size: 1.8rem;
    }

    .voccontact-info-section,
    .voccontact-form-section,
    .voccontact-map-container {
        padding: 1rem;
    }

    .voccontact-detail-item {
        margin-bottom: 1rem;
    }

    .voccontact-detail-title {
        font-size: 1.1rem;
    }

    .voccontact-detail-text {
        font-size: 0.9rem;
    }
}

/* 📱 Small Phones (≤576px) */
@media (max-width: 576px) {
    .voccontact-primary-title {
        font-size: 1.5rem;
    }

    .voccontact-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* 📱 Extra Small Phones (≤375px) */
@media (max-width: 375px) {
    .voccontact-primary-title {
        font-size: 1.3rem;
    }

    .voccontact-org-name {
        font-size: 1rem;
    }

    .voccontact-tagline {
        font-size: 0.8rem;
    }
}