/* Header */
.menu-form button.btn {
    background-color: transparent;
    font-size: 16px;
    font-weight: 700;
    fill: #fff;
    color: #fff;
    background-image: linear-gradient(126deg, #0466b2 9%, #37b675 56%);
    border-radius: 99px 99px 99px 99px;
    width: max-content;
    height: 40px;
    border: none;
    padding: 0 20px;
    line-height: 40px;
}
.target-vision {
    margin: 20px 0;
}
.target-vision .item {
    background-image: linear-gradient(45deg, #0466b2, #003055);
    padding: 25px;
    border-radius: 20px;
}
.target-vision .item .thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
}
.target-vision .item .content .title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0 0;
}

/* Modal */
div#staticModalFormSign .modal-header {
    border: none;
}
div#staticModalFormSign .from-modal .wpcf7-form input,
div#staticModalFormSign .from-modal .wpcf7-form textarea {
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    margin: 5px 0 10px;
    padding-left: 15px;
    outline: unset;
}
div#staticModalFormSign .from-modal .wpcf7-form textarea {
    height: 80px;
    padding-top: 10px;
}
div#staticModalFormSign .from-modal .wpcf7-form label {
    text-align: left;
    font-size: 14px;
    color: #59809E;
    font-weight: 500 !important;
}
div#staticModalFormSign .from-modal .wpcf7-form p {
    margin: 0;
    text-align: center;
}
div#staticModalFormSign .from-modal .wpcf7-form .wpcf7-submit {
    width: fit-content;
    padding: 0 30px 3px;
    text-align: center;
    color: #fff;
    background: #59809E;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
    height: 40px;
}

/**
 * Shared Styles – Homepage Sections
 *
 */

/* =============================================
   GLOBAL CSS VARIABLES
============================================= */
:root {
	--sc-gold:    #0465b1;
	--sc-dark:    #0f0e0e;
	--sc-cream:   #faf7f2;
	--sc-muted:   #6b6257;
	--sc-radius:  20px;
	--sc-transition: 0.3s ease;
}

/* =============================================
   SECTION SPACING
   Dùng class .section-spacing cho thẻ <section>
============================================= */
.section-spacing {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (max-width: 991.98px) {
	.section-spacing {
		padding-top: 64px;
		padding-bottom: 72px;
	}
}

@media (max-width: 575.98px) {
	.section-spacing {
		padding-top: 48px;
		padding-bottom: 56px;
	}
}

/* =============================================
   SECTION HEADER – Dùng chung cho mọi section
============================================= */
.sc-section-header {
	margin-bottom: 0;
}

/* Eyebrow label */
.sc-section-header__eyebrow {
	display: inline-block;
	/* font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 0.8125rem; */
	font-style: italic;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sc-gold);
	margin-bottom: 10px;
}

/* Title */
.sc-section-header__title {
	/* font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: clamp(1.875rem, 3vw, 2.875rem); */
	font-weight: 600;
	color: var(--sc-dark);
	line-height: 1.2;
	margin: 0 0 16px;
}

/* Light variant – dùng trên nền tối */
.sc-section-header__title--light {
	color: #fff;
}

/* Decorative line */
.sc-section-header__line {
	display: block;
	width: 56px;
	height: 2px;
	background: linear-gradient(90deg, var(--sc-gold), transparent);
	margin-bottom: 0;
    margin: 0 auto;
}

/* Centered variant */
.sc-section-header--center .sc-section-header__eyebrow,
.sc-section-header--center .sc-section-header__title {
	text-align: center;
}

.sc-section-header__line--center {
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(90deg, transparent, var(--sc-gold), transparent);
}

/* =============================================
   SLIDER ARROWS – dùng chung cho Staff & Reviews
============================================= */
.sc-slider-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(201, 169, 110, 0.25);
	background: #fff;
	color: var(--sc-gold);
	cursor: pointer;
	flex-shrink: 0;
	transition: background var(--sc-transition),
	            border-color var(--sc-transition),
	            transform var(--sc-transition),
	            color var(--sc-transition);
}

.sc-slider-arrow:hover {
	background: var(--sc-gold);
	border-color: var(--sc-gold);
	color: #fff;
	transform: scale(1.08);
}

/* Arrows trên nền tối */
.sc-staff .sc-slider-arrow {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(201, 169, 110, 0.25);
	color: var(--sc-gold);
}

.sc-staff .sc-slider-arrow:hover {
	background: var(--sc-gold);
	border-color: var(--sc-gold);
	color: #fff;
}

/* =============================================
   UTILITY – Slick slider reset
============================================= */
.slick-slide { outline: none; }
.slick-list  { overflow: hidden; }
