/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://topsidra.com
 Description:  Hello Elementor Child theme for Topsidra Couture. Custom styles, design tokens, and component overrides for the premium redesign.
 Author:       Topsidra Development
 Author URI:   https://topsidra.com
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v3 or later.
 License URI:  https://www.gnu.org/licenses/gpl-3.0.html
 Text Domain:  hello-elementor-child
*/

/* ==========================================================================
   DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */

:root {
	/* ----- Colors: Primary ----- */
	--tc-primary: #0D0D0D;
	--tc-primary-light: #1A1A1A;
	--tc-accent: #C8102E;
	--tc-accent-hover: #A30D24;
	--tc-accent-soft: rgba(200, 16, 46, 0.10);
	--tc-accent-medium: rgba(200, 16, 46, 0.20);

	/* ----- Colors: Neutrals ----- */
	--tc-white: #FFFFFF;
	--tc-gray-50: #FAFAFA;
	--tc-gray-100: #F5F5F5;
	--tc-gray-200: #E5E5E5;
	--tc-gray-300: #D4D4D4;
	--tc-gray-400: #A3A3A3;
	--tc-gray-500: #737373;
	--tc-gray-600: #525252;
	--tc-gray-700: #404040;
	--tc-gray-800: #262626;
	--tc-gray-900: #171717;
	--tc-black: #000000;

	/* ----- Colors: Functional ----- */
	--tc-whatsapp: #25D366;
	--tc-whatsapp-dark: #128C7E;
	--tc-success: #16A34A;
	--tc-warning: #F59E0B;
	--tc-error: #DC2626;

	/* ----- Typography ----- */
	--tc-font-heading: 'Poppins', sans-serif;
	--tc-font-body: 'Inter', sans-serif;
	--tc-font-accent: 'Playfair Display', serif;

	/* ----- Font Sizes ----- */
	--tc-text-hero: clamp(2.5rem, 5vw + 1rem, 4.5rem);
	--tc-text-h1: clamp(2rem, 3vw + 0.5rem, 3rem);
	--tc-text-h2: clamp(1.625rem, 2vw + 0.5rem, 2.25rem);
	--tc-text-h3: clamp(1.375rem, 1.5vw + 0.5rem, 1.75rem);
	--tc-text-h4: clamp(1.125rem, 1vw + 0.5rem, 1.375rem);
	--tc-text-body: 1rem;
	--tc-text-body-lg: 1.125rem;
	--tc-text-small: 0.875rem;
	--tc-text-caption: 0.75rem;
	--tc-text-button: 0.9375rem;
	--tc-text-nav: 0.9375rem;
	--tc-text-overline: 0.75rem;

	/* ----- Font Weights ----- */
	--tc-weight-regular: 400;
	--tc-weight-medium: 500;
	--tc-weight-semibold: 600;
	--tc-weight-bold: 700;
	--tc-weight-extrabold: 800;

	/* ----- Line Heights ----- */
	--tc-leading-tight: 1.05;
	--tc-leading-snug: 1.15;
	--tc-leading-normal: 1.5;
	--tc-leading-relaxed: 1.7;

	/* ----- Letter Spacing ----- */
	--tc-tracking-tight: -0.02em;
	--tc-tracking-normal: 0;
	--tc-tracking-wide: 0.02em;
	--tc-tracking-wider: 0.06em;
	--tc-tracking-widest: 0.12em;

	/* ----- Spacing Scale (4px base) ----- */
	--tc-space-1: 0.25rem;
	--tc-space-2: 0.5rem;
	--tc-space-3: 0.75rem;
	--tc-space-4: 1rem;
	--tc-space-5: 1.25rem;
	--tc-space-6: 1.5rem;
	--tc-space-8: 2rem;
	--tc-space-10: 2.5rem;
	--tc-space-12: 3rem;
	--tc-space-16: 4rem;
	--tc-space-20: 5rem;
	--tc-space-24: 6rem;
	--tc-space-32: 8rem;

	/* ----- Border Radius ----- */
	--tc-radius-none: 0;
	--tc-radius-sm: 4px;
	--tc-radius-md: 8px;
	--tc-radius-lg: 12px;
	--tc-radius-xl: 16px;
	--tc-radius-2xl: 24px;
	--tc-radius-full: 9999px;

	/* ----- Shadows ----- */
	--tc-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
	--tc-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
	--tc-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
	--tc-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.06), 0 4px 6px rgba(0, 0, 0, 0.04);
	--tc-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.08), 0 8px 10px rgba(0, 0, 0, 0.04);
	--tc-shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);

	/* ----- Transitions ----- */
	--tc-ease-out: cubic-bezier(0.4, 0, 0.2, 1);
	--tc-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
	--tc-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--tc-duration-fast: 150ms;
	--tc-duration-normal: 300ms;
	--tc-duration-slow: 500ms;

	/* ----- Container Widths ----- */
	--tc-container-narrow: 680px;
	--tc-container-default: 1140px;
	--tc-container-wide: 1320px;

	/* ----- Z-Index Scale ----- */
	--tc-z-dropdown: 100;
	--tc-z-sticky: 200;
	--tc-z-overlay: 300;
	--tc-z-modal: 400;
	--tc-z-toast: 500;
}

/* ==========================================================================
   GLOBAL BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
	font-family: var(--tc-font-body);
	font-size: var(--tc-text-body);
	font-weight: var(--tc-weight-regular);
	line-height: var(--tc-leading-relaxed);
	color: var(--tc-gray-700);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ==========================================================================
   TYPOGRAPHY OVERRIDES
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--tc-font-heading);
	color: var(--tc-gray-900);
	line-height: var(--tc-leading-snug);
	letter-spacing: var(--tc-tracking-tight);
}

h1 { font-size: var(--tc-text-h1); font-weight: var(--tc-weight-bold); }
h2 { font-size: var(--tc-text-h2); font-weight: var(--tc-weight-bold); }
h3 { font-size: var(--tc-text-h3); font-weight: var(--tc-weight-semibold); }
h4 { font-size: var(--tc-text-h4); font-weight: var(--tc-weight-semibold); }

/* ==========================================================================
   LINK & BUTTON OVERRIDES
   ========================================================================== */

a {
	color: var(--tc-accent);
	text-decoration: none;
	transition: color var(--tc-duration-fast) var(--tc-ease-out);
}

a:hover {
	color: var(--tc-accent-hover);
}

/* Focus-visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--tc-accent);
	outline-offset: 2px;
}

/* ==========================================================================
   PREMIUM SITE HEADER
   ========================================================================== */

.tc-site-header {
	position: sticky;
	top: 0;
	z-index: var(--tc-z-sticky);
	width: 100%;
	background: var(--tc-black);
	height: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: border-color var(--tc-duration-normal) var(--tc-ease-out), box-shadow var(--tc-duration-normal) var(--tc-ease-out);
}

.tc-site-header.scrolled {
	border-bottom-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.tc-header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	height: 100%;
}

/* Brand / Logo */
.tc-header-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	height: 100%;
}

.tc-logo-link {
	display: flex;
	align-items: center;
	height: 100%;
	text-decoration: none;
}

.tc-logo-link img,
.tc-header-brand .custom-logo-link img {
	max-height: 48px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

.tc-logo-text {
	font-family: var(--tc-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--tc-white);
	line-height: 1;
	letter-spacing: -0.02em;
}

/* Navigation */
.tc-header-nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	height: 100%;
}

.tc-header-nav ul {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 28px;
}

.tc-header-nav ul li {
	display: flex;
	align-items: center;
}

.tc-header-nav ul li a {
	font-family: var(--tc-font-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--tc-white);
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: 0.01em;
	transition: color var(--tc-duration-fast) var(--tc-ease-out);
	position: relative;
	padding: 4px 0;
}

.tc-header-nav ul li a:hover,
.tc-header-nav ul li.current-menu-item a,
.tc-header-nav ul li.current-menu-ancestor a {
	color: var(--tc-accent);
}

.tc-header-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--tc-accent);
	transition: width var(--tc-duration-normal) var(--tc-ease-out);
}

.tc-header-nav ul li a:hover::after,
.tc-header-nav ul li.current-menu-item a::after,
.tc-header-nav ul li.current-menu-ancestor a::after {
	width: 100%;
}

/* Mobile Toggle */
.tc-header-toggle {
	display: none;
	width: 24px;
	height: 18px;
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

.tc-toggle-bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--tc-white);
	border-radius: 1px;
	position: absolute;
	left: 0;
	transition: all var(--tc-duration-fast) var(--tc-ease-out);
}

.tc-toggle-bar:nth-child(1) { top: 0; }
.tc-toggle-bar:nth-child(2) { top: 8px; }
.tc-toggle-bar:nth-child(3) { top: 16px; }

.tc-header-toggle[aria-expanded="true"] .tc-toggle-bar:nth-child(1) {
	top: 8px;
	transform: rotate(45deg);
}
.tc-header-toggle[aria-expanded="true"] .tc-toggle-bar:nth-child(2) {
	opacity: 0;
}
.tc-header-toggle[aria-expanded="true"] .tc-toggle-bar:nth-child(3) {
	top: 8px;
	transform: rotate(-45deg);
}

/* Mobile Menu */
.tc-mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--tc-black);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 12px 24px;
	flex-direction: column;
	gap: 4px;
}

.tc-mobile-menu.is-open {
	display: flex;
}

.tc-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tc-mobile-menu ul li a {
	display: block;
	width: 100%;
	padding: 14px 16px;
	font-family: var(--tc-font-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--tc-white);
	text-decoration: none;
	border-radius: 8px;
	transition: background var(--tc-duration-fast) var(--tc-ease-out), color var(--tc-duration-fast) var(--tc-ease-out);
	text-align: left;
}

.tc-mobile-menu ul li a:hover,
.tc-mobile-menu ul li.current-menu-item a {
	color: var(--tc-accent);
	background: rgba(200, 16, 46, 0.08);
}

.menu-item.home-menu-item a,
.menu-item.current-menu-item a {
	color: #fff;
}

.tc-mobile-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	margin-top: 12px;
	padding: 0 24px;
	font-family: var(--tc-font-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--tc-white);
	background: var(--tc-accent);
	border: 2px solid var(--tc-accent);
	border-radius: 999px;
	text-decoration: none;
	text-align: center;
	transition: all var(--tc-duration-fast) var(--tc-ease-out);
}

.tc-mobile-cta:hover {
	background: var(--tc-accent-hover);
	border-color: var(--tc-accent-hover);
}

/* Tablet */
@media (max-width: 1024px) {
	.tc-site-header {
		height: 72px;
	}

	.tc-header-inner {
		padding: 0 20px;
	}

	.tc-logo-link img,
	.tc-header-brand .custom-logo-link img {
		max-height: 44px;
	}

	.tc-header-nav ul {
		gap: 22px;
	}

	.tc-header-nav ul li a {
		font-size: 15px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.tc-site-header {
		height: 64px;
	}

	.tc-header-inner {
		padding: 0 16px;
	}

	.tc-logo-link img,
	.tc-header-brand .custom-logo-link img {
		max-height: 38px;
	}

	.tc-header-nav {
		display: none;
	}

	.tc-header-toggle {
		display: block;
	}

	.tc-mobile-menu {
		padding: 12px 16px;
	}
}

/* Very small devices */
@media (max-width: 380px) {
	.tc-site-header {
		height: 60px;
	}

	.tc-header-inner {
		padding: 0 12px;
	}

	.tc-logo-link img,
	.tc-header-brand .custom-logo-link img {
		max-height: 34px;
	}
}


.tc-scroll-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tc-primary);
	color: var(--tc-white);
	border: none;
	border-radius: var(--tc-radius-full);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--tc-duration-normal) var(--tc-ease-out);
	z-index: var(--tc-z-sticky);
	box-shadow: var(--tc-shadow-lg);
}

.tc-scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tc-scroll-to-top:hover {
	background: var(--tc-accent);
	transform: translateY(-2px);
	box-shadow: var(--tc-shadow-xl);
}

.tc-scroll-to-top svg {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   CONTACT FORM — DUAL SUBMISSION VALIDATION
   ========================================================================== */

.tc-field-error {
	border-color: #DC2626 !important;
	background-color: #FEF2F2 !important;
}

.tc-form-success {
	display: none;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	padding: 20px 24px;
	margin-top: 16px;
	color: #166534;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
}

.tc-form-success.show {
	display: block;
	animation: tcFadeIn 0.4s ease;
}

.tc-form-error {
	display: none;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 12px;
	padding: 20px 24px;
	margin-top: 16px;
	color: #991b1b;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	line-height: 1.6;
	text-align: center;
}

.tc-form-error.show {
	display: block;
	animation: tcFadeIn 0.4s ease;
}

@keyframes tcFadeIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   CONTACT FORM — DUAL SUBMISSION BUTTONS
   ========================================================================== */

.tc-contact-form .e-form__buttons {
	display: none !important;
}

.tc-dual-buttons {
	display: flex;
	gap: 16px;
	width: 100%;
	margin-top: 8px;
}

.tc-btn-whatsapp,
.tc-btn-email {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: 1;
	height: 52px;
	padding: 0 24px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #FFFFFF;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	letter-spacing: 0.01em;
}

.tc-btn-whatsapp {
	background: #25D366;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.tc-btn-whatsapp:hover {
	background: #1EB85A;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
	transform: translateY(-2px);
}

.tc-btn-whatsapp:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.tc-btn-email {
	background: #C8102E;
	box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.tc-btn-email:hover {
	background: #A30D24;
	box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
	transform: translateY(-2px);
}

.tc-btn-email:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
}

.tc-btn-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Tablet */
@media (max-width: 1024px) {
	.tc-dual-buttons {
		gap: 12px;
	}

	.tc-btn-whatsapp,
	.tc-btn-email {
		height: 48px;
		padding: 0 20px;
		font-size: 14px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.tc-dual-buttons {
		flex-direction: column;
		gap: 12px;
	}

	.tc-btn-whatsapp,
	.tc-btn-email {
		width: 100%;
		height: 52px;
		font-size: 15px;
	}
}


/* ==========================================================================
   SERVICES PAGE — PREMIUM LAYOUT
   ========================================================================== */

.tc-services-hero {
	padding: 4rem 1.5rem 3rem;
	text-align: center;
	background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 100%);
}

.tc-services-hero-inner {
	max-width: 800px;
	margin: 0 auto;
}

.tc-services-hero h1 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 1rem;
	color: var(--tc-primary);
}

.tc-services-hero p {
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
	color: var(--tc-gray-600);
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.tc-services-intro {
	padding: 0 1.5rem 3rem;
}

.tc-services-intro-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.tc-services-intro-inner p {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--tc-gray-600);
	margin: 0;
}

.tc-services-section {
	padding: 0 1.5rem 4rem;
}

.tc-services-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

@media (max-width: 1024px) {
	.tc-services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem;
	}
}

@media (max-width: 767px) {
	.tc-services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.tc-service-card {
	background: #FFFFFF;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
	position: relative;
	overflow: hidden;
}

.tc-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: transparent;
	transition: background 0.35s ease;
}

.tc-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
	border-color: rgba(200, 16, 46, 0.15);
}

.tc-service-card:hover::before {
	background: #C8102E;
}

.tc-service-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: var(--tc-accent);
	flex-shrink: 0;
}

.tc-service-icon svg {
	width: 32px;
	height: 32px;
	stroke-width: 1.5;
}

.tc-service-card h2 {
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin: 0 0 0.75rem;
	color: var(--tc-primary);
}

.tc-service-card p {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--tc-gray-600);
	margin: 0;
	flex-grow: 1;
}

.tc-services-cta {
	padding: 5rem 1.5rem;
	text-align: center;
	background: linear-gradient(180deg, rgba(0,0,0,0.015) 0%, rgba(200,16,46,0.02) 100%);
	border-top: 1px solid rgba(0,0,0,0.04);
}

.tc-services-cta-inner {
	max-width: 720px;
	margin: 0 auto;
}

.tc-services-cta h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 1rem;
	color: var(--tc-primary);
}

.tc-services-cta p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--tc-gray-600);
	margin: 0 0 2rem;
}

.tc-services-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.tc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2.2rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

.tc-btn-primary {
	background: #C8102E;
	color: #FFFFFF;
	border-color: #C8102E;
	box-shadow: 0 4px 16px rgba(200, 16, 46, 0.25);
}

.tc-btn-primary:hover {
	background: #A30D25;
	border-color: #A30D25;
	box-shadow: 0 6px 24px rgba(200, 16, 46, 0.35);
	transform: translateY(-2px);
}

.tc-btn-secondary {
	background: transparent;
	color: var(--tc-primary);
	border-color: rgba(0, 0, 0, 0.15);
}

.tc-btn-secondary:hover {
	border-color: var(--tc-primary);
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.tc-services-hero {
		padding: 3rem 1.25rem 2rem;
	}
	.tc-service-card {
		padding: 1.75rem;
	}
	.tc-services-cta {
		padding: 3.5rem 1.25rem;
	}
	.tc-services-cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	.tc-btn {
		width: 100%;
	}
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.tc-process-section {
	padding: 5rem 1.5rem;
	background: #FAFAFA;
}

.tc-process-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 4rem;
}

.tc-process-header h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 1rem;
	color: var(--tc-primary);
}

.tc-process-header p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--tc-gray-600);
	margin: 0;
}

.tc-process-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	position: relative;
}

.tc-process-card {
	background: #FFFFFF;
	border-radius: 18px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.tc-process-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tc-process-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #C8102E;
	color: #FFFFFF;
	font-size: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	flex-shrink: 0;
}

.tc-process-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--tc-accent);
	flex-shrink: 0;
}

.tc-process-icon svg {
	width: 32px;
	height: 32px;
	stroke-width: 1.5;
}

.tc-process-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin: 0 0 0.75rem;
	color: var(--tc-primary);
}

.tc-process-card p {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--tc-gray-600);
	margin: 0;
	flex-grow: 1;
}

@media (max-width: 1200px) {
	.tc-process-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 1024px) {
	.tc-process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 767px) {
	.tc-process-section {
		padding: 3.5rem 1.25rem;
	}
	.tc-process-header {
		margin-bottom: 2.5rem;
	}
	.tc-process-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	.tc-process-card {
		padding: 1.75rem;
	}
}

/* ==========================================================================
   PORTFOLIO CARDS
   ========================================================================== */

.tc-portfolio-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--tc-radius-lg) !important;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tc-portfolio-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.tc-portfolio-card .elementor-cta__bg {
	transition: transform 0.6s ease;
}

.tc-portfolio-card:hover .elementor-cta__bg {
	transform: scale(1.05);
}

.tc-portfolio-card .elementor-cta__content {
	transition: opacity 0.4s ease;
}

.tc-portfolio-card .elementor-cta__button {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.tc-portfolio-card:hover .elementor-cta__button {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   HOW IT WORKS - STEP CARDS & TIMELINE
   ========================================================================== */

.tc-step-card {
	border-radius: var(--tc-radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	text-align: center;
}

.tc-step-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tc-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #C8102E;
	color: #FFFFFF;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
}

.tc-step-card .elementor-icon {
	margin-bottom: 8px;
}

/* Desktop: horizontal connecting line */
@media (min-width: 1025px) {
	.tc-step-card::after {
		content: '';
		position: absolute;
		top: 50px;
		right: -16%;
		width: 32%;
		height: 2px;
		background: #E0E0E0;
		z-index: 0;
	}

	.tc-step-card:last-child::after {
		display: none;
	}
}

/* Tablet: 2x2 grid */
@media (min-width: 768px) and (max-width: 1024px) {
	.tc-step-card::after {
		display: none;
	}
}

/* Mobile: vertical timeline */
@media (max-width: 767px) {
	.tc-step-card {
		margin-bottom: 20px;
	}

	.tc-step-card::after {
		content: '';
		position: absolute;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
		width: 2px;
		height: 20px;
		background: #E0E0E0;
	}

	.tc-step-card:last-child::after {
		display: none;
	}
}

/* Scroll reveal animation */
.tc-step-card {
	opacity: 0;
	transform: translateY(20px);
	animation: tcFadeInUp 0.6s ease forwards;
}

.tc-step-card:nth-child(1) { animation-delay: 0.1s; }
.tc-step-card:nth-child(2) { animation-delay: 0.2s; }
.tc-step-card:nth-child(3) { animation-delay: 0.3s; }
.tc-step-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes tcFadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   WHY CHOOSE US CARDS
   ========================================================================== */

.tc-why-card {
	border-radius: var(--tc-radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.tc-why-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tc-why-card .elementor-icon-box-icon {
	transition: transform 0.3s ease;
}

.tc-why-card:hover .elementor-icon-box-icon {
	transform: scale(1.15);
}

/* ==========================================================================
   TESTIMONIAL CARDS
   ========================================================================== */

.tc-testimonial-card {
	border-radius: var(--tc-radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #F0F0F0;
}

.tc-testimonial-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tc-testimonial-stars {
	color: #C8102E;
	font-size: 18px;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.tc-testimonial-quote {
	color: #404040;
	font-style: italic;
	line-height: 1.7;
	margin: 0;
}

/* ==========================================================================
   CTA BANNER - DARK SECTION OVERRIDES
   ========================================================================== */

.tc-cta-banner-heading .elementor-heading-title {
	color: #FFFFFF;
}

.tc-cta-banner-heading .elementor-heading-title a {
	color: #FFFFFF;
	text-decoration: none;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
	.tc-scroll-to-top,
	.ht-ctc {
		display: none !important;
	}
}

