/* ========================================
   CARREA - Mobilny Agent - Styles
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
	/* Colors */
	--primary-color: #ce9d6a;
	--secondary-color: #616161;
	--dark-color: #050505;
	--light-color: #ffffff;
	--bg-light: #f9f9f9;
	--bg-dark: #1a1a1a;

	/* Typography */
	--font-primary: "Montserrat", sans-serif;
	--font-secondary: "Playfair Display", serif;

	/* Spacing */
	--section-padding: 100px 0;
	--container-max-width: 1200px;

	/* Transitions */
	--transition-smooth: all 0.3s ease;
	--transition-slow: all 0.6s ease;

	/* Shadows */
	--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);

	/* Border Radius */
	--radius-sm: 5px;
	--radius-md: 10px;
	--radius-lg: 20px;
}

/* ===== HONEYPOT ANTI-SPAM ===== */
._hp-field {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

/* ===== GLOBAL RESET ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
	overflow-x: clip;
}

body {
	font-family: var(--font-primary);
	color: var(--dark-color);
	line-height: 1.6;
	overflow-x: hidden;
	overflow-x: clip;
	max-width: 100%;
	width: 100%;
	position: relative;
	background: var(--light-color);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
	margin-bottom: 1rem;
	font-size: 1rem;
	color: var(--secondary-color);
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition-smooth);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ===== UTILITIES ===== */
.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 20px;
}

.highlight {
	color: var(--primary-color);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-family: var(--font-secondary);
	margin-bottom: 15px;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--secondary-color);
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-block;
	padding: 15px 35px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition-smooth);
	cursor: pointer;
	border: none;
	font-size: 0.9rem;
}

.btn-primary {
	background: var(--primary-color);
	color: var(--light-color);
}

.btn-primary:hover {
	background: #b8875a;
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background: transparent;
	color: var(--light-color);
	border: 2px solid var(--light-color);
}

.btn-secondary:hover {
	background: var(--light-color);
	color: var(--dark-color);
}

/* ===== LOADER ===== */
.loader {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background: var(--light-color);
	z-index: 10000;
	display: grid;
	place-items: center;
	transition:
		opacity 0.5s,
		visibility 0.5s;
	padding: 20px;
	box-sizing: border-box;
}

.loader.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-content {
	text-align: center;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

.loader-logo {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.loader-logo img {
	max-width: 125px;
	width: 100%;
	height: auto;
	display: block;
	animation: logoFade 1.5s ease-in-out infinite;
}

@keyframes logoFade {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.loader-spinner {
	width: 50px;
	height: 50px;
	margin: 0 auto;
	border: 3px solid rgba(206, 157, 106, 0.3);
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--primary-color);
	z-index: 9999;
	transition: width 0.1s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	overflow-x: clip;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: var(--transition-smooth);
	padding: 20px 0;
}

.navbar.scrolled {
	padding: 10px 0;
	box-shadow: var(--shadow-md);
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 0;
}

.logo a {
	display: flex;
	align-items: center;
}

.logo a img {
	height: 50px;
	width: auto;
	transition: var(--transition-smooth);
}

.logo a img:hover {
	transform: scale(1.05);
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 30px;
}

.nav-link {
	color: var(--dark-color);
	font-size: 0.95rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
}

.nav-link:not(.cta-btn):after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-link:not(.cta-btn):hover:after {
	width: 100%;
}

.nav-link.cta-btn {
	background: var(--primary-color);
	padding: 10px 20px;
	border-radius: var(--radius-sm);
}

.nav-link.cta-btn:hover {
	background: #b8875a;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
	flex-shrink: 0;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--dark-color);
	transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--primary-color);
	color: var(--light-color);
	padding: 15px 25px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: var(--shadow-lg);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
}

.floating-cta.visible {
	opacity: 1;
	visibility: visible;
}

.floating-cta:hover {
	background: #b8875a;
	transform: translateY(-5px);
}

.floating-cta i,
.floating-cta .icon-svg {
	font-size: 1.2rem;
	width: 1.2rem;
	height: 1.2rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 60px;
	height: 60px;
	background: #25d366;
	color: var(--light-color);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 15px;
	font-size: 2rem;
	box-shadow: var(--shadow-lg);
	z-index: 999;
	transition: all 0.4s ease;
	overflow: hidden;
	white-space: nowrap;
}

.whatsapp-btn .icon-svg {
	width: 2rem;
	height: 2rem;
	min-width: 2rem;
}

.whatsapp-text {
	opacity: 0;
	max-width: 0;
	margin-left: 0;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.4s ease;
	overflow: hidden;
}

.whatsapp-btn:hover {
	background: #1fb855;
	width: 320px;
	border-radius: 50px;
}

.whatsapp-btn:hover .whatsapp-text {
	opacity: 1;
	max-width: 240px;
	margin-left: 12px;
}

/* ===== HERO SECTION ===== */
.hero {
	position: relative;
	height: 100svh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: var(--light-color);
}

@supports (height: 100dvh) {
	.hero {
		height: 100dvh;
		min-height: 100dvh;
	}
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
	background-image: url("images/Topbanner.PNG");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	z-index: -1;
}

@media (max-width: 1024px), (pointer: coarse) {
	.hero-background {
		background-attachment: scroll;
		transform: none !important;
	}

	/* Prevent delayed/hidden content on mobile when AOS is disabled or slow. */
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(5, 5, 5, 0.8) 0%,
		rgba(5, 5, 5, 0.6) 100%
	);
}

.hero-content {
	text-align: center;
	z-index: 1;
	max-width: 900px;
	margin-top: 60px;
}

.hero-title {
	font-family: var(--font-secondary);
	margin-bottom: 30px;
}

.hero-title-main {
	display: block;
	font-size: clamp(3rem, 7vw, 6rem);
	font-weight: 700;
	letter-spacing: 5px;
}

.hero-title-sub {
	display: block;
	font-size: clamp(2rem, 5vw, 4rem);
	color: var(--primary-color);
	font-weight: 400;
	letter-spacing: 10px;
}

.hero-subtitle {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 15px;
	color: var(--primary-color);
	font-weight: 600;
}

.hero-description {
	font-size: clamp(1rem, 2vw, 1.2rem);
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.scroll-indicator {
	display: block;
	width: 30px;
	height: 50px;
	border: 2px solid var(--primary-color);
	border-radius: 25px;
	position: relative;
}

.scroll-indicator span {
	position: absolute;
	width: 6px;
	height: 6px;
	background: var(--primary-color);
	border-radius: 50%;
	left: 50%;
	transform: translateX(-50%);
	animation: scroll 2s infinite;
}

.scroll-indicator span:nth-child(1) {
	top: 10px;
	animation-delay: 0s;
}

.scroll-indicator span:nth-child(2) {
	top: 20px;
	animation-delay: 0.3s;
}

.scroll-indicator span:nth-child(3) {
	top: 30px;
	animation-delay: 0.6s;
}

@keyframes scroll {
	0%,
	100% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
}

/* ===== ABOUT SERVICE SECTION ===== */
.about-service {
	padding: var(--section-padding);
	background: var(--bg-light);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--light-color);
	padding: 40px 30px;
	border-radius: var(--radius-md);
	text-align: center;
	transition: var(--transition-smooth);
	box-shadow: var(--shadow-sm);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-md);
}

.service-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, var(--primary-color), #b8875a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--light-color);
}

.service-icon .icon-svg {
	width: 2rem;
	height: 2rem;
}

.service-card h3 {
	margin-bottom: 15px;
	color: var(--dark-color);
}

.service-card p {
	color: var(--secondary-color);
	line-height: 1.7;
}

/* ===== OFFER SECTION ===== */
.offer {
	padding: var(--section-padding);
	background: var(--light-color);
}

.offer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.offer-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	height: 400px;
	cursor: pointer;
}

.offer-image {
	width: 100%;
	height: 100%;
	position: relative;
}

.offer-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.offer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(5, 5, 5, 0.3),
		rgba(206, 157, 106, 0.9)
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
	color: var(--light-color);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.offer-item:hover .offer-image img {
	transform: scale(1.1);
}

.offer-item:hover .offer-overlay {
	opacity: 1;
}

.offer-overlay h3 {
	font-size: 1.8rem;
	margin-bottom: 10px;
	color: var(--light-color);
}

.offer-overlay p {
	color: rgba(255, 255, 255, 0.9);
}

/* ===== GALLERY SECTION ===== */
.gallery {
	padding: var(--section-padding);
	background: var(--bg-light);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	height: 300px;
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(206, 157, 106, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gallery-overlay i,
.gallery-overlay .icon-svg {
	font-size: 3rem;
	width: 3rem;
	height: 3rem;
	color: var(--light-color);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

/* ===== LIGHTBOX ===== */
.lightbox {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
	display: block;
}

.lightbox-content {
	margin: auto;
	display: block;
	max-width: 90%;
	max-height: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: zoom 0.3s ease;
}

@keyframes zoom {
	from {
		transform: translate(-50%, -50%) scale(0);
	}
	to {
		transform: translate(-50%, -50%) scale(1);
	}
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 35px;
	color: var(--light-color);
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.lightbox-close:hover {
	color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	padding: 16px;
	color: var(--light-color);
	font-size: 30px;
	font-weight: bold;
	transition: var(--transition-smooth);
	user-select: none;
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
	color: var(--primary-color);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
	padding: var(--section-padding);
	background: var(--light-color);
}

.timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 100%;
	background: var(--primary-color);
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 80px;
	position: relative;
}

.timeline-item:nth-child(odd) {
	flex-direction: row;
}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline-number {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--light-color);
	z-index: 2;
	box-shadow: 0 0 0 10px var(--light-color);
}

.timeline-content {
	flex: 1;
	padding: 30px;
	background: var(--bg-light);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	max-width: 40%;
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-right: auto;
	margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-left: auto;
	margin-right: 0;
}

.timeline-content h3 {
	color: var(--dark-color);
	margin-bottom: 10px;
}

.timeline-icon {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 40%;
}

.timeline-icon i,
.timeline-icon .icon-svg {
	font-size: 4rem;
	width: 4rem;
	height: 4rem;
	color: var(--primary-color);
}

/* ===== WHY US SECTION ===== */
.why-us {
	padding: var(--section-padding);
	background: var(--bg-light);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 80px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 4rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.stat-label {
	font-size: 1.1rem;
	color: var(--secondary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature-item {
	background: var(--light-color);
	padding: 40px 25px;
	border-radius: var(--radius-md);
	text-align: center;
	transition: var(--transition-smooth);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.feature-item:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-md);
}

.feature-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--primary-color), #b8875a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--light-color);
}

.feature-icon .icon-svg {
	width: 1.8rem;
	height: 1.8rem;
}

.feature-item h3 {
	margin-bottom: 10px;
	color: var(--dark-color);
	font-size: 1.1rem;
	line-height: 1.4;
	word-wrap: break-word;
	hyphens: auto;
}

.feature-item p {
	color: var(--secondary-color);
	line-height: 1.6;
	word-wrap: break-word;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
	padding: var(--section-padding);
	background: var(--light-color);
}

.testimonials-slider {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0;
}

.testimonial-track {
	display: flex;
	gap: 30px;
	transition: transform 0.5s ease;
	padding: 0 20px;
}

.testimonial-card {
	min-width: calc(100% - 40px);
	width: calc(100% - 40px);
	flex-shrink: 0;
	background: var(--bg-light);
	padding: 30px 25px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	box-sizing: border-box;
}

.testimonial-stars {
	color: #ffd700;
	font-size: 1rem;
	margin-bottom: 15px;
}

.testimonial-stars .icon-svg {
	width: 1rem;
	height: 1rem;
}

.testimonial-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--secondary-color);
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light-color);
	font-weight: 700;
	font-size: 1rem;
}

.author-info h4 {
	color: var(--dark-color);
	margin-bottom: 3px;
	font-size: 1rem;
}

.author-info p {
	color: var(--secondary-color);
	margin: 0;
	font-size: 0.85rem;
}

.testimonials-nav {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: var(--light-color);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition-smooth);
	font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
	background: #b8875a;
	transform: scale(1.1);
}

/* ===== FAQ SECTION ===== */
.faq {
	padding: var(--section-padding);
	background: var(--bg-light);
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: var(--light-color);
	margin-bottom: 20px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition-smooth);
}

.faq-question:hover {
	background: var(--bg-light);
}

.faq-question h3 {
	font-size: 1.1rem;
	color: var(--dark-color);
	margin: 0;
}

.faq-question i,
.faq-question .icon-svg {
	color: var(--primary-color);
	font-size: 1.2rem;
	width: 1.2rem;
	height: 1.2rem;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question i,
.faq-item.active .faq-question .icon-svg {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.5s ease,
		padding 0.5s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 30px 25px;
}

.faq-answer p {
	color: var(--secondary-color);
	line-height: 1.7;
	margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
	padding: var(--section-padding);
	background: var(--light-color);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: start;
}

.contact-info {
	background: var(--bg-light);
	padding: 40px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.contact-info h3 {
	color: var(--dark-color);
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.info-item {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.info-item i,
.info-item .icon-svg {
	color: var(--primary-color);
	font-size: 1.5rem;
	width: 1.5rem;
	height: 1.5rem;
	min-width: 1.5rem;
}

.info-item h4 {
	color: var(--dark-color);
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.info-item p {
	color: var(--secondary-color);
	margin: 0;
}

.info-item a {
	color: var(--secondary-color);
}

.info-item a:hover {
	color: var(--primary-color);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.social-links a {
	width: 45px;
	height: 45px;
	background: var(--primary-color);
	color: var(--light-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: var(--transition-smooth);
}

.social-links a .icon-svg {
	width: 1.2rem;
	height: 1.2rem;
}

.social-links a:hover {
	background: #b8875a;
	transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
	background: var(--bg-light);
	padding: 40px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--dark-color);
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-size: 1rem;
	transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-group textarea {
	resize: vertical;
}

.checkbox-group {
	display: flex;
	gap: 10px;
	align-items: start;
}

.checkbox-group input[type="checkbox"] {
	width: auto;
	margin-top: 5px;
}

.checkbox-group label {
	margin: 0;
	font-weight: 400;
	font-size: 0.9rem;
}

.checkbox-group a {
	color: var(--primary-color);
	text-decoration: underline;
}

.btn-submit {
	width: 100%;
	position: relative;
}

.btn-submit.loading .btn-text {
	visibility: hidden;
}

.btn-loader {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: var(--light-color);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-loader {
	display: block;
}

.form-message {
	margin-top: 20px;
	padding: 15px;
	border-radius: var(--radius-sm);
	display: none;
	font-weight: 500;
}

.form-message.success {
	display: block;
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	display: block;
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* ===== FOOTER ===== */
.footer {
	background: var(--dark-color);
	color: var(--light-color);
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
	margin-bottom: 20px;
}

.footer-logo {
	font-family: var(--font-secondary);
	color: var(--primary-color);
	letter-spacing: 3px;
	font-size: 2rem;
}

.footer-column p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: var(--light-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.footer-social a:hover {
	background: #b8875a;
	transform: translateY(-5px);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column ul li a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

.footer-column ul li i,
.footer-column ul li .icon-svg {
	color: var(--primary-color);
	margin-right: 10px;
	width: 1em;
	height: 1em;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.5);
	margin: 5px 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
	:root {
		--section-padding: 80px 0;
	}

	.timeline::before {
		left: 30px;
	}

	.timeline-item {
		flex-direction: row !important;
	}

	.timeline-number {
		left: 30px;
		transform: none;
	}

	.timeline-content {
		max-width: 100%;
		margin-left: 100px !important;
	}

	.timeline-icon {
		display: none;
	}
}

/* Mobile */
@media (max-width: 768px) {
	:root {
		--section-padding: 60px 0;
	}

	.loader-logo {
		margin-bottom: 20px;
	}

	.loader-logo img {
		max-width: 90px;
	}

	.loader-spinner {
		width: 45px;
		height: 45px;
	}

	.logo a img {
		height: 40px;
	}

	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		right: 0;
		left: auto;
		width: 100%;
		max-width: 100vw;
		height: calc(100svh - 70px);
		background: rgba(5, 5, 5, 0.98);
		display: none;
		flex-direction: column;
		justify-content: flex-start;
		padding: 50px 20px;
		overflow-x: hidden;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease;
	}

	@supports (height: 100dvh) {
		.nav-menu {
			height: calc(100dvh - 70px);
		}
	}

	.nav-menu.active {
		display: flex;
		opacity: 1;
		visibility: visible;
	}

	.nav-menu li {
		width: 100%;
		text-align: center;
	}

	.nav-menu .nav-link {
		color: var(--light-color);
	}

	.nav-menu .nav-link.cta-btn {
		color: var(--light-color);
		display: inline-block;
	}

	.floating-cta {
		bottom: 100px;
		right: 20px;
		padding: 12px 20px;
	}

	.floating-cta span {
		display: none;
	}

	.whatsapp-btn {
		bottom: 20px;
		left: 20px;
		width: 55px;
		height: 55px;
		font-size: 1.8rem;
		padding-left: 13px;
	}

	.whatsapp-btn:hover {
		width: 300px;
	}

	.whatsapp-text {
		font-size: 0.85rem;
	}

	.whatsapp-btn:hover .whatsapp-text {
		max-width: 220px;
	}

	@media (hover: none), (pointer: coarse) {
		.whatsapp-btn:hover {
			width: 55px;
		}

		.whatsapp-btn:hover .whatsapp-text {
			opacity: 0;
			max-width: 0;
			margin-left: 0;
		}
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.hero-cta .btn {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	.service-grid,
	.offer-grid,
	.gallery-grid,
	.features-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.stat-number {
		font-size: 3rem;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.timeline-content {
		margin-left: 80px !important;
	}

	.timeline-number {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.testimonial-track {
		padding: 0 10px;
	}

	.testimonial-card {
		min-width: calc(100% - 20px);
		width: calc(100% - 20px);
		padding: 25px 18px;
	}

	.testimonial-text {
		font-size: 0.9rem;
	}

	.testimonial-stars {
		font-size: 0.95rem;
		margin-bottom: 12px;
	}

	.testimonial-prev,
	.testimonial-next {
		width: 45px;
		height: 45px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.loader-logo {
		margin-bottom: 15px;
	}

	.loader-logo img {
		max-width: 75px;
	}

	.loader-spinner {
		width: 40px;
		height: 40px;
		border-width: 2px;
	}

	.hero-title-main {
		letter-spacing: 2px;
	}

	.hero-title-sub {
		letter-spacing: 3px;
	}

	.whatsapp-btn {
		width: 50px;
		height: 50px;
		font-size: 1.6rem;
		padding-left: 12px;
	}

	.whatsapp-btn:hover {
		width: 280px;
	}

	.whatsapp-text {
		font-size: 0.8rem;
	}

	.whatsapp-btn:hover .whatsapp-text {
		max-width: 210px;
	}

	.offer-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.offer-item,
	.gallery-item {
		height: 300px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-track {
		padding: 0 5px;
	}

	.testimonial-card {
		min-width: calc(100% - 10px);
		width: calc(100% - 10px);
		padding: 20px 12px;
	}

	.testimonial-text {
		font-size: 0.85rem;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	.testimonial-stars {
		font-size: 0.85rem;
		margin-bottom: 10px;
	}

	.author-avatar {
		width: 45px;
		height: 45px;
		font-size: 0.9rem;
	}

	.author-info h4 {
		font-size: 0.9rem;
	}

	.author-info p {
		font-size: 0.75rem;
	}

	.testimonial-prev,
	.testimonial-next {
		width: 40px;
		height: 40px;
		font-size: 0.9rem;
	}
}

/* ===== PRINT STYLES ===== */
@media print {
	.navbar,
	.floating-cta,
	.whatsapp-btn,
	.loader,
	.progress-bar {
		display: none;
	}
}
