/* ==========================================================================
   SALTANDPOD Contact Us Page Styles
   ========================================================================== */

/* Main Container */
.contact-page-container {
    width: 100%;
    background-color: var(--light-blue, #eff1f4);
    font-family: 'DM Sans', sans-serif;
    color: var(--primary-deep-blue, #0a1628);
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 512px;
    background-color: #0c1a2f;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
/*     background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 6.18%, rgba(0, 0, 0, 0) 64.44%); */
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 100px;
    width: 100%;
    box-sizing: border-box;
}

.contact-hero-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    max-width: 37%;
    color: #EFF1F4;
    text-transform: capitalize;
}

.contact-hero-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--light-off-white, #eff1f4);
    margin: 0;
    max-width: 554px;
}

/* Body Section */
.contact-body-section {
    width: 100%;
    padding: 120px 0;
    box-sizing: border-box;
}

.contact-body-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 100px;
    box-sizing: border-box;
}

/* Section Header */
.contact-section-header {
    text-align: center;
    max-width: 596px;
    margin: 0 auto 48px auto;
}

.contact-eyebrow {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.12px;
    text-transform: uppercase;
    color: var(--secondary-clay-blue, #456793);
    margin-bottom: 9px;
    display: block;
}

.contact-section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0px;
    color: var(--primary-deep-blue, #0a1628);
    margin: 0 0 12px 0;
}

.contact-section-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-clay-blue, #456793);
    margin: 0;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 46px;
}

/* Left Column: Info Cards */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-card {
    background-color: var(--primary-warm-white, #f7f6f4);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: start;
    box-sizing: border-box;
}

.contact-card-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0px;
}

.card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card-text-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-card-link {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.32px;
    color: var(--secondary-clay-blue, #456793);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.contact-card-link:hover {
    color: var(--hover-btn-color, #5d98bd);
}

.contact-card-desc-text {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.24px;
    color: var(--secondary-clay-blue, #456793);
    margin: 0;
}

/* Right Column: CF7 Form Grid */
.cf7-form-wrapper {
    width: 100%;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-group {
    flex: 1;
    position: relative;
}

.contact-form-grid input[type="text"],
.contact-form-grid input[type="email"],
.contact-form-grid input[type="tel"],
.contact-form-grid textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--border-color, #7ba8c4);
    box-sizing: border-box;
    padding: 11px 24px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--primary-deep-blue, #0a1628);
    outline: none;
    transition: border-color 0.2s ease-in-out;
	    letter-spacing: -0.28px;
}

.contact-form-grid input[type="text"]::placeholder,
.contact-form-grid input[type="email"]::placeholder,
.contact-form-grid input[type="tel"]::placeholder,
.contact-form-grid textarea::placeholder {
    color: var(--hover-btn-color, #5d98bd);
    opacity: 1;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
    border-color: var(--primary-deep-blue, #0a1628);
}

.contact-form-grid textarea {
    height: 106px;
    resize: none;
}

/* Submit Row */
.form-submit-row {
    margin-top: 4px;
}

.contact-form-grid input[type="submit"] {
    background-color: var(--primary-deep-blue, #0a1628);
    border: 1px solid var(--primary-deep-blue, #0a1628);
    color: var(--light-off-white, #eff1f4);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.28px;
    text-transform: capitalize;
    padding: 13px 24px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
	width: auto;
	font-family: "DM Sans";
}

.contact-form-grid input[type="submit"]:hover {
    background-color: var(--primary-deep-blue-hover, #15243c);
    border-color: var(--primary-deep-blue-hover, #15243c);
}

/* CF7 Validation Alerts & Responses */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
	line-height: 0;
}

.wpcf7-not-valid-tip {
    color: #eb5757;
    font-size: 12px;
    font-weight: 400;
    margin-top: 12px;
    display: block;
}

.wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 12px 20px !important;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    background-color: var(--primary-warm-white, #f7f6f4);
    box-sizing: border-box;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid #27ae60 !important;
    color: #27ae60;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
    border: 1px solid #eb5757 !important;
    color: #eb5757;
}

.cf7-ajax-ok-btn{
background-color: var(--primary-deep-blue, #0a1628);
    border: 1px solid var(--primary-deep-blue, #0a1628);
    color: var(--light-off-white, #eff1f4);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.28px;
    text-transform: capitalize;
    padding: 13px 24px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: auto;
    font-family: "DM Sans";	
	margin-top: 12px;
}

/* Bottom Support Section */
.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.support-card {
    background-color: var(--primary-warm-white, #f7f6f4);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

.support-card-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
	    padding: 10px;
}

.support-card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.36px;
    color: var(--primary-deep-blue, #0a1628);
    margin: 0;
    text-transform: capitalize;
	    margin-top: 11px;
}

.support-card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-clay-blue, #456793);
    margin: 0;
}


/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media only screen and (max-width: 1366px) {
	
	.contact-body-section{
		    padding: 80px 0;
	}
	
}

@media only screen and (max-width: 1199px) {
	
	.contact-grid{
		    grid-template-columns: auto 1fr;
		    gap: 30px;
	}
	
}

/* Tablet Screens (max-width: 992px) */
@media (max-width: 1024px) {
    .contact-hero-content {
        padding: 0 40px;
    }
    .contact-body-container {
        padding: 0 40px;
    }
 
}

@media only screen and (max-width: 991px) {
	
	    .contact-grid {
        grid-template-columns: 1fr;
     
    }
	
	.contact-info-col{
		    max-width: 480px;
	}
	
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    .contact-hero {
        height: 380px;
    }
    .contact-hero-content {
        padding: 0 20px;
    }
    .contact-hero-title {
        font-size: 32px;
        max-width: 100%;
    }
    .contact-hero-desc {
        font-size: 16px;
        max-width: 100%;
    }
    .contact-body-section {
        padding: 60px 0;
    }
    .contact-body-container {
        padding: 0 20px;
    }
    .contact-section-header {
        margin-bottom: 32px;
    }
    .contact-section-title {
        font-size: 24px;
    }
    .contact-grid {
        gap: 32px;
        margin-bottom: 48px;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .contact-support-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    .support-card {
        gap: 16px;
        padding: 16px;
    }
    .support-card-title {
        font-size: 18px;
    }
    .support-card-desc {
        font-size: 16px;
    }
}


@media only screen and (max-width: 767px){
	
	    .contact-body-section {
        padding: 40px 0;
    }
	
}


@media only screen and (max-width: 575px){
	
	.contact-support-grid{
		        grid-template-columns: 1fr;
	}
	
	.support-card-icon-wrapper{
		    padding: 0;
	}
	
	.support-card-icon-wrapper{
		width: 45px;
		height: 45px;
	}
}

