/* =========================================================================
   LCIIT CONTACT INQUIRY PRO — THEME 3: MINIMAL LUXURY
   Ultra-clean editorial luxury. White · Navy · Gold.
   Mobile-first. No external frameworks.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Lato:wght@400;600;700&display=swap');

/* -------------------------------------------------------------------------
   1. TOKENS
   ---------------------------------------------------------------------- */
.lciit-wrapper {
	--lciit-bg: #faf9f7;
	--lciit-navy: #1e293b;
	--lciit-gold: #c9a435;
	--lciit-gold-light: #e8c96a;
	--lciit-ink: #1e293b;
	--lciit-muted: #64748b;
	--lciit-border: rgba(30,41,59,0.12);
	--lciit-card-bg: #ffffff;
	--lciit-shadow: 0 4px 24px rgba(30,41,59,0.08), 0 1px 4px rgba(30,41,59,0.04);
	--lciit-shadow-lift: 0 12px 40px rgba(30,41,59,0.14), 0 2px 8px rgba(30,41,59,0.06);
	--lciit-gradient-brand: linear-gradient(135deg, var(--lciit-navy), #334155 55%, var(--lciit-gold));
	--lciit-radius-lg: 4px;
	--lciit-radius-md: 4px;
	--lciit-radius-sm: 4px;
	--lciit-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--lciit-font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

	position: relative; isolation: isolate;
	font-family: var(--lciit-font-body);
	color: var(--lciit-ink);
	overflow: hidden;
	padding: 40px 16px 64px;
	background: var(--lciit-bg);
}

.lciit-wrapper * { box-sizing: border-box; }
.lciit-wrapper img { max-width: 100%; display: block; }

/* -------------------------------------------------------------------------
   2. MINIMAL BACKGROUND (subtle grain texture via pseudo)
   ---------------------------------------------------------------------- */
.lciit-bg-animated {
	position: absolute; inset: 0; z-index: 0;
	overflow: hidden; pointer-events: none;
}

.lciit-bg-animated::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		radial-gradient(ellipse 60% 40% at 10% 10%, rgba(201,164,53,0.07) 0%, transparent 60%),
		radial-gradient(ellipse 50% 35% at 90% 85%, rgba(30,41,59,0.05) 0%, transparent 60%);
}

/* Floating shapes are intentionally minimal — just subtle gold orbs */
.lciit-shape {
	position: absolute; border-radius: 50%;
	filter: blur(80px); opacity: 0.18;
	animation: lciitFloatShape 12s ease-in-out infinite;
}

.lciit-shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; background: var(--lciit-gold); }
.lciit-shape-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; background: var(--lciit-navy); opacity: 0.06; animation-delay: 3s; }
.lciit-shape-3 { display: none; }
.lciit-shape-4 { display: none; }
.lciit-shape-5 { display: none; }

@keyframes lciitFloatShape { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.lciit-mouse-glow { display: none; }

/* No rotating conic for this theme */
.lciit-bg-animated::after { display: none; }

/* -------------------------------------------------------------------------
   3. REVEAL ANIMATION
   ---------------------------------------------------------------------- */
.lciit-reveal { opacity: 0; transform: translateY(20px); animation: lciitFadeUp 0.9s ease forwards; }
.lciit-hero-text.lciit-reveal { animation-delay: 0.05s; }
.lciit-main-grid .lciit-info-card.lciit-reveal { animation-delay: 0.1s; }
.lciit-main-grid .lciit-form-card.lciit-reveal { animation-delay: 0.2s; }
@keyframes lciitFadeUp { to { opacity: 1; transform: translateY(0); } }

.lciit-float { animation: lciitFloatBig 7s ease-in-out infinite; }
@keyframes lciitFloatBig { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* -------------------------------------------------------------------------
   4. HERO
   ---------------------------------------------------------------------- */
.lciit-hero { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto 48px; }

.lciit-hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }

.lciit-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--lciit-font-body);
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	padding: 8px 20px; border-radius: 0;
	color: var(--lciit-gold);
	background: transparent;
	border: 1px solid var(--lciit-gold);
}

.lciit-hero-title {
	font-family: var(--lciit-font-heading);
	font-size: clamp(38px, 7.5vw, 68px);
	font-weight: 800; letter-spacing: -0.01em;
	margin: 16px 0 10px; line-height: 1.08;
	color: var(--lciit-navy);
}

.lciit-hero-title span {
	color: var(--lciit-gold);
	background: none; -webkit-text-fill-color: var(--lciit-gold);
}

.lciit-hero-subtitle { font-size: clamp(15px, 2.2vw, 18px); color: var(--lciit-muted); max-width: 460px; margin: 0 auto; line-height: 1.7; }

.lciit-hero-illustration { width: 100%; max-width: 340px; opacity: 0.9; }

/* -------------------------------------------------------------------------
   5. GRID
   ---------------------------------------------------------------------- */
.lciit-main-grid { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 28px; }

/* -------------------------------------------------------------------------
   6. CARDS (flat white, thin gold-tinted border)
   ---------------------------------------------------------------------- */
.lciit-info-card,
.lciit-form-card {
	position: relative; background: var(--lciit-card-bg);
	border: 1px solid var(--lciit-border);
	border-top: 3px solid var(--lciit-gold);
	border-radius: 0;
	box-shadow: var(--lciit-shadow);
	padding: 32px 26px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lciit-info-card:hover,
.lciit-form-card:hover { transform: translateY(-3px); box-shadow: var(--lciit-shadow-lift); }

/* No animated border glow in luxury theme */
.lciit-card-border-glow { display: none; }

/* -------------------------------------------------------------------------
   7. INFO CARD
   ---------------------------------------------------------------------- */
.lciit-info-title { font-family: var(--lciit-font-heading); font-size: 24px; font-weight: 700; margin: 0 0 6px; color: var(--lciit-navy); }
.lciit-info-tagline { color: var(--lciit-muted); font-size: 14px; margin: 0 0 26px; font-style: italic; }

.lciit-info-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.lciit-info-list li { display: flex; align-items: flex-start; gap: 14px; }

.lciit-icon-bubble {
	flex: 0 0 auto; width: 40px; height: 40px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 0; color: var(--lciit-navy);
	background: rgba(201,164,53,0.12);
	border: 1px solid rgba(201,164,53,0.3);
	transition: background 0.3s ease;
}
.lciit-info-list li:hover .lciit-icon-bubble { background: rgba(201,164,53,0.22); }
.lciit-info-list strong { display: block; font-size: 11px; font-weight: 700; margin-bottom: 3px; color: var(--lciit-gold); text-transform: uppercase; letter-spacing: 0.08em; }
.lciit-info-list p, .lciit-info-list a { margin: 0; font-size: 14px; color: var(--lciit-muted); text-decoration: none; }
.lciit-info-list a:hover { color: var(--lciit-navy); }

.lciit-social-icons { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.lciit-social-link { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 0; background: transparent; border: 1px solid var(--lciit-border); transition: transform 0.25s ease, border-color 0.25s ease; }
.lciit-social-link:hover { transform: translateY(-3px); border-color: var(--lciit-gold); }
.lciit-social-facebook { color: #1877f2; } .lciit-social-instagram { color: #e1306c; } .lciit-social-youtube { color: #ff0000; }
.lciit-social-linkedin { color: #0a66c2; } .lciit-social-whatsapp { color: #25d366; } .lciit-social-generic { color: var(--lciit-navy); }

/* -------------------------------------------------------------------------
   8. FORM CARD
   ---------------------------------------------------------------------- */
.lciit-form-title { font-family: var(--lciit-font-heading); font-size: 24px; font-weight: 700; margin: 0 0 4px; color: var(--lciit-navy); }
.lciit-form-subtitle { color: var(--lciit-muted); font-size: 14px; margin: 0 0 24px; font-style: italic; }

.lciit-form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.lciit-field { display: flex; flex-direction: column; gap: 6px; }
.lciit-field-full { grid-column: 1 / -1; }

.lciit-field label { font-size: 11px; font-weight: 700; color: var(--lciit-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.lciit-field label span { color: #c0203f; }

.lciit-field input,
.lciit-field select,
.lciit-field textarea {
	width: 100%; font-family: var(--lciit-font-body);
	font-size: 14px; line-height: 1.5; min-height: 48px;
	color: var(--lciit-ink) !important; -webkit-text-fill-color: var(--lciit-ink);
	color-scheme: light;
	padding: 13px 14px;
	border-radius: 0;
	border: none;
	border-bottom: 1.5px solid var(--lciit-border);
	background: transparent;
	outline: none;
	transition: border-color 0.25s ease;
}

.lciit-field select {
	appearance: none; -webkit-appearance: none;
	padding-right: 38px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a435' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center; background-size: 12px 8px; cursor: pointer;
}
.lciit-field select option { color: var(--lciit-ink); background: #fff; }
.lciit-field textarea { min-height: 96px; line-height: 1.6; resize: vertical; }

.lciit-field input:focus,
.lciit-field select:focus,
.lciit-field textarea:focus {
	border-bottom-color: var(--lciit-gold);
	background: rgba(201,164,53,0.03);
	box-shadow: none;
}
.lciit-field input.lciit-invalid,
.lciit-field select.lciit-invalid,
.lciit-field textarea.lciit-invalid { border-bottom-color: #c0203f; }

.lciit-field-error { font-size: 12px; color: #c0203f; min-height: 14px; }

.lciit-field-checkbox { margin-top: 6px; }
.lciit-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--lciit-muted); cursor: pointer; }
.lciit-checkbox-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.lciit-checkbox-box { flex: 0 0 auto; width: 18px; height: 18px; border-radius: 0; border: 1.5px solid var(--lciit-border); background: transparent; position: relative; transition: border-color 0.2s ease; }
.lciit-checkbox-label input:checked + .lciit-checkbox-box { background: var(--lciit-navy); border-color: var(--lciit-navy); }
.lciit-checkbox-label input:checked + .lciit-checkbox-box::after { content: ''; position: absolute; left: 4px; top: 1px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(40deg); }
.lciit-checkbox-label span span { color: #c0203f; }

/* -------------------------------------------------------------------------
   9. BUTTONS
   ---------------------------------------------------------------------- */
.lciit-btn {
	position: relative; display: inline-flex; align-items: center;
	justify-content: center; gap: 8px;
	font-family: var(--lciit-font-body); font-size: 13px; font-weight: 700;
	letter-spacing: 0.12em; text-transform: uppercase;
	text-decoration: none; border: none; cursor: pointer;
	border-radius: 0; padding: 14px 28px; overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.lciit-btn:active { transform: scale(0.98); }

.lciit-btn-primary { color: #fff; background: var(--lciit-navy); box-shadow: none; }
.lciit-btn-primary::after { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 2px; background: var(--lciit-gold); transition: right 0.4s ease; }
.lciit-btn-primary:hover::after { right: 0; }
.lciit-btn-primary:hover { box-shadow: 0 8px 24px rgba(30,41,59,0.25); }

.lciit-btn-outline { margin-top: 4px; width: 100%; color: var(--lciit-navy); background: transparent; border: 1.5px solid var(--lciit-navy); }
.lciit-btn-outline:hover { background: var(--lciit-navy); color: #fff; }

.lciit-btn-submit { width: 100%; margin-top: 8px; padding: 16px 28px; font-size: 13px; }

.lciit-ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.25); transform: scale(0); animation: lciitRipple 0.6s ease-out; pointer-events: none; }
@keyframes lciitRipple { to { transform: scale(3.2); opacity: 0; } }

.lciit-btn-loader { display: none; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; animation: lciitSpin 0.7s linear infinite; }
.lciit-btn-submit.is-loading .lciit-btn-loader { display: inline-block; }
.lciit-btn-submit.is-loading .lciit-btn-text { opacity: 0.75; }
@keyframes lciitSpin { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------------------
   10. TOAST
   ---------------------------------------------------------------------- */
.lciit-toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%,20px); min-width: 260px; max-width: 90vw; padding: 14px 20px; border-radius: 0; font-size: 14px; font-weight: 600; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.2); opacity: 0; pointer-events: none; z-index: 999; transition: opacity 0.35s ease, transform 0.35s ease; }
.lciit-toast.is-success { background: var(--lciit-navy); border-left: 4px solid var(--lciit-gold); }
.lciit-toast.is-error { background: #c0203f; border-left: 4px solid #ff8a9a; }
.lciit-toast.is-visible { opacity: 1; transform: translate(-50%,0); pointer-events: auto; }

/* -------------------------------------------------------------------------
   11. RESPONSIVE
   ---------------------------------------------------------------------- */
@media (min-width: 768px) {
	.lciit-wrapper { padding: 64px 32px 80px; }
	.lciit-hero-inner { flex-direction: row; text-align: left; justify-content: space-between; gap: 48px; }
	.lciit-hero-text { flex: 1 1 50%; }
	.lciit-hero-subtitle { margin: 0; }
	.lciit-hero-illustration { flex: 1 1 40%; max-width: 380px; }
	.lciit-form-grid { grid-template-columns: 1fr 1fr; }
	.lciit-info-card, .lciit-form-card { padding: 40px 36px; }
}

@media (min-width: 1024px) {
	.lciit-main-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; gap: 36px; }
	.lciit-info-card { position: sticky; top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
	.lciit-reveal, .lciit-float, .lciit-shape { animation: none !important; }
}
