/* ============================================
   3 SISTERS COSMETIC - MODERN 2025 REDESIGN
   ============================================ */

/* ============================================
   MODERN FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
	/* === Colors - Harmonisiert mit Logo-Gold === */
	--color-cream: #FAF7F2;
	--color-warm-white: #FFFFFF;
	--color-soft-beige: #F5F0E8;
	--color-warm-sand: #E8DED0;
	--color-muted-gold: #D4C5A0;
	--color-logo-gold: #C3B56C;
	--color-deep-gold: #B8A168;
	--color-warm-bronze: #9A8456;
	--color-soft-charcoal: #4A4A4A;
	--color-light-beige: #F0EDE5;
	--color-text-muted: #6B6B6B;

	/* === Spacing === */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 4rem;
	--space-xl: 6rem;
	--space-2xl: 8rem;

	/* === Border Radius === */
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--radius-full: 9999px;

	/* === Shadows === */
	--shadow-xs: 0 2px 8px rgba(0,0,0,0.03);
	--shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
	--shadow-md: 0 8px 24px rgba(0,0,0,0.06);
	--shadow-lg: 0 16px 40px rgba(0,0,0,0.08);
	--shadow-xl: 0 24px 60px rgba(0,0,0,0.10);

	/* === Typography === */
	--font-serif: 'Instrument Serif', Georgia, serif;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* === Transitions === */
	--transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	--transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	--transition-fast: all 0.2s ease;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-sans);
	color: var(--color-soft-charcoal);
	background-color: var(--color-cream);
	line-height: 1.7;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Fluid Typography */
h1, .h1 {
	font-family: var(--font-serif);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--color-soft-charcoal);
}

h2, .h2 {
	font-family: var(--font-serif);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 400;
	letter-spacing: -0.01em;
	line-height: 1.3;
	color: var(--color-soft-charcoal);
}

h3, .h3 {
	font-family: var(--font-sans);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-soft-charcoal);
}

h4, .h4 {
	font-family: var(--font-sans);
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-soft-charcoal);
}

p {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.8;
	color: var(--color-text-muted);
}

a {
	color: var(--color-deep-gold);
	text-decoration: none;
	transition: var(--transition-smooth);
}

a:hover {
	color: var(--color-logo-gold);
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: var(--space-md);
	padding-right: var(--space-md);
}

@media (max-width: 768px) {
	.container {
		padding-left: var(--space-sm);
		padding-right: var(--space-sm);
	}
}

/* ============================================
   MODERN HEADER - CLEAN & SIMPLE
   ============================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	margin: 0;
	padding: 0;
	height: auto;
	background: var(--color-warm-white);
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-bar {
	background: var(--color-warm-white);
	padding: 1rem 0;
	transition: var(--transition-smooth);
	max-width: 100%;
	margin: 0;
}

/* Logo */
.site-branding {
	position: relative;
	width: 140px;
	background: transparent;
	padding: 0;
	box-shadow: none;
	top: auto;
	left: auto;
}

.site-branding img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.site-branding a img.big,
.site-branding a img.small {
	display: block;
}

/* Navigation */
.site-navigation ul {
	position: relative;
	top: auto;
	left: auto;
	width: auto;
	max-width: none;
	height: auto;
	padding: 0;
	margin: 0;
	background: transparent;
	overflow: visible;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.site-navigation ul li {
	margin: 0;
	list-style: none;
}

.site-navigation ul li a {
	display: inline-block;
	padding: 0.75rem 0;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--color-soft-charcoal);
	position: relative;
	transition: var(--transition-smooth);
	border: none;
	white-space: nowrap;
}

.site-navigation ul li a::after {
	content: '';
	position: absolute;
	bottom: 0.5rem;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-logo-gold);
	transition: width 0.3s ease;
}

.site-navigation ul li a:hover::after,
.site-navigation ul li.current-menu-item a::after {
	width: 100%;
}

.site-navigation ul li a:hover,
.site-navigation ul li.current-menu-item a {
	color: var(--color-logo-gold);
	border: none;
}

/* CTA Button in Navigation */
.site-navigation ul li:last-child a {
	background: linear-gradient(135deg, var(--color-logo-gold), var(--color-warm-bronze));
	color: var(--color-warm-white);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	font-weight: 500;
	transition: var(--transition-smooth);
}

.site-navigation ul li:last-child a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(195, 181, 108, 0.35);
}

.site-navigation ul li:last-child a::after {
	display: none;
}

/* Hamburger Menu - Modern */
.hamburger-menu {
	position: relative;
	right: auto;
	top: auto;
	width: 28px;
	height: 24px;
	cursor: pointer;
	transition: var(--transition-smooth);
	display: none;
}

.hamburger-menu span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--color-soft-charcoal);
	border-radius: var(--radius-full);
	opacity: 1;
	left: 0;
	transition: var(--transition-smooth);
}

.hamburger-menu span:nth-child(1) {
	top: 0px;
}

.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
	top: 11px;
}

.hamburger-menu span:nth-child(4) {
	top: 22px;
}

.hamburger-menu.open span:nth-child(1) {
	top: 11px;
	width: 0;
	left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
	transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
	transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
	top: 11px;
	width: 0;
	left: 50%;
}

/* Mobile Navigation */
@media (max-width: 992px) {
	.site-header {
		top: 0;
		padding: 0;
	}

	.nav-bar {
		padding: 0.75rem 1rem;
	}

	.nav-bar .container {
		padding: 0;
	}

	.site-branding {
		width: 110px;
	}

	.hamburger-menu {
		display: block;
	}

	.site-navigation ul {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		max-width: 100%;
		height: 100vh;
		background: var(--color-warm-white);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 4rem 2rem;
		gap: 0;
		box-shadow: none;
		transition: left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
		overflow-y: auto;
		overflow-x: hidden;
	}

	.site-navigation.show ul {
		left: 0;
	}

	.site-navigation ul li {
		width: 100%;
		border-bottom: 1px solid var(--color-light-gray);
	}

	.site-navigation ul li a {
		display: block;
		padding: 1.25rem 0;
		font-size: 1.125rem;
		width: 100%;
	}

	.site-navigation ul li a::after {
		display: none;
	}

	.site-navigation ul li:last-child {
		border: none;
		margin-top: 0.5rem;
	}

	.site-navigation ul li:last-child a {
		text-align: center;
		border-radius: var(--radius-md);
		padding: 0.75rem 1rem;
		width: auto;
		display: inline-block;
		font-size: 0.9375rem;
		background: linear-gradient(135deg, var(--color-logo-gold), var(--color-warm-bronze)) !important;
		color: var(--color-warm-white) !important;
		font-weight: 600;
		box-shadow: var(--shadow-sm);
	}

	.site-navigation ul li:last-child a:hover {
		transform: none;
		box-shadow: var(--shadow-lg);
	}
}

/* ============================================
   MODERN BUTTONS
   ============================================ */
.btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	border-radius: var(--radius-full);
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition-smooth);
	outline: none;
}

.btn.gradient-bg {
	background: linear-gradient(135deg, var(--color-logo-gold), var(--color-warm-bronze));
	color: var(--color-warm-white);
	border: none;
}

.btn.gradient-bg:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 24px rgba(195, 181, 108, 0.3);
	color: var(--color-warm-white);
}

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

.btn.outline:hover {
	background: var(--color-logo-gold);
	color: var(--color-warm-white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SLIDER - BESSER LESBAR
   ============================================ */
.hero-slider {
	height: 600px;
	position: relative;
	margin-top: 0;
	padding-top: 0;
}

.hero-video-wrap {
	position: relative;
	height: 600px;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	color: var(--color-warm-white);
}

.hero-video-wrap video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero-content-wrap {
	position: relative;
	height: 600px;
	display: flex;
	align-items: center;
	color: var(--color-warm-white);
}

.hero-content-wrap img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 10;
	display: flex;
	align-items: center;
}

.hero-content-overlay .col-12 {
	background: transparent;
	padding: 0;
	max-width: 700px;
}

.hero-content-overlay .entry-header h1,
.hero-content-overlay .entry-header h2 {
	color: var(--color-warm-white);
	margin-bottom: var(--space-md);
	line-height: 1.1;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4),
	             0 4px 16px rgba(0,0,0,0.3),
	             0 0 20px rgba(0,0,0,0.2);
}

.hero-content-overlay .entry-header h4 {
	color: var(--color-warm-white);
	font-weight: 500;
	margin-top: var(--space-sm);
	text-shadow: 0 2px 8px rgba(0,0,0,0.4),
	             0 4px 16px rgba(0,0,0,0.3),
	             0 0 20px rgba(0,0,0,0.2);
}

.hero-content-overlay .entry-content p {
	color: var(--color-warm-white);
	font-size: 1.125rem;
	line-height: 1.7;
	max-width: 600px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4),
	             0 4px 16px rgba(0,0,0,0.3),
	             0 0 20px rgba(0,0,0,0.2);
}

.hero-content-overlay .entry-footer {
	margin-top: var(--space-lg);
}

/* Hero Pagination */
.hero-slider .pagination-wrap {
	bottom: var(--space-lg);
	left: 0;
	z-index: 99;
	height: auto;
}

.hero-slider .swiper-pagination {
	display: flex;
	justify-content: center;
	gap: var(--space-sm);
}

.hero-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-light-gray);
	opacity: 0.5;
	transition: var(--transition-smooth);
	margin: 0;
}

.hero-slider .swiper-pagination-bullet-active {
	background: var(--color-logo-gold);
	opacity: 1;
	transform: scale(1.3);
}

/* Mobile Hero */
@media (max-width: 992px) {
	.hero-slider {
		height: 450px;
		margin-top: 0;
		padding-top: 0;
	}

	.hero-video-wrap {
		height: 450px;
	}

	.hero-video-wrap video {
		width: 100%;
		height: 100%;
	}

	.hero-content-wrap {
		height: 450px;
	}

	.hero-content-wrap img {
		width: 100%;
		height: 100%;
	}

	.hero-content-overlay {
		background: transparent;
	}

	.hero-content-overlay .container {
		padding: 0 1.5rem;
	}

	.hero-content-overlay .col-12 {
		align-items: center !important;
		text-align: center;
	}

	.hero-content-overlay .row {
		justify-content: center;
	}

	.hero-content-overlay .entry-header h1,
	.hero-content-overlay .entry-header h2 {
		font-size: 2rem;
	}

	.hero-content-overlay .entry-header h4 {
		font-size: 1.25rem;
	}

	.hero-content-overlay .entry-content p {
		font-size: 0.9375rem;
		max-width: 100%;
	}

	.hero-content-overlay .entry-footer {
		margin-top: var(--space-md);
	}
}

@media (max-width: 576px) {
	.hero-slider {
		height: 400px;
	}

	.hero-video-wrap {
		height: 400px;
	}

	.hero-content-wrap {
		height: 400px;
	}

	.hero-content-overlay .col-12 {
		align-items: center !important;
		text-align: center;
	}

	.hero-content-overlay .row {
		justify-content: center;
	}

	.hero-content-overlay .entry-header h1,
	.hero-content-overlay .entry-header h2 {
		font-size: 1.75rem;
	}

	.hero-content-overlay .entry-header h4 {
		font-size: 1.125rem;
	}

	.hero-content-overlay .entry-content p {
		font-size: 0.875rem;
	}
}

/* ============================================
   TREATMENT SECTIONS - MODERN CARDS
   ============================================ */
.our-offers {
	position: relative;
	padding: var(--space-xl) 0;
	background: transparent;
	z-index: 1;
}

.our-offers::before {
	display: none;
}

.our-offers > .container + .container {
	margin-top: var(--space-xl);
}

/* Section Heading */
.section-heading {
	text-align: center;
	margin-bottom: var(--space-md);
}

.section-heading .entry-title {
	position: relative;
	display: inline-block;
	padding-bottom: var(--space-md);
	font-family: var(--font-serif);
	color: var(--color-soft-charcoal);
}

.section-heading .entry-title::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-logo-gold), var(--color-deep-gold));
	border-radius: var(--radius-full);
}

/* Treatment Cards - Grid Layout */
.our-offers .swiper-container {
	margin-top: var(--space-lg);
	padding: 0;
	position: relative;
}

.our-offers .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	width: 100% !important;
	transform: none !important;
}

.our-offers .swiper-slide {
	height: auto;
	width: 100% !important;
	max-width: none;
	margin: 0 !important;
}

.our-offers .cause-wrap {
	margin: 0;
	background: transparent;
	border-radius: var(--radius-lg);
	overflow: visible;
	box-shadow: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 0;
	border: none;
}

.our-offers .swiper-slide:hover .cause-wrap,
.our-offers a:hover .cause-wrap {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.06);
}

.our-offers .cause-wrap figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	height: 220px;
	flex-shrink: 0;
	background: var(--color-light-gray);
	border-radius: 0;
}

.our-offers .swiper-slide:hover .cause-wrap figure,
.our-offers a:hover .cause-wrap figure {
	/* No separate figure transformation */
}

.our-offers .cause-wrap figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-offers .swiper-slide:hover .cause-wrap figure img,
.our-offers a:hover .cause-wrap figure img {
	transform: scale(1.05);
}

.our-offers .cause-wrap figure .figure-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(184, 161, 104, 0.92), rgba(195, 181, 108, 0.92));
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10;
}

.our-offers .swiper-slide:hover .cause-wrap figure .figure-overlay,
.our-offers a:hover .cause-wrap figure .figure-overlay {
	opacity: 1;
	visibility: visible;
}

.our-offers .cause-wrap figure .figure-overlay .btn {
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.our-offers .swiper-slide:hover .cause-wrap figure .figure-overlay .btn,
.our-offers a:hover .cause-wrap figure .figure-overlay .btn {
	opacity: 1;
	transform: translateY(0);
}

.our-offers .cause-content-wrap {
	padding: 1.25rem 1rem;
	background: transparent;
	border: none;
	text-align: center;
	flex-grow: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our-offers .cause-content-wrap .entry-header {
	width: 100%;
}

.our-offers .cause-content-wrap .entry-title {
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-soft-charcoal);
	margin: 0;
	transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: -0.01em;
	line-height: 1.4;
}

.our-offers .swiper-slide:hover .cause-content-wrap .entry-title,
.our-offers a:hover .cause-content-wrap .entry-title {
	color: var(--color-logo-gold);
}

/* Slider Navigation - Hidden for Grid Layout */
.our-offers .swiper-button-next,
.our-offers .swiper-button-prev,
.swiper-button-next,
.swiper-button-prev {
	display: none !important;
}

@media (max-width: 992px) {
	.our-offers {
		padding: var(--space-xl) 0;
	}

	.our-offers .swiper-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: 1.5rem;
	}

	.our-offers .cause-wrap figure {
		height: 200px;
	}

	.section-heading .entry-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 768px) {
	.our-offers .swiper-wrapper {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.our-offers .cause-wrap figure {
		height: 160px;
		border-radius: 0;
	}

	.our-offers .cause-content-wrap {
		padding: 0.75rem 0 0;
	}

	.our-offers .cause-content-wrap .entry-title {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.our-offers {
		padding: var(--space-lg) 0;
	}

	.our-offers .swiper-wrapper {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.875rem;
	}

	.our-offers .cause-wrap figure {
		height: 140px;
		border-radius: 0;
	}

	.our-offers .cause-content-wrap {
		padding: 0.625rem 0 0;
	}

	.section-heading .entry-title {
		font-size: 1.5rem;
	}

	.our-offers .cause-content-wrap .entry-title {
		font-size: 0.875rem;
		line-height: 1.3;
	}
}

/* ============================================
   ABOUT SECTION - MODERN SPLIT LAYOUT
   ============================================ */
.home-page-welcome {
	position: relative;
	padding: var(--space-2xl) 0;
	background: linear-gradient(135deg, var(--color-soft-beige) 0%, var(--color-cream) 100%);
	overflow: hidden;
}

.home-page-welcome::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(195, 181, 108, 0.12), transparent);
	border-radius: 50%;
	z-index: 0;
}

.home-page-welcome .row {
	position: relative;
	z-index: 1;
}

.home-page-welcome img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	width: 100%;
	height: auto;
}

.welcome-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--space-lg);
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.welcome-content .entry-header {
	margin-bottom: var(--space-lg);
}

.welcome-content .entry-title {
	position: relative;
	padding-bottom: var(--space-md);
	font-family: var(--font-serif);
	color: var(--color-soft-charcoal);
}

.welcome-content .entry-title::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-logo-gold), var(--color-deep-gold));
	border-radius: var(--radius-full);
}

.welcome-content .entry-content {
	margin-top: var(--space-md);
}

.welcome-content .entry-content p {
	color: var(--color-text-muted);
	line-height: 1.8;
}

.welcome-content .entry-footer {
	margin-top: var(--space-lg);
}

@media (max-width: 992px) {
	.home-page-welcome img {
		margin-bottom: var(--space-lg);
	}

	.welcome-content {
		padding: var(--space-md);
	}
}

/* ============================================
   MAP SECTION
   ============================================ */
.home-page-limestone {
	padding: var(--space-2xl) 0;
	background: var(--color-cream);
}

.contact-gmap {
	margin-top: var(--space-lg);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.contact-gmap iframe {
	display: block;
	width: 100%;
	height: 500px;
	border: none;
}

@media (max-width: 768px) {
	.contact-gmap iframe {
		height: 350px;
	}
}

/* ============================================
   FLOATING CONTACT BUTTONS
   ============================================ */
.floatingContact,
.floatingContact2 {
	position: fixed;
	z-index: 1000;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-logo-gold), var(--color-warm-bronze));
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
	cursor: pointer;
}

.floatingContact {
	bottom: 24px;
	right: 24px;
}

.floatingContact2 {
	bottom: 100px;
	right: 24px;
}

.floatingContact:hover,
.floatingContact2:hover {
	transform: scale(1.15);
	box-shadow: var(--shadow-xl);
}

.floatingContact i,
.floatingContact2 i {
	font-size: 32px;
	color: var(--color-warm-white);
	padding: 0;
}

@media (max-width: 768px) {
	.floatingContact,
	.floatingContact2 {
		width: 56px;
		height: 56px;
	}

	.floatingContact {
		bottom: 20px;
		right: 20px;
	}

	.floatingContact2 {
		bottom: 88px;
		right: 20px;
	}

	.floatingContact i,
	.floatingContact2 i {
		font-size: 28px;
	}
}

/* ============================================
   FOOTER - MODERN LIGHT DESIGN
   ============================================ */
.site-footer {
	position: relative;
	background: var(--color-light-beige);
	color: var(--color-soft-charcoal);
}

.site-footer::before {
	display: none;
}

.footer-widgets {
	position: relative;
	padding: var(--space-2xl) 0 var(--space-lg);
	background: var(--color-light-beige);
	color: var(--color-text-muted);
	z-index: 1;
}

.footer-widgets h2 {
	font-family: var(--font-sans);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-soft-charcoal);
	margin-bottom: var(--space-md);
}

.footer-widgets p {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--color-text-muted);
}

.footer-widgets ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-widgets ul li {
	margin-bottom: var(--space-sm);
}

.footer-widgets ul li a {
	color: var(--color-text-muted);
	text-decoration: none;
	transition: var(--transition-fast);
	font-size: 0.9375rem;
}

.footer-widgets ul li a:hover {
	color: var(--color-logo-gold);
	padding-left: 4px;
}

.foot-about ul {
	display: flex;
	gap: var(--space-md);
	margin-top: var(--space-md);
}

.foot-about ul li {
	margin: 0;
}

.foot-about ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-warm-white);
	color: var(--color-logo-gold);
	transition: var(--transition-smooth);
	box-shadow: var(--shadow-sm);
}

.foot-about ul li a:hover {
	background: linear-gradient(135deg, var(--color-logo-gold), var(--color-warm-bronze));
	color: var(--color-warm-white);
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	padding: 0;
}

.foot-about ul li a.tiktok-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.foot-about ul li a.tiktok-icon svg {
	width: 20px;
	height: 20px;
}

.foot-contact ul li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
}

.foot-contact ul li .fa {
	color: var(--color-logo-gold);
	font-size: 1.125rem;
	width: 24px;
	text-align: center;
	margin-top: 2px;
}

.foot-contact ul li span,
.foot-contact ul li a {
	color: var(--color-text-muted);
	font-size: 0.9375rem;
}

/* ============================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

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

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

/* Scroll reveal - wird via JS aktiviert */
.scroll-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-4 {
	margin-top: var(--space-md);
}

.mt-5 {
	margin-top: var(--space-lg);
}

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

.d-flex {
	display: flex;
}

.align-items-center {
	align-items: center;
}

.justify-content-center {
	justify-content: center;
}

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.google-reviews-section {
	padding: var(--space-2xl) 0;
	background-color: var(--color-warm-white);
}

.review-card {
	background: var(--color-cream);
	border-radius: var(--radius-md);
	padding: var(--space-md);
	height: 100%;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-smooth);
	border: 1px solid var(--color-warm-sand);
}

.review-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.review-stars {
	display: flex;
	gap: 4px;
}

.review-stars i {
	color: var(--color-logo-gold);
	font-size: 1.125rem;
}

.review-text p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--color-soft-charcoal);
	font-style: italic;
	margin: 0;
}

.review-author {
	color: var(--color-text-muted);
	font-size: 0.9rem;
	font-weight: 500;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 576px) {
	:root {
		--space-xl: 4rem;
		--space-2xl: 5rem;
	}

	.section-heading .entry-title {
		font-size: 1.75rem;
	}

	.our-offers {
		padding: var(--space-xl) 0;
	}

	.home-page-welcome,
	.home-page-limestone {
		padding: var(--space-xl) 0;
	}

	.google-reviews-section {
		padding: var(--space-xl) 0;
	}

	.review-card {
		margin-bottom: var(--space-md);
	}
}
