/* ============================================
   GLOBAL FUNDS MANAGER - MAIN STYLESHEET
   Diseño Profesional Financiero
   ============================================ */

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS VARIABLES
   2. RESET & BASE
   3. TYPOGRAPHY
   4. UTILITIES
   5. BUTTONS
   6. HEADER & NAVIGATION
   7. HERO SECTION
   8. SERVICES SECTION
   9. QUOTE SECTION
   10. ABOUT SECTION
   11. CTA SECTION
   12. TESTIMONIALS SECTION
   13. PRICING SECTION
   14. CONTACT SECTION
   15. FOOTER
   16. FLOATING ELEMENTS
   17. ANIMATIONS
   18. MEDIA QUERIES
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
	/* Primary Colors - Dark Theme */
	--color-primary: #0D0D0D;
	--color-primary-light: #1A1A1A;
	--color-primary-dark: #000000;

	/* Gold/Amber Accent */
	--color-gold: #D4AF37;
	--color-gold-light: #E6C555;
	--color-gold-dark: #B8962F;
	--color-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5D77A 50%, #D4AF37 100%);

	/* Secondary Colors */
	--color-secondary: #1E3A5F;
	--color-secondary-light: #2D5580;

	/* Neutral Colors */
	--color-white: #FFFFFF;
	--color-off-white: #F8F9FA;
	--color-gray-100: #E9ECEF;
	--color-gray-200: #DEE2E6;
	--color-gray-300: #CED4DA;
	--color-gray-400: #ADB5BD;
	--color-gray-500: #6C757D;
	--color-gray-600: #495057;
	--color-gray-700: #343A40;
	--color-gray-800: #212529;

	/* Status Colors */
	--color-success: #28A745;
	--color-warning: #FFC107;
	--color-danger: #DC3545;
	--color-info: #17A2B8;

	/* WhatsApp */
	--color-whatsapp: #25D366;

	/* Typography */
	--font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-secondary: 'Playfair Display', Georgia, serif;

	/* Font Sizes */
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;
	--text-4xl: 2.25rem;
	--text-5xl: 3rem;
	--text-6xl: 3.75rem;
	--text-7xl: 4.5rem;

	/* Font Weights */
	--font-light: 300;
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
	--font-extrabold: 800;

	/* Line Heights */
	--leading-tight: 1.2;
	--leading-snug: 1.375;
	--leading-normal: 1.5;
	--leading-relaxed: 1.625;
	--leading-loose: 2;

	/* Spacing */
	--spacing-1: 0.25rem;
	--spacing-2: 0.5rem;
	--spacing-3: 0.75rem;
	--spacing-4: 1rem;
	--spacing-5: 1.25rem;
	--spacing-6: 1.5rem;
	--spacing-8: 2rem;
	--spacing-10: 2.5rem;
	--spacing-12: 3rem;
	--spacing-16: 4rem;
	--spacing-20: 5rem;
	--spacing-24: 6rem;
	--spacing-32: 8rem;

	/* Border Radius */
	--radius-sm: 0.25rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-2xl: 1.5rem;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.3);
	--shadow-dark: 0 20px 40px -15px rgba(0, 0, 0, 0.5);

	/* Transitions */
	--transition-fast: 150ms ease;
	--transition-base: 300ms ease;
	--transition-slow: 500ms ease;
	--transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

	/* Z-index */
	--z-dropdown: 100;
	--z-sticky: 200;
	--z-fixed: 300;
	--z-modal-backdrop: 400;
	--z-modal: 500;
	--z-tooltip: 600;

	/* Container */
	--container-max: 1280px;
	--container-padding: 1.5rem;

	/* Header */
	--header-height: 80px;
	--header-height-scrolled: 70px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-primary);
	font-size: var(--text-base);
	font-weight: var(--font-regular);
	line-height: var(--leading-normal);
	color: var(--color-gray-700);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color var(--transition-base);
}

ul,
ol {
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	font-weight: var(--font-bold);
	line-height: var(--leading-tight);
	color: var(--color-primary);
}

h1 {
	font-size: var(--text-5xl);
}

h2 {
	font-size: var(--text-4xl);
}

h3 {
	font-size: var(--text-2xl);
}

h4 {
	font-size: var(--text-xl);
}

h5 {
	font-size: var(--text-lg);
}

h6 {
	font-size: var(--text-base);
}

p {
	margin-bottom: var(--spacing-4);
}

.text-gold {
	color: var(--color-gold);
}

.text-gradient {
	background: var(--color-gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ============================================
   4. UTILITIES
   ============================================ */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto var(--spacing-16);
}

.section-header__subtitle {
	display: inline-block;
	font-size: var(--text-sm);
	font-weight: var(--font-semibold);
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--color-gold);
	margin-bottom: var(--spacing-4);
	position: relative;
	padding: 0 var(--spacing-8);
}

.section-header__subtitle::before,
.section-header__subtitle::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 30px;
	height: 2px;
	background: var(--color-gold);
	transform: translateY(-50%);
}

.section-header__subtitle::before {
	left: 0;
}

.section-header__subtitle::after {
	right: 0;
}

.section-header__title {
	font-size: var(--text-4xl);
	margin-bottom: var(--spacing-4);
}

.section-header__description {
	font-size: var(--text-lg);
	color: var(--color-gray-500);
	line-height: var(--leading-relaxed);
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-2);
	padding: var(--spacing-4) var(--spacing-8);
	font-size: var(--text-base);
	font-weight: var(--font-semibold);
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
	cursor: pointer;
	border: 2px solid transparent;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn--primary {
	background: var(--color-gold-gradient);
	color: var(--color-primary);
	border-color: var(--color-gold);
	box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px -10px rgba(212, 175, 55, 0.5);
}

.btn--outline {
	background: transparent;
	color: var(--color-gold);
	border-color: var(--color-gold);
}

.btn--outline:hover {
	background: var(--color-gold);
	color: var(--color-primary);
}

.btn--outline-light {
	background: transparent;
	color: var(--color-white);
	border-color: var(--color-white);
}

.btn--outline-light:hover {
	background: var(--color-white);
	color: var(--color-primary);
}

.btn--outline-dark {
	background: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn--outline-dark:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

.btn--whatsapp {
	background: var(--color-whatsapp);
	color: var(--color-white);
	border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
	background: #1DA851;
	border-color: #1DA851;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.5);
}

.btn--block {
	width: 100%;
}

.btn i {
	font-size: var(--text-sm);
	transition: transform var(--transition-base);
}

.btn:hover i {
	transform: translateX(5px);
}

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: var(--z-fixed);
	transition: all var(--transition-base);
}

.header.scrolled {
	background: rgba(13, 13, 13, 0.95);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow-dark);
}

.header__top {
	background: var(--color-primary);
	padding: var(--spacing-2) 0;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header__top-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__contact {
	display: flex;
	gap: var(--spacing-6);
}

.header__phone,
.header__email {
	display: flex;
	align-items: center;
	gap: var(--spacing-2);
	color: var(--color-gray-300);
	font-size: var(--text-sm);
	transition: color var(--transition-base);
}

.header__phone:hover,
.header__email:hover {
	color: var(--color-gold);
}

.header__phone i,
.header__email i {
	color: var(--color-gold);
}

.header__social {
	display: flex;
	gap: var(--spacing-3);
}

.header__social-link {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gray-400);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	transition: all var(--transition-base);
}

.header__social-link:hover {
	color: var(--color-primary);
	background: var(--color-gold);
	border-color: var(--color-gold);
	transform: translateY(-2px);
}

/* Navbar */
.navbar {
	padding: var(--spacing-4) 0;
	background: rgba(13, 13, 13, 0.8);
	backdrop-filter: blur(10px);
}

.header.scrolled .navbar {
	padding: var(--spacing-3) 0;
}

.navbar__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar__logo {
	display: flex;
	align-items: center;
	gap: var(--spacing-3);
}

.navbar__logo-img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.navbar__logo-text {
	display: flex;
	flex-direction: column;
}

.navbar__logo-name {
	font-size: var(--text-lg);
	font-weight: var(--font-bold);
	color: var(--color-white);
}

.navbar__logo-tagline {
	font-size: var(--text-xs);
	color: var(--color-gray-400);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.navbar__menu {
	display: flex;
	align-items: center;
	gap: var(--spacing-1);
}

.navbar__link {
	padding: var(--spacing-2) var(--spacing-4);
	color: var(--color-gray-300);
	font-size: var(--text-sm);
	font-weight: var(--font-medium);
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
	position: relative;
}

.navbar__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--color-gold);
	transition: all var(--transition-base);
	transform: translateX(-50%);
}

.navbar__link:hover,
.navbar__link.active {
	color: var(--color-gold);
}

.navbar__link:hover::after,
.navbar__link.active::after {
	width: 70%;
}

.navbar__link--btn {
	background: var(--color-gold-gradient);
	color: var(--color-primary) !important;
	padding: var(--spacing-2) var(--spacing-5);
	border-radius: var(--radius-full);
	font-weight: var(--font-semibold);
}

.navbar__link--btn::after {
	display: none;
}

.navbar__link--btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-gold);
}

/* Mobile Toggle */
.navbar__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: var(--spacing-2);
}

.navbar__toggle-bar {
	width: 25px;
	height: 3px;
	background: var(--color-white);
	border-radius: 3px;
	transition: all var(--transition-base);
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
	overflow: hidden;
	padding-top: calc(var(--header-height) + 60px);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: url('../img/abstract-geometric-art.webp') center/cover no-repeat;
	opacity: 0.1;
}

.hero__particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-12);
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero__subtitle {
	display: inline-block;
	font-size: var(--text-sm);
	font-weight: var(--font-semibold);
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--color-gold);
	margin-bottom: var(--spacing-4);
	padding: var(--spacing-2) var(--spacing-4);
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: var(--radius-full);
}

.hero__title {
	font-size: var(--text-6xl);
	font-weight: var(--font-extrabold);
	color: var(--color-white);
	margin-bottom: var(--spacing-6);
	line-height: 1.1;
}

.hero__description {
	font-size: var(--text-xl);
	color: var(--color-gray-300);
	margin-bottom: var(--spacing-8);
	line-height: var(--leading-relaxed);
	max-width: 500px;
}

.hero__buttons {
	display: flex;
	gap: var(--spacing-4);
	margin-bottom: var(--spacing-12);
}

.hero__stats {
	display: flex;
	gap: var(--spacing-10);
	padding-top: var(--spacing-8);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
	text-align: center;
}

.hero__stat-number {
	display: block;
	font-size: var(--text-4xl);
	font-weight: var(--font-bold);
	color: var(--color-gold);
	line-height: 1;
}

.hero__stat-number::after {
	content: '+';
}

.hero__stat-label {
	font-size: var(--text-sm);
	color: var(--color-gray-400);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Hero Image */
.hero__image {
	position: relative;
}

.hero__image-wrapper {
	position: relative;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	box-shadow: var(--shadow-2xl);
}

.hero__img {
	width: 100%;
	border-radius: var(--radius-2xl);
}

.hero__image-decoration {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 100%;
	height: 100%;
	border: 3px solid var(--color-gold);
	border-radius: var(--radius-2xl);
	z-index: -1;
}

/* Hero Scroll */
.hero__scroll {
	position: absolute;
	bottom: var(--spacing-8);
	left: 50%;
	transform: translateX(-50%);
}

.hero__scroll-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-2);
	color: var(--color-gray-400);
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 2px;
	animation: bounce 2s infinite;
}

.hero__scroll-link i {
	color: var(--color-gold);
}

/* ============================================
   8. SERVICES SECTION
   ============================================ */
.services {
	padding: var(--spacing-24) 0;
	background: var(--color-off-white);
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-8);
}

.service-card {
	position: relative;
	background: var(--color-white);
	border-radius: var(--radius-xl);
	padding: var(--spacing-10);
	box-shadow: var(--shadow-lg);
	transition: all var(--transition-base);
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--color-gold-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition-base);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-2xl);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card--featured {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	color: var(--color-white);
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__description,
.service-card--featured .service-card__features li {
	color: var(--color-white);
}

.service-card__badge {
	position: absolute;
	top: var(--spacing-4);
	right: var(--spacing-4);
	background: var(--color-gold);
	color: var(--color-primary);
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	padding: var(--spacing-1) var(--spacing-3);
	border-radius: var(--radius-full);
	text-transform: uppercase;
}

.service-card__icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
	border-radius: var(--radius-xl);
	margin-bottom: var(--spacing-6);
}

.service-card__icon i {
	font-size: var(--text-3xl);
	color: var(--color-gold);
}

.service-card__title {
	font-size: var(--text-xl);
	margin-bottom: var(--spacing-4);
}

.service-card__description {
	color: var(--color-gray-500);
	margin-bottom: var(--spacing-6);
	line-height: var(--leading-relaxed);
}

.service-card__features {
	margin-bottom: var(--spacing-6);
}

.service-card__features li {
	display: flex;
	align-items: center;
	gap: var(--spacing-3);
	color: var(--color-gray-600);
	margin-bottom: var(--spacing-3);
	font-size: var(--text-sm);
}

.service-card__features li i {
	color: var(--color-gold);
	font-size: var(--text-xs);
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-2);
	color: var(--color-gold);
	font-weight: var(--font-semibold);
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.service-card__link i {
	transition: transform var(--transition-base);
}

.service-card__link:hover i {
	transform: translateX(5px);
}

/* ============================================
   9. QUOTE SECTION
   ============================================ */
.quote-section {
	padding: var(--spacing-20) 0;
	background: var(--color-primary);
	position: relative;
	overflow: hidden;
}

.quote-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('../img/dots.webp') repeat;
	opacity: 0.05;
}

.quote-box {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.quote-box__icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-gold);
	border-radius: var(--radius-full);
	margin: 0 auto var(--spacing-8);
}

.quote-box__icon i {
	font-size: var(--text-2xl);
	color: var(--color-primary);
}

.quote-box__text {
	font-family: var(--font-secondary);
	font-size: var(--text-2xl);
	font-style: italic;
	color: var(--color-gray-300);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--spacing-8);
}

.quote-box__author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-4);
}

.quote-box__author-name {
	font-size: var(--text-lg);
	font-weight: var(--font-bold);
	color: var(--color-gold);
	display: block;
}

.quote-box__author-role {
	font-size: var(--text-sm);
	color: var(--color-gray-500);
}

/* ============================================
   10. ABOUT SECTION
   ============================================ */
.about {
	padding: var(--spacing-24) 0;
	background: var(--color-white);
}

.about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-16);
	align-items: center;
}

.about__image {
	position: relative;
}

.about__image-wrapper {
	position: relative;
	border-radius: var(--radius-2xl);
	overflow: hidden;
	box-shadow: var(--shadow-2xl);
}

.about__img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.about__image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
}

.about__experience-badge {
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 150px;
	height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--color-gold-gradient);
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-gold);
	color: var(--color-primary);
	text-align: center;
}

.about__experience-number {
	font-size: var(--text-4xl);
	font-weight: var(--font-extrabold);
	line-height: 1;
}

.about__experience-text {
	font-size: var(--text-xs);
	font-weight: var(--font-semibold);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.about__content .section-header__subtitle,
.about__content .section-header__title {
	text-align: left;
}

.about__content .section-header__subtitle::before,
.about__content .section-header__subtitle::after {
	display: none;
}

.about__content .section-header__subtitle {
	padding-left: 0;
}

.about__description {
	font-size: var(--text-lg);
	color: var(--color-gray-500);
	margin-bottom: var(--spacing-8);
	line-height: var(--leading-relaxed);
}

.about__features {
	margin-bottom: var(--spacing-8);
}

.about__feature {
	display: flex;
	gap: var(--spacing-4);
	margin-bottom: var(--spacing-6);
	padding-bottom: var(--spacing-6);
	border-bottom: 1px solid var(--color-gray-200);
}

.about__feature:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.about__feature-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-gold-gradient);
	border-radius: var(--radius-lg);
	flex-shrink: 0;
}

.about__feature-icon span {
	font-size: var(--text-lg);
	font-weight: var(--font-bold);
	color: var(--color-primary);
}

.about__feature-content h4 {
	font-size: var(--text-lg);
	margin-bottom: var(--spacing-1);
}

.about__feature-content p {
	font-size: var(--text-sm);
	color: var(--color-gray-500);
	margin-bottom: 0;
}

/* ============================================
   11. CTA SECTION
   ============================================ */
.cta-section {
	position: relative;
	padding: var(--spacing-24) 0;
	background: url('../img/building-exterior.webp') center/cover no-repeat fixed;
}

.cta-section__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(30, 58, 95, 0.9) 100%);
}

.cta-section__content {
	position: relative;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-section__title {
	font-size: var(--text-4xl);
	color: var(--color-white);
	margin-bottom: var(--spacing-6);
}

.cta-section__description {
	font-size: var(--text-lg);
	color: var(--color-gray-300);
	margin-bottom: var(--spacing-8);
	line-height: var(--leading-relaxed);
}

.cta-section__buttons {
	display: flex;
	justify-content: center;
	gap: var(--spacing-4);
}

/* ============================================
   12. TESTIMONIALS SECTION
   ============================================ */
.testimonials {
	padding: var(--spacing-24) 0;
	background: var(--color-off-white);
}

.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-8);
}

.testimonial-card {
	background: var(--color-white);
	border-radius: var(--radius-xl);
	padding: var(--spacing-8);
	box-shadow: var(--shadow-lg);
	transition: all var(--transition-base);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-2xl);
}

.testimonial-card__header {
	display: flex;
	align-items: center;
	gap: var(--spacing-4);
	margin-bottom: var(--spacing-6);
}

.testimonial-card__avatar {
	width: 70px;
	height: 70px;
	border-radius: var(--radius-full);
	overflow: hidden;
	border: 3px solid var(--color-gold);
}

.testimonial-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-card__info {
	flex: 1;
}

.testimonial-card__name {
	font-size: var(--text-lg);
	font-weight: var(--font-bold);
	margin-bottom: var(--spacing-1);
}

.testimonial-card__role {
	font-size: var(--text-sm);
	color: var(--color-gray-500);
}

.testimonial-card__rating {
	color: var(--color-gold);
	font-size: var(--text-sm);
}

.testimonial-card__rating i {
	margin-left: 2px;
}

.testimonial-card__content {
	position: relative;
	margin-bottom: var(--spacing-6);
}

.testimonial-card__quote-icon {
	color: var(--color-gold);
	font-size: var(--text-3xl);
	opacity: 0.3;
	position: absolute;
	top: -10px;
	left: 0;
}

.testimonial-card__content p {
	color: var(--color-gray-600);
	line-height: var(--leading-relaxed);
	padding-left: var(--spacing-10);
	margin-bottom: 0;
}

.testimonial-card__service {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-2);
	padding: var(--spacing-2) var(--spacing-4);
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: var(--radius-full);
	font-size: var(--text-sm);
	color: var(--color-gold);
}

/* ============================================
   13. PRICING SECTION
   ============================================ */
.pricing {
	padding: var(--spacing-24) 0;
	background: var(--color-white);
}

.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-8);
	align-items: start;
}

.pricing-card {
	position: relative;
	background: var(--color-white);
	border-radius: var(--radius-xl);
	padding: var(--spacing-10);
	border: 2px solid var(--color-gray-200);
	transition: all var(--transition-base);
	text-align: center;
}

.pricing-card:hover {
	border-color: var(--color-gold);
	box-shadow: var(--shadow-xl);
}

.pricing-card--featured {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	border-color: var(--color-gold);
	transform: scale(1.05);
	box-shadow: var(--shadow-2xl);
}

.pricing-card--featured .pricing-card__title,
.pricing-card--featured .pricing-card__subtitle,
.pricing-card--featured .pricing-card__currency,
.pricing-card--featured .pricing-card__amount,
.pricing-card--featured .pricing-card__period,
.pricing-card--featured .pricing-card__features li {
	color: var(--color-white);
}

.pricing-card__badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-gold);
	color: var(--color-primary);
	font-size: var(--text-xs);
	font-weight: var(--font-bold);
	padding: var(--spacing-2) var(--spacing-4);
	border-radius: var(--radius-full);
	text-transform: uppercase;
}

.pricing-card__header {
	margin-bottom: var(--spacing-6);
}

.pricing-card__title {
	font-size: var(--text-2xl);
	font-weight: var(--font-bold);
	margin-bottom: var(--spacing-1);
}

.pricing-card__subtitle {
	font-size: var(--text-sm);
	color: var(--color-gray-500);
}

.pricing-card__price {
	margin-bottom: var(--spacing-8);
	padding-bottom: var(--spacing-8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:not(.pricing-card--featured) .pricing-card__price {
	border-bottom-color: var(--color-gray-200);
}

.pricing-card__currency {
	font-size: var(--text-2xl);
	font-weight: var(--font-bold);
	color: var(--color-gold);
	vertical-align: top;
}

.pricing-card__amount {
	font-size: var(--text-5xl);
	font-weight: var(--font-extrabold);
	color: var(--color-primary);
	line-height: 1;
}

.pricing-card--featured .pricing-card__amount {
	color: var(--color-gold);
}

.pricing-card__period {
	font-size: var(--text-sm);
	color: var(--color-gray-500);
}

.pricing-card__features {
	margin-bottom: var(--spacing-8);
	text-align: left;
}

.pricing-card__features li {
	display: flex;
	align-items: center;
	gap: var(--spacing-3);
	padding: var(--spacing-3) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: var(--color-gray-600);
}

.pricing-card:not(.pricing-card--featured) .pricing-card__features li {
	border-bottom-color: var(--color-gray-100);
}

.pricing-card__features li:last-child {
	border-bottom: none;
}

.pricing-card__features li i.fa-check {
	color: var(--color-success);
}

.pricing-card__features li i.fa-times {
	color: var(--color-danger);
	opacity: 0.5;
}

/* ============================================
   14. CONTACT SECTION
   ============================================ */
.contact {
	padding: var(--spacing-24) 0;
	background: var(--color-off-white);
}

.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-12);
	align-items: start;
}

.contact__info .section-header__subtitle,
.contact__info .section-header__title {
	text-align: left;
}

.contact__info .section-header__subtitle::before,
.contact__info .section-header__subtitle::after {
	display: none;
}

.contact__info .section-header__subtitle {
	padding-left: 0;
}

.contact__description {
	font-size: var(--text-lg);
	color: var(--color-gray-500);
	margin-bottom: var(--spacing-8);
}

.contact__methods {
	display: grid;
	gap: var(--spacing-6);
}

.contact__method {
	display: flex;
	gap: var(--spacing-4);
	padding: var(--spacing-4);
	background: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	transition: all var(--transition-base);
}

.contact__method:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-lg);
}

.contact__method-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-gold-gradient);
	border-radius: var(--radius-lg);
	flex-shrink: 0;
}

.contact__method-icon i {
	font-size: var(--text-xl);
	color: var(--color-primary);
}

.contact__method-content h4 {
	font-size: var(--text-base);
	font-weight: var(--font-semibold);
	margin-bottom: var(--spacing-1);
}

.contact__method-content p {
	font-size: var(--text-sm);
	color: var(--color-gray-500);
	margin-bottom: 0;
}

.contact__method-content a {
	color: var(--color-gray-500);
	transition: color var(--transition-base);
}

.contact__method-content a:hover {
	color: var(--color-gold);
}

.contact__map {
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.contact__map iframe {
	display: block;
}

/* ============================================
   15. FOOTER
   ============================================ */
.footer {
	background: var(--color-primary);
	color: var(--color-gray-300);
}

.footer__main {
	padding: var(--spacing-16) 0;
}

.footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: var(--spacing-10);
}

.footer__logo {
	display: inline-block;
	margin-bottom: var(--spacing-4);
}

.footer__logo img {
	width: 80px;
	height: 80px;
}

.footer__description {
	color: var(--color-gray-400);
	margin-bottom: var(--spacing-6);
	line-height: var(--leading-relaxed);
}

.footer__social {
	display: flex;
	gap: var(--spacing-3);
}

.footer__social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	color: var(--color-gray-400);
	transition: all var(--transition-base);
}

.footer__social-link:hover {
	background: var(--color-gold);
	color: var(--color-primary);
	transform: translateY(-3px);
}

.footer__title {
	font-size: var(--text-lg);
	font-weight: var(--font-bold);
	color: var(--color-white);
	margin-bottom: var(--spacing-6);
	position: relative;
	padding-bottom: var(--spacing-3);
}

.footer__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--color-gold);
}

.footer__links ul li {
	margin-bottom: var(--spacing-3);
}

.footer__links ul li a {
	color: var(--color-gray-400);
	transition: all var(--transition-base);
	display: inline-block;
}

.footer__links ul li a:hover {
	color: var(--color-gold);
	transform: translateX(5px);
}

.footer__contact ul li {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-3);
	margin-bottom: var(--spacing-4);
	color: var(--color-gray-400);
}

.footer__contact ul li i {
	color: var(--color-gold);
	margin-top: 4px;
}

.footer__contact ul li a {
	color: var(--color-gray-400);
	transition: color var(--transition-base);
}

.footer__contact ul li a:hover {
	color: var(--color-gold);
}

.footer__bottom {
	padding: var(--spacing-6) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__bottom-content p {
	margin-bottom: 0;
	font-size: var(--text-sm);
	color: var(--color-gray-500);
}

.footer__bottom-links {
	display: flex;
	gap: var(--spacing-6);
}

.footer__bottom-links a {
	font-size: var(--text-sm);
	color: var(--color-gray-500);
	transition: color var(--transition-base);
}

.footer__bottom-links a:hover {
	color: var(--color-gold);
}

/* ============================================
   16. FLOATING ELEMENTS
   ============================================ */
/* WhatsApp Float Button */
.whatsapp-float {
	position: fixed;
	bottom: var(--spacing-8);
	right: var(--spacing-8);
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-whatsapp);
	border-radius: var(--radius-full);
	color: var(--color-white);
	font-size: var(--text-2xl);
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
	z-index: var(--z-fixed);
	transition: all var(--transition-base);
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__tooltip {
	position: absolute;
	right: calc(100% + 10px);
	background: var(--color-primary);
	color: var(--color-white);
	padding: var(--spacing-2) var(--spacing-4);
	border-radius: var(--radius-md);
	font-size: var(--text-sm);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-base);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
	opacity: 1;
	visibility: visible;
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: var(--spacing-8);
	right: var(--spacing-8);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-gold-gradient);
	border-radius: var(--radius-full);
	color: var(--color-primary);
	font-size: var(--text-lg);
	box-shadow: var(--shadow-gold);
	z-index: var(--z-fixed);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--transition-base);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	bottom: calc(var(--spacing-8) + 70px);
}

.back-to-top:hover {
	transform: translateY(-5px);
}

/* ============================================
   17. ANIMATIONS
   ============================================ */
@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-fade-in {
	animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
	animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-right {
	animation: fadeInRight 0.8s ease forwards;
}

/* Staggered animations */
.animate-fade-in-up:nth-child(1) {
	animation-delay: 0.1s;
}

.animate-fade-in-up:nth-child(2) {
	animation-delay: 0.2s;
}

.animate-fade-in-up:nth-child(3) {
	animation-delay: 0.3s;
}

.animate-fade-in-up:nth-child(4) {
	animation-delay: 0.4s;
}

/* ============================================
   18. MEDIA QUERIES
   ============================================ */
/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
	:root {
		--text-6xl: 3rem;
		--text-5xl: 2.5rem;
		--text-4xl: 2rem;
	}

	.services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services__grid .service-card:last-child {
		grid-column: span 2;
		max-width: 400px;
		margin: 0 auto;
	}

	.pricing__grid {
		gap: var(--spacing-4);
	}

	.footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Tablets */
@media (max-width: 992px) {
	.hero__content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero__description {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__buttons {
		justify-content: center;
	}

	.hero__stats {
		justify-content: center;
	}

	.hero__image {
		order: -1;
		max-width: 500px;
		margin: 0 auto;
	}

	.about__grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-10);
	}

	.about__content .section-header__subtitle,
	.about__content .section-header__title {
		text-align: center;
	}

	.about__description {
		text-align: center;
	}

	.about__experience-badge {
		right: 50%;
		transform: translateX(50%);
	}

	.services__grid {
		grid-template-columns: 1fr;
	}

	.services__grid .service-card:last-child {
		grid-column: span 1;
		max-width: none;
	}

	.testimonials__grid {
		grid-template-columns: 1fr;
	}

	.pricing__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.pricing-card--featured {
		transform: none;
	}

	.contact__grid {
		grid-template-columns: 1fr;
	}

	.contact__info .section-header__subtitle,
	.contact__info .section-header__title {
		text-align: center;
	}

	.contact__description {
		text-align: center;
	}

	.navbar__menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: var(--color-primary);
		flex-direction: column;
		align-items: flex-start;
		padding: var(--spacing-20) var(--spacing-8);
		transition: right var(--transition-base);
		box-shadow: var(--shadow-2xl);
	}

	.navbar__menu.active {
		right: 0;
	}

	.navbar__item {
		width: 100%;
	}

	.navbar__link {
		display: block;
		padding: var(--spacing-3) 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.navbar__link::after {
		display: none;
	}

	.navbar__toggle {
		display: flex;
		z-index: 1001;
	}

	.navbar__toggle.active .navbar__toggle-bar:nth-child(1) {
		transform: rotate(45deg) translate(5px, 6px);
	}

	.navbar__toggle.active .navbar__toggle-bar:nth-child(2) {
		opacity: 0;
	}

	.navbar__toggle.active .navbar__toggle-bar:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -6px);
	}

	.footer__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer__title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer__social {
		justify-content: center;
	}

	.footer__contact ul li {
		justify-content: center;
	}

	.footer__bottom-content {
		flex-direction: column;
		gap: var(--spacing-4);
		text-align: center;
	}
}

/* ============================================
   18. MEDIA QUERIES (CONTINUACIÓN)
   ============================================ */

/* Mobile Phones */
@media (max-width: 768px) {
	:root {
		--text-6xl: 2.5rem;
		--text-5xl: 2rem;
		--text-4xl: 1.75rem;
		--text-3xl: 1.5rem;
		--spacing-24: 4rem;
		--spacing-20: 3.5rem;
		--spacing-16: 3rem;
		--container-padding: 1rem;
	}

	/* Header Mobile */
	.header__top {
		display: none;
	}

	.navbar__logo-img {
		width: 40px;
		height: 40px;
	}

	.navbar__logo-name {
		font-size: var(--text-base);
	}

	.navbar__logo-tagline {
		font-size: 0.65rem;
	}

	/* Hero Mobile */
	.hero {
		padding-top: 100px;
		min-height: auto;
		padding-bottom: var(--spacing-16);
	}

	.hero__title {
		font-size: var(--text-4xl);
	}

	.hero__description {
		font-size: var(--text-base);
	}

	.hero__buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero__buttons .btn {
		width: 100%;
		justify-content: center;
	}

	.hero__stats {
		flex-direction: column;
		gap: var(--spacing-6);
	}

	.hero__stat {
		padding: var(--spacing-4);
		background: rgba(255, 255, 255, 0.05);
		border-radius: var(--radius-lg);
	}

	.hero__scroll {
		display: none;
	}

	.hero__image-decoration {
		display: none;
	}

	/* Section Header Mobile */
	.section-header {
		margin-bottom: var(--spacing-10);
	}

	.section-header__subtitle {
		font-size: var(--text-xs);
		padding: 0 var(--spacing-6);
	}

	.section-header__subtitle::before,
	.section-header__subtitle::after {
		width: 20px;
	}

	.section-header__title {
		font-size: var(--text-2xl);
	}

	.section-header__description {
		font-size: var(--text-base);
	}

	/* Services Mobile */
	.service-card {
		padding: var(--spacing-6);
	}

	.service-card__icon {
		width: 60px;
		height: 60px;
		margin-bottom: var(--spacing-4);
	}

	.service-card__icon i {
		font-size: var(--text-2xl);
	}

	/* Quote Mobile */
	.quote-box__text {
		font-size: var(--text-lg);
	}

	.quote-box__icon {
		width: 50px;
		height: 50px;
	}

	/* About Mobile */
	.about__img {
		height: 350px;
	}

	.about__experience-badge {
		width: 120px;
		height: 120px;
		bottom: -20px;
	}

	.about__experience-number {
		font-size: var(--text-3xl);
	}

	.about__feature {
		flex-direction: column;
		text-align: center;
	}

	.about__feature-icon {
		margin: 0 auto;
	}

	/* CTA Mobile */
	.cta-section__title {
		font-size: var(--text-2xl);
	}

	.cta-section__buttons {
		flex-direction: column;
	}

	.cta-section__buttons .btn {
		width: 100%;
	}

	/* Testimonials Mobile */
	.testimonial-card {
		padding: var(--spacing-6);
	}

	.testimonial-card__header {
		flex-wrap: wrap;
	}

	.testimonial-card__rating {
		width: 100%;
		margin-top: var(--spacing-2);
	}

	.testimonial-card__content p {
		padding-left: 0;
		padding-top: var(--spacing-8);
	}

	.testimonial-card__quote-icon {
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	/* Pricing Mobile */
	.pricing-card {
		padding: var(--spacing-6);
	}

	.pricing-card__amount {
		font-size: var(--text-4xl);
	}

	/* Contact Mobile */
	.contact__map iframe {
		height: 300px;
	}

	/* Footer Mobile */
	.footer__logo img {
		width: 60px;
		height: 60px;
		margin: 0 auto;
	}

	.footer__links ul li a {
		display: block;
		padding: var(--spacing-2) 0;
	}

	/* Floating Elements Mobile */
	.whatsapp-float {
		width: 55px;
		height: 55px;
		right: var(--spacing-4);
		bottom: var(--spacing-4);
	}

	.whatsapp-float__tooltip {
		display: none;
	}

	.back-to-top {
		width: 45px;
		height: 45px;
		right: var(--spacing-4);
	}

	.back-to-top.visible {
		bottom: calc(var(--spacing-4) + 65px);
	}
}

/* Small Mobile Phones */
@media (max-width: 480px) {
	:root {
		--text-4xl: 1.5rem;
		--text-3xl: 1.25rem;
		--text-2xl: 1.125rem;
	}

	.hero__title {
		font-size: var(--text-3xl);
	}

	.hero__stat-number {
		font-size: var(--text-2xl);
	}

	.btn {
		padding: var(--spacing-3) var(--spacing-6);
		font-size: var(--text-sm);
	}

	.about__experience-badge {
		width: 100px;
		height: 100px;
	}

	.about__experience-number {
		font-size: var(--text-2xl);
	}

	.about__experience-text {
		font-size: 0.6rem;
	}

	.pricing-card__amount {
		font-size: var(--text-3xl);
	}

	.contact__method {
		flex-direction: column;
		text-align: center;
	}

	.contact__method-icon {
		margin: 0 auto;
	}
}

/* ============================================
   19. PRINT STYLES
   ============================================ */
@media print {
	.header,
	.whatsapp-float,
	.back-to-top,
	.hero__scroll,
	.btn {
		display: none !important;
	}

	body {
		font-size: 12pt;
		color: #000;
		background: #fff;
	}

	.hero {
		min-height: auto;
		padding: 20pt 0;
		background: none !important;
	}

	.hero__title,
	.section-header__title {
		color: #000 !important;
	}

	a {
		text-decoration: underline;
	}

	.service-card,
	.testimonial-card,
	.pricing-card {
		break-inside: avoid;
		box-shadow: none;
		border: 1px solid #ccc;
	}
}

/* ============================================
   20. ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

/* Skip Link */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--color-gold);
	color: var(--color-primary);
	padding: var(--spacing-2) var(--spacing-4);
	z-index: 10000;
	transition: top var(--transition-fast);
}

.skip-link:focus {
	top: 0;
}

/* Reduced Motion */
@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;
	}

	.hero__scroll-link {
		animation: none;
	}
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	:root {
		--color-gold: #FFD700;
		--color-primary: #000000;
		--color-gray-500: #555555;
	}

	.btn--primary {
		border: 2px solid #000;
	}
}

/* ============================================
   21. UTILITY CLASSES (ADDITIONAL)
   ============================================ */

/* Display */
.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-flex {
	display: flex !important;
}

.d-grid {
	display: grid !important;
}

/* Text Alignment */
.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

/* Spacing Utilities */
.mt-0 {
	margin-top: 0 !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-4 {
	margin-bottom: var(--spacing-4) !important;
}

.mb-8 {
	margin-bottom: var(--spacing-8) !important;
}

.py-4 {
	padding-top: var(--spacing-4) !important;
	padding-bottom: var(--spacing-4) !important;
}

.py-8 {
	padding-top: var(--spacing-8) !important;
	padding-bottom: var(--spacing-8) !important;
}

/* Visibility */
.visible {
	visibility: visible !important;
}

.invisible {
	visibility: hidden !important;
}

/* Overflow */
.overflow-hidden {
	overflow: hidden !important;
}

/* Position */
.relative {
	position: relative !important;
}

.absolute {
	position: absolute !important;
}

/* Width */
.w-100 {
	width: 100% !important;
}

/* Responsive Visibility */
@media (max-width: 768px) {
	.hide-mobile {
		display: none !important;
	}
}

@media (min-width: 769px) {
	.hide-desktop {
		display: none !important;
	}
}

/* ============================================
   22. LOADING STATES
   ============================================ */

/* Page Loader */
.page-loader {
	position: fixed;
	inset: 0;
	background: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.page-loader.hidden {
	opacity: 0;
	visibility: hidden;
}

.page-loader__spinner {
	width: 50px;
	height: 50px;
	border: 3px solid rgba(212, 175, 55, 0.2);
	border-top-color: var(--color-gold);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Skeleton Loading */
.skeleton {
	background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

/* ============================================
   23. FORM STYLES (FOR FUTURE USE)
   ============================================ */

.form-group {
	margin-bottom: var(--spacing-6);
}

.form-label {
	display: block;
	font-size: var(--text-sm);
	font-weight: var(--font-semibold);
	color: var(--color-gray-700);
	margin-bottom: var(--spacing-2);
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: var(--spacing-3) var(--spacing-4);
	font-size: var(--text-base);
	color: var(--color-gray-700);
	background: var(--color-white);
	border: 2px solid var(--color-gray-200);
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	border-color: var(--color-gold);
	box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: var(--color-gray-400);
}

.form-textarea {
	min-height: 150px;
	resize: vertical;
}

.form-error {
	font-size: var(--text-sm);
	color: var(--color-danger);
	margin-top: var(--spacing-1);
}

.form-success {
	font-size: var(--text-sm);
	color: var(--color-success);
	margin-top: var(--spacing-1);
}

/* ============================================
   END OF STYLESHEET
   ============================================ */