/**
 * EliteCore Redesign Styles
 * New design based on mockups - dark navy + gold theme
 */

/* ========================================================================
   HEADER - Centered logo + Horizontal Navigation
   ======================================================================== */

.header__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-template-columns: unset;
	grid-template-areas: unset;
	grid-auto-flow: unset;
	padding: 25px 0 0;
	border-top: none;
}

.header__logo {
	justify-self: center;
	margin-bottom: 15px;
}

.header__logo .logo__link {
	display: flex;
	justify-content: center;
}

.header__logo .logo__image {
	max-height: 50px;
	width: auto;
}

/* Desktop horizontal navigation */
.header__nav {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 0;
	border-top: 1px solid var(--color-white-10);
}

.ec-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 35px;
	align-items: center;
}

.ec-nav__item {
	margin: 0;
	padding: 0;
}

.ec-nav__link {
	font-family: var(--menu-font);
	font-size: var(--menu-font-size);
	font-weight: var(--menu-font-weight);
	text-transform: var(--menu-text-transform);
	letter-spacing: 0.08em;
	color: var(--color-white);
	text-decoration: none !important;
	padding: 8px 0;
	transition: color var(--ease-base);
	position: relative;
}

.ec-nav__link:hover,
.ec-nav__link:focus {
	color: var(--color-link);
}

.ec-nav__item--active .ec-nav__link {
	color: var(--color-link);
	text-decoration: underline !important;
	text-underline-offset: 8px;
	text-decoration-thickness: 2px !important;
	text-decoration-color: var(--color-link) !important;
}

/* Language switcher in header */
.header__tools {
	position: absolute;
	right: var(--container-gap);
	top: 50%;
	transform: translateY(-50%);
}

/* Mobile menu toggle - hidden on desktop */
.header__mobile-toggle {
	display: none;
}

@media screen and (max-width: 980px) {
	.header__container {
		flex-direction: row;
		justify-content: space-between;
		padding: 15px 0;
	}

	.header__logo {
		margin-bottom: 0;
	}

	.header__nav {
		display: none;
	}

	.header__mobile-toggle {
		display: flex;
	}

	.header__tools {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
	}
}


/* ========================================================================
   BUTTONS - EliteCore style
   ======================================================================== */

.ec-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--button-border-radius);
	font-family: var(--button-font-family);
	font-size: var(--button-font-size);
	font-weight: var(--button-font-weight);
	text-transform: var(--button-text-transform);
	letter-spacing: var(--button-letter-spacing);
	text-decoration: none !important;
	cursor: pointer;
	transition: all var(--ease-base);
	white-space: nowrap;
}

.ec-btn--primary {
	background-color: var(--color-link);
	color: var(--color-dark);
	border: 2px solid var(--color-link);
}

.ec-btn--primary:hover,
.ec-btn--primary:focus {
	background-color: var(--color-dark-gold);
	border-color: var(--color-dark-gold);
	color: var(--color-dark);
}

.ec-btn--outline {
	background-color: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white-40);
}

.ec-btn--outline:hover,
.ec-btn--outline:focus {
	border-color: var(--color-link);
	color: var(--color-link);
}

.ec-btn--small {
	padding: 10px 22px;
	font-size: 11px;
}

.ec-btn__arrow {
	font-size: 1.1em;
	transition: transform var(--ease-base);
}

.ec-btn:hover .ec-btn__arrow {
	transform: translateX(3px);
}


/* ========================================================================
   HERO SECTION
   ======================================================================== */

.ec-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.ec-hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.ec-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ec-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(3, 14, 32, 0.85) 0%, rgba(3, 14, 32, 0.4) 50%, rgba(3, 14, 32, 0.2) 100%);
}

.ec-hero__content {
	position: relative;
	z-index: 1;
	padding: 120px 0 80px;
	max-width: 650px;
}

.ec-hero__title {
	font-family: var(--heading-font);
	font-weight: var(--heading-font-weight);
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--color-white);
}

.ec-hero__title-top {
	display: block;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	font-style: italic;
}

.ec-hero__title-bottom {
	display: block;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 600;
}

.ec-hero__subtitle {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-white-80);
	margin-bottom: 35px;
	max-width: 500px;
}

.ec-hero__buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
	.ec-hero {
		min-height: 70vh;
	}

	.ec-hero__content {
		padding: 80px 0 60px;
	}

	.ec-hero__buttons {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* ========================================================================
   TABS NAVIGATION
   ======================================================================== */

.ec-tabs {
	position: relative;
	z-index: 2;
	margin-top: -40px;
}

.ec-tabs__list {
	display: flex;
	justify-content: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	background: rgba(21, 34, 63, 0.9);
	border: 1px solid var(--color-white-10);
	border-radius: 60px;
	max-width: 500px;
	margin: 0 auto;
	backdrop-filter: blur(20px);
}

.ec-tabs__item {
	flex: 1;
	margin: 0;
	padding: 0;
}

.ec-tabs__link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	text-decoration: none !important;
	color: var(--color-white-60);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all var(--ease-base);
	border-radius: 60px;
	white-space: nowrap;
}

.ec-tabs__link:hover,
.ec-tabs__link:focus {
	color: var(--color-link);
}

.ec-tabs__item--active .ec-tabs__link {
	color: var(--color-link);
	background: var(--color-white-05);
}

.ec-tabs__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

@media screen and (max-width: 600px) {
	.ec-tabs__list {
		border-radius: 16px;
		flex-direction: row;
	}

	.ec-tabs__link {
		padding: 12px 16px;
		font-size: 11px;
		gap: 5px;
	}

	.ec-tabs__icon {
		width: 14px;
		height: 14px;
	}
}


/* ========================================================================
   SECTIONS - Common styles
   ======================================================================== */

.ec-section {
	padding: var(--section-space) 0;
}

.ec-section__header {
	text-align: center;
	margin-bottom: 60px;
}

.ec-section__label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-link);
	margin-bottom: 12px;
}

.ec-section__title {
	font-family: var(--heading-font);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: var(--heading-font-weight);
	color: var(--color-white);
	margin: 0;
}


/* ========================================================================
   OFFER SECTION - Service cards grid
   ======================================================================== */

.ec-offer__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.ec-offer__card {
	background: var(--color-white-05);
	border: 1px solid var(--color-white-10);
	border-radius: 16px;
	padding: 30px 20px;
	text-align: center;
	transition: all var(--ease-base);
}

.ec-offer__card:hover {
	border-color: var(--color-link);
	background: var(--color-white-08);
	transform: translateY(-4px);
}

.ec-offer__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-white-05);
	border: 1px solid var(--color-link);
	border-radius: 12px;
	color: var(--color-link);
}

.ec-offer__icon svg {
	width: 24px;
	height: 24px;
}

.ec-offer__title {
	font-family: var(--heading-font);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 10px;
	line-height: 1.3;
}

.ec-offer__text {
	font-size: 0.8rem;
	line-height: 1.5;
	color: var(--color-white-60);
	margin: 0;
}

@media screen and (max-width: 1200px) {
	.ec-offer__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 600px) {
	.ec-offer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.ec-offer__card {
		padding: 20px 15px;
	}
}


/* ========================================================================
   PACKAGES SECTION - Pricing cards
   ======================================================================== */

.ec-packages__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 60px;
}

.ec-package {
	background: var(--color-white-05);
	border: 1px solid var(--color-white-10);
	border-radius: 20px;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	transition: all var(--ease-base);
}

.ec-package:hover {
	border-color: var(--color-white-20);
	transform: translateY(-4px);
}

.ec-package--featured {
	border-color: var(--color-link);
	background: linear-gradient(180deg, rgba(215, 181, 109, 0.08) 0%, var(--color-white-05) 100%);
}

.ec-package--featured:hover {
	border-color: var(--color-link);
}

.ec-package__header {
	text-align: center;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--color-white-10);
}

.ec-package__icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 15px;
	color: var(--color-link);
}

.ec-package__icon svg {
	width: 100%;
	height: 100%;
}

.ec-package__name {
	font-family: var(--heading-font);
	font-size: 1.5rem;
	font-weight: 800;
	font-style: italic;
	color: var(--color-white);
	margin: 0 0 5px;
	letter-spacing: 0.05em;
}

.ec-package__desc {
	font-size: 0.85rem;
	color: var(--color-white-50);
	margin: 0;
}

.ec-package__list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
	flex-grow: 1;
}

.ec-package__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 0;
	font-size: 0.9rem;
	color: var(--color-white-80);
	line-height: 1.4;
}

.ec-package__check {
	color: var(--color-link);
	font-weight: 700;
	font-size: 0.85rem;
	flex-shrink: 0;
	margin-top: 1px;
}

.ec-package .ec-btn {
	align-self: flex-start;
}

/* CTA block after packages */
.ec-packages__cta {
	text-align: center;
	padding: 50px 40px;
	background: var(--color-white-05);
	border: 1px solid var(--color-white-10);
	border-radius: 20px;
}

.ec-packages__cta-title {
	font-family: var(--heading-font);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-white);
	margin: 0 0 10px;
}

.ec-packages__cta-text {
	font-size: 0.95rem;
	color: var(--color-white-60);
	margin-bottom: 25px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 980px) {
	.ec-packages__grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
}


/* ========================================================================
   CAMPS SECTION
   ======================================================================== */

.ec-camps__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.ec-camp {
	background: var(--color-white-05);
	border: 1px solid var(--color-white-10);
	border-radius: 20px;
	overflow: hidden;
	transition: all var(--ease-base);
}

.ec-camp:hover {
	border-color: var(--color-white-20);
	transform: translateY(-4px);
}

.ec-camp__image {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.ec-camp__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ec-camp:hover .ec-camp__image img {
	transform: scale(1.05);
}

.ec-camp__badge {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 1;
}

.ec-camp__badge--open {
	background-color: var(--color-green);
	color: #fff;
}

.ec-camp__badge--upcoming {
	background-color: var(--color-yellow);
	color: #1a1a1a;
}

.ec-camp__badge--past {
	background-color: var(--color-red);
	color: #fff;
}

.ec-camp__content {
	padding: 25px;
}

.ec-camp__title {
	font-family: var(--heading-font);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-white);
	margin: 0 0 15px;
	line-height: 1.3;
}

.ec-camp__year {
	color: var(--color-link);
	font-style: italic;
}

.ec-camp__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.ec-camp__location,
.ec-camp__date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: var(--color-white-60);
}

.ec-camp__meta-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--color-link);
}

@media screen and (max-width: 768px) {
	.ec-camps__grid {
		grid-template-columns: 1fr;
	}
}


/* ========================================================================
   FOOTER - EliteCore Redesign
   ======================================================================== */

.ec-footer {
	padding: 30px 0 20px;
	background: var(--background-footer);
	border-top: 1px solid var(--color-white-10);
}

.ec-footer .footer__top,
.ec-footer .footer__middle,
.ec-footer .footer__bottom,
.ec-footer .footer__end,
.ec-footer .footer__final {
	display: none;
}

.ec-footer__main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.ec-footer__info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 0.85rem;
	color: var(--color-white-70);
}

.ec-footer__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ec-footer__icon {
	width: 16px;
	height: 16px;
	color: var(--color-link);
	flex-shrink: 0;
}

.ec-footer__separator {
	color: var(--color-white-30);
	margin: 0 4px;
}

.ec-footer__link {
	color: var(--color-white-70);
	text-decoration: none !important;
	transition: color var(--ease-base);
}

.ec-footer__link:hover {
	color: var(--color-link);
}

.ec-footer__social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ec-footer__social-label {
	font-size: 0.8rem;
	color: var(--color-white-50);
}

.ec-footer__social-icons {
	display: flex;
	gap: 12px;
	align-items: center;
}

.ec-footer__social-icons .social-icons {
	display: flex;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.ec-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--color-white-60);
	text-decoration: none !important;
	transition: color var(--ease-base);
}

.ec-footer__social-link svg {
	width: 20px;
	height: 20px;
}

.ec-footer__social-link:hover {
	color: var(--color-link);
}

.ec-footer__bottom {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid var(--color-white-10);
	text-align: center;
}

.ec-footer__copyright {
	font-size: 0.75rem;
	color: var(--color-white-30);
}

@media screen and (max-width: 768px) {
	.ec-footer__info {
		flex-direction: column;
		gap: 10px;
	}

	.ec-footer__separator {
		display: none;
	}

	.ec-footer__social {
		flex-direction: column;
		gap: 8px;
	}
}


/* ========================================================================
   PAGE HOME - Override page margin
   ======================================================================== */

.page-home .page {
	margin: 0;
}

.page-home .main {
	padding: 0;
}

.page-home .main a {
	text-decoration: none;
}

/* ========================================================================
   ATHLETES GRID
   ======================================================================== */

.ec-athletes__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.ec-athlete {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ec-athlete:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.ec-athlete__photo {
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
}

.ec-athlete__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ec-athlete:hover .ec-athlete__photo img {
	transform: scale(1.05);
}

.ec-athlete__info {
	padding: 20px;
}

.ec-athlete__name {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 4px;
}

.ec-athlete__sport {
	font-size: 0.85rem;
	color: var(--color-link);
	margin: 0 0 6px;
}

.ec-athlete__bio {
	font-size: 0.8rem;
	color: var(--color-white-60);
	margin: 0 0 10px;
}

.ec-athlete__social {
	display: flex;
	gap: 10px;
}

.ec-athlete__social a {
	color: var(--color-white-60);
	transition: color 0.2s ease;
}

.ec-athlete__social a:hover {
	color: var(--color-link);
}

@media screen and (max-width: 980px) {
	.ec-athletes__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.ec-athletes__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.ec-athletes__grid {
		grid-template-columns: 1fr;
	}
}


/* ========================================================================
   ABOUT PROJECT (Track Team / O Nas)
   ======================================================================== */

.ec-about-project__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.ec-about-project__text p {
	color: var(--color-white-80);
	line-height: 1.8;
	margin-bottom: 1em;
}

.ec-about-project__image {
	border-radius: 12px;
	overflow: hidden;
}

.ec-about-project__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

@media screen and (max-width: 768px) {
	.ec-about-project__content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}


/* ========================================================================
   MANAGEMENT GRID
   ======================================================================== */

.ec-management__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.ec-manager {
	text-align: center;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 30px 20px;
	transition: transform 0.3s ease;
}

.ec-manager:hover {
	transform: translateY(-4px);
}

.ec-manager__photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 20px;
	border: 3px solid var(--color-link);
}

.ec-manager__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ec-manager__name {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 4px;
}

.ec-manager__role {
	font-size: 0.85rem;
	color: var(--color-link);
	margin: 0 0 8px;
}

.ec-manager__email {
	font-size: 0.8rem;
	color: var(--color-white-60);
	margin: 0;
}

@media screen and (max-width: 768px) {
	.ec-management__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.ec-management__grid {
		grid-template-columns: 1fr;
	}
}


/* ========================================================================
   PARTNERS GRID
   ======================================================================== */

.ec-partners__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.ec-partner {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	transition: border-color 0.3s ease;
}

.ec-partner:hover {
	border-color: var(--color-link);
}

.ec-partner__logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-white-60);
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media screen and (max-width: 980px) {
	.ec-partners__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.ec-partners__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* ========================================================================
   VALUES (O Nas)
   ======================================================================== */

.ec-values .ec-offer__grid {
	grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 980px) {
	.ec-values .ec-offer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.ec-values .ec-offer__grid {
		grid-template-columns: 1fr;
	}
}


/* ========================================================================
   CAREER SECTION
   ======================================================================== */

.ec-career__content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.ec-career__content p {
	color: var(--color-white-80);
	line-height: 1.8;
	margin-bottom: 30px;
}


/* ========================================================================
   NEWS / BLOG GRID
   ======================================================================== */

.ec-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.ec-news__card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ec-news__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.ec-news__image {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
}

.ec-news__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ec-news__card:hover .ec-news__image img {
	transform: scale(1.05);
}

.ec-news__category {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--color-link);
	color: #15223F;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 12px;
	border-radius: 4px;
}

.ec-news__content {
	padding: 24px;
}

.ec-news__date {
	font-size: 0.75rem;
	color: var(--color-white-40);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	display: block;
}

.ec-news__title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px;
	line-height: 1.4;
}

.ec-news__excerpt {
	font-size: 0.85rem;
	color: var(--color-white-60);
	line-height: 1.6;
	margin: 0 0 15px;
}

.ec-btn--text {
	background: none;
	border: none;
	color: var(--color-link);
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ec-btn--text:hover {
	color: #f0cc80;
}

@media screen and (max-width: 980px) {
	.ec-news__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.ec-news__grid {
		grid-template-columns: 1fr;
	}
}


/* ========================================================================
   SOCIAL CTA
   ======================================================================== */

.ec-social-cta {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 20px;
}


/* ========================================================================
   CONTACT PAGE
   ======================================================================== */

.ec-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: flex-start;
}

.ec-contact__block {
	margin-bottom: 24px;
}

.ec-contact__block-title {
	font-family: 'Poppins', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-link);
	margin: 0 0 8px;
}

.ec-contact__block p {
	color: var(--color-white-80);
	line-height: 1.7;
	margin: 0;
}

.ec-contact__block a {
	color: var(--color-white-80);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ec-contact__block a:hover {
	color: var(--color-link);
}

.ec-contact__social {
	display: flex;
	gap: 12px;
}

.ec-contact__social a {
	color: var(--color-white-60);
	transition: color 0.2s ease;
}

.ec-contact__social a:hover {
	color: var(--color-link);
}

.ec-contact__photo {
	margin-top: 30px;
	border-radius: 12px;
	overflow: hidden;
}

.ec-contact__photo img {
	width: 100%;
	max-width: 300px;
	border-radius: 12px;
}

/* Contact Form */
.ec-contact__form-wrap {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 40px;
}

.ec-contact__form-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}

.ec-contact__form-desc {
	font-size: 0.9rem;
	color: var(--color-white-60);
	margin: 0 0 30px;
}

.ec-form__group {
	margin-bottom: 20px;
}

.ec-form__label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--color-white-80);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ec-form__optional {
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	color: var(--color-white-40);
}

.ec-form__input,
.ec-form__textarea {
	width: 100%;
	padding: 12px 16px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 8px;
	color: #fff;
	font-size: 0.9rem;
	font-family: 'Satoshi', sans-serif;
	transition: border-color 0.2s ease, background 0.2s ease;
	box-sizing: border-box;
}

.ec-form__input:focus,
.ec-form__textarea:focus {
	outline: none;
	border-color: var(--color-link);
	background: rgba(255,255,255,0.08);
}

.ec-form__input::placeholder,
.ec-form__textarea::placeholder {
	color: var(--color-white-30);
}

.ec-form__textarea {
	resize: vertical;
	min-height: 120px;
}

.ec-form__group--checkbox {
	margin-top: 10px;
}

.ec-form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.8rem;
	color: var(--color-white-60);
	line-height: 1.5;
}

.ec-form__checkbox input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--color-link);
}

.ec-btn--full {
	width: 100%;
	justify-content: center;
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	.ec-contact__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ec-contact__form-wrap {
		padding: 25px;
	}
}


/* ========================================================================
   ALL SUBPAGES - Override page margin
   ======================================================================== */

.main {
	padding: 0;
}

.main a {
	text-decoration: none;
}