:root {
--clr-bg: #FFF8FD;
--clr-surface: #FFFFFF;
--clr-text: #2D1F29;
--clr-muted: #9F7E9A;
--clr-primary: #E06DBB;
--clr-secondary: #C7A34F;
--clr-highlight: #FFE1F2;
--font-display: 'Playfair Display', serif;
--font-body: 'Plus Jakarta Sans', sans-serif;
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: var(--font-body);
background: var(--clr-bg);
color: var(--clr-text);
line-height: 1.7;
font-weight: 400;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
font-weight: 600;
line-height: 1.3;
}

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

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

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

.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(255, 248, 253, 0.85);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(224, 109, 187, 0.1);
transition: var(--transition);
transform: translateY(0);
}


.site-header .container {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 1.2rem;
padding-bottom: 1.2rem;
}

.logo {
font-family: var(--font-display);
font-size: 1.6rem;
font-weight: 700;
color: var(--clr-primary);
letter-spacing: 0.02em;
}

.main-nav ul {
display: flex;
gap: 2.5rem;
list-style: none;
}

.main-nav a {
font-size: 0.95rem;
font-weight: 500;
color: var(--clr-text);
position: relative;
}

.main-nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--clr-primary);
transition: var(--transition);
}

.main-nav a:hover::after {
width: 100%;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	z-index: 1003;
	position: relative;
}

.mobile-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background: var(--clr-text);
	transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}


.hero-decor {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: linear-gradient(135deg, var(--clr-highlight) 0%, var(--clr-bg) 100%);
}

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

.floating-petals {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
}

.hero-glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(224, 109, 187, 0.3) 0%, transparent 70%);
filter: blur(80px);
z-index: 2;
}


.hero-content {
position: relative;
z-index: 10;
text-align: center;
}

.hero-title {
font-size: clamp(2.5rem, 7vw, 5rem);
color: var(--clr-text);
margin-bottom: 1.5rem;
opacity: 1;
}


.hero-subtitle {
font-size: clamp(1rem, 2vw, 1.4rem);
color: var(--clr-muted);
margin-bottom: 2.5rem;
font-weight: 300;
opacity: 1;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 1.1rem 3rem;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
letter-spacing: 0.03em;
transition: var(--transition);
opacity: 1;
box-shadow: 0 10px 40px rgba(224, 109, 187, 0.25);
}

.btn-primary {
background: linear-gradient(135deg, var(--clr-primary) 0%, #D85AA8 100%);
color: white;
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 50px rgba(224, 109, 187, 0.4);
}

.btn-secondary {
background: linear-gradient(135deg, var(--clr-secondary) 0%, #B8943D 100%);
color: white;
}

.btn-secondary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 50px rgba(199, 163, 79, 0.4);
}

.event-types {
padding: 8rem 0;
background: var(--clr-surface);
position: relative;
}

.event-types::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to bottom, var(--clr-bg), transparent);
}

.section-title {
font-size: clamp(2rem, 5vw, 3.5rem);
text-align: center;
margin-bottom: 1rem;
color: var(--clr-text);
}

.section-intro {
text-align: center;
color: var(--clr-muted);
font-size: 1.1rem;
margin-bottom: 4rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.event-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
margin-top: 4rem;
}

.event-card {
background: linear-gradient(135deg, var(--clr-highlight) 0%, var(--clr-surface) 100%);
padding: 3rem 2rem;
border-radius: 30px;
text-align: center;
transition: var(--transition);
border: 1px solid rgba(224, 109, 187, 0.1);
box-shadow: 0 10px 30px rgba(224, 109, 187, 0.08);
}

.event-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(224, 109, 187, 0.2);
}

.event-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
filter: drop-shadow(0 5px 15px rgba(224, 109, 187, 0.3));
}

.event-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--clr-text);
}

.event-card p {
color: var(--clr-muted);
font-size: 0.95rem;
}

.signature-zones {
padding: 8rem 0;
background: linear-gradient(to bottom, var(--clr-surface), var(--clr-bg));
}

.zones-showcase {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 4rem;
}

.zone-item {
position: relative;
border-radius: 25px;
overflow: hidden;
aspect-ratio: 3/4;
box-shadow: 0 15px 50px rgba(224, 109, 187, 0.15);
transition: var(--transition);
}

.zone-item:hover {
transform: scale(1.03);
box-shadow: 0 25px 70px rgba(224, 109, 187, 0.25);
}

.zone-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

.zone-item:hover img {
transform: scale(1.1);
}

.zone-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 2rem;
background: linear-gradient(to top, rgba(45, 31, 41, 0.95), transparent);
color: white;
transform: translateY(100%);
transition: var(--transition);
}

.zone-item:hover .zone-overlay {
transform: translateY(0);
}

.zone-overlay h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: white;
}

.zone-overlay p {
font-size: 0.9rem;
opacity: 0.9;
}

.case-studies {
padding: 8rem 0;
background: var(--clr-bg);
}

.case-grid {
display: grid;
gap: 4rem;
margin-top: 4rem;
}

.case-card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
background: var(--clr-surface);
border-radius: 30px;
overflow: hidden;
box-shadow: 0 15px 50px rgba(224, 109, 187, 0.1);
transition: var(--transition);
}

.case-card:nth-child(even) {
direction: rtl;
}

.case-card:nth-child(even) > * {
direction: ltr;
}

.case-card:hover {
transform: translateY(-5px);
box-shadow: 0 25px 70px rgba(224, 109, 187, 0.2);
}

.case-card img {
width: 100%;
height: 100%;
object-fit: cover;
}

.case-content {
padding: 2rem;
}

.case-content h3 {
font-size: 2rem;
margin-bottom: 1rem;
}

.case-palette {
display: flex;
gap: 0.5rem;
margin-bottom: 1.5rem;
}

.case-palette span {
width: 40px;
height: 40px;
border-radius: 50%;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-content p {
color: var(--clr-muted);
line-height: 1.8;
}

.cta-section {
padding: 10rem 0;
background: linear-gradient(135deg, var(--clr-primary) 0%, #C75AA3 100%);
position: relative;
overflow: hidden;
text-align: center;
}

.floating-orbs {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}

.cta-content {
position: relative;
z-index: 10;
}

.cta-section h2 {
font-size: clamp(2rem, 5vw, 3.5rem);
color: white;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2.5rem;
}

.site-footer {
background: var(--clr-text);
color: rgba(255, 255, 255, 0.8);
padding: 5rem 0 2rem;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-col h4 {
color: white;
margin-bottom: 1.5rem;
font-size: 1.2rem;
}

.footer-col ul {
list-style: none;
}

.footer-col li {
margin-bottom: 0.8rem;
}

.footer-col a:hover {
color: var(--clr-primary);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Override inline styles for mobile */
@media (max-width: 768px) {
	.process-section > .container > div[style*="grid-template-columns"],
	.features-section > .container > div[style*="grid-template-columns"],
	.testimonials-section > .container > div[style*="grid-template-columns"],
	.gallery-preview > .container > div[style*="grid-template-columns"] {
		grid-template-columns: 1fr !important;
	}
	
	.features-section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
	}
	
	.process-section > .container > div[style*="grid-template-columns"] > div[style*="padding: 2rem"] {
		padding: 1.5rem !important;
	}
	
	.process-section > .container > div[style*="grid-template-columns"] > div > div[style*="font-size: 3rem"] {
		font-size: 2.5rem !important;
	}
	
	.process-section > .container > div[style*="grid-template-columns"] > div h3[style*="font-size: 1.5rem"] {
		font-size: 1.3rem !important;
	}
	
	.features-section > .container > div > div[style*="display: flex"] > div[style*="font-size: 2.5rem"] {
		font-size: 2rem !important;
	}
	
	.features-section > .container > div > div > div h3[style*="font-size: 1.3rem"] {
		font-size: 1.2rem !important;
	}
	
	.testimonials-section > .container > div[style*="grid-template-columns"] > div[style*="background"] {
		padding: 2rem 1.5rem !important;
	}
	
	.testimonials-section > .container > div > div > div[style*="font-size: 2rem"] {
		font-size: 1.5rem !important;
	}
	
	.gallery-preview > .container > div[style*="grid-template-columns: repeat(3"] {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 320px) {
	.process-section > .container > div[style*="grid-template-columns"] > div[style*="padding: 2rem"] {
		padding: 1.5rem !important;
	}
	
	.process-section > .container > div[style*="grid-template-columns"] > div > div[style*="font-size: 3rem"] {
		font-size: 2.5rem !important;
	}
	
	.process-section > .container > div[style*="grid-template-columns"] > div h3[style*="font-size: 1.5rem"] {
		font-size: 1.3rem !important;
	}
	
	.features-section > .container > div > div[style*="display: flex"] > div[style*="font-size: 2.5rem"] {
		font-size: 2rem !important;
	}
	
	.features-section > .container > div > div > div h3[style*="font-size: 1.3rem"] {
		font-size: 1.2rem !important;
	}
	
	.testimonials-section > .container > div[style*="grid-template-columns"] > div[style*="background"] {
		padding: 2rem 1.5rem !important;
	}
	
	.testimonials-section > .container > div > div > div[style*="font-size: 2rem"] {
		font-size: 1.5rem !important;
	}
}

@media (max-width: 768px) {
.container {
	padding: 0 1.5rem;
}

.main-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 320px;
	height: 100vh;
	background: var(--clr-surface);
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
	transition: right 0.3s ease-in-out;
	z-index: 1002;
	padding-top: 5rem;
	overflow-y: auto;
}

.main-nav.active {
	right: 0;
}

.main-nav ul {
	flex-direction: column;
	gap: 0;
	padding: 0 2rem;
}

.main-nav li {
	border-bottom: 1px solid rgba(224, 109, 187, 0.1);
}

.main-nav a {
	display: block;
	padding: 1.2rem 0;
	font-size: 1.1rem;
	color: var(--clr-text);
	position: relative;
	cursor: pointer;
}

.main-nav a::after {
	display: none;
}

.main-nav a:hover {
	color: var(--clr-primary);
}

.mobile-toggle {
	display: flex;
	z-index: 1003;
}

.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(45, 31, 41, 0.5);
	backdrop-filter: blur(5px);
	z-index: 1001;
	transition: opacity 0.3s ease-in-out;
}


.case-card {
	grid-template-columns: 1fr;
}

.case-card:nth-child(even) {
	direction: ltr;
}

.event-grid {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.zones-showcase {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.service-grid {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.pricing-grid {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.gallery-grid {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.concept-preview {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.hero-title {
	font-size: 2.5rem;
}

.hero-subtitle {
	font-size: 1rem;
}

.section-title {
	font-size: 2rem;
}

.footer-grid {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.contact-grid {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.contact-form {
	padding: 2rem;
}

.contact-info {
	padding: 2rem;
}

.gallery-filters {
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: center;
}

.filter-btn {
	padding: 0.7rem 1.5rem;
	font-size: 0.9rem;
}

.hero-decor {
	min-height: 80vh;
}

.cta-section {
	padding: 6rem 0;
}

.event-types,
.signature-zones,
.case-studies,
.process-section,
.features-section,
.testimonials-section,
.gallery-preview,
.pricing-section,
.contact-section,
.gallery-section,
.concept-section,
.thank-you-section {
	padding: 4rem 0;
}

/* Services page sections padding for 768px */
.event-types[style*="padding-top: 12rem"] {
	padding-top: 10rem !important;
}

section[style*="padding: 8rem 0"] {
	padding: 4rem 0 !important;
}

.features-section > .container > div {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.features-section img {
	margin-bottom: 2rem;
}

.process-section > .container > div {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.testimonials-section > .container > div {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.gallery-preview > .container > div {
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.concept-card {
	padding: 2.5rem;
}

.concept-preview img {
	height: 300px;
}

.service-card img {
	height: 250px;
}

.zone-item {
	aspect-ratio: 3/4;
}

.case-content {
	padding: 1.5rem;
}

.case-content h3 {
	font-size: 1.5rem;
}

.pricing-card {
	padding: 2.5rem 2rem;
}

.pricing-price {
	font-size: 2.5rem;
}

.btn-primary,
.btn-secondary,
.btn-request {
	padding: 1rem 2.5rem;
	font-size: 0.95rem;
}

.event-card {
	padding: 2.5rem 1.5rem;
}

.event-icon {
	font-size: 2.5rem;
}

.event-card h3 {
	font-size: 1.3rem;
}

.section-intro {
	font-size: 1rem;
	margin-bottom: 3rem;
}

.contact-hero h1 {
	font-size: 2rem;
}

.contact-hero p {
	font-size: 1rem;
}

.info-item {
	margin-bottom: 2rem;
}

.info-item h3 {
	font-size: 1.2rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	padding: 0.9rem 1.2rem;
	font-size: 0.95rem;
}

.btn-submit {
	padding: 1.1rem;
	font-size: 1rem;
}

.thank-you-section {
	padding-top: 10rem !important;
	min-height: auto !important;
	padding-bottom: 4rem !important;
}

.thank-you-content {
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem 1rem;
	text-align: center;
}

.thank-you-content h1 {
	font-size: 2.5rem;
}

.thank-you-icon {
	font-size: 4rem;
}

.thank-you-content img {
	max-width: 100% !important;
	width: 100% !important;
	margin: 1.5rem auto !important;
}

.error-code {
	font-size: 8rem;
}

.error-content h1 {
	font-size: 2rem;
}
}

@media (max-width: 320px) {
.container {
	padding: 0 1rem;
}

.logo {
	font-size: 1.2rem;
}

.main-nav {
	width: 100%;
	max-width: 100%;
}

.main-nav ul {
	padding: 0 1.5rem;
}

.main-nav a {
	font-size: 1rem;
	padding: 1rem 0;
}

.mobile-toggle span {
	width: 22px;
}

.hero-title {
	font-size: 2rem;
}

.hero-subtitle {
	font-size: 0.9rem;
}

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

.btn-primary,
.btn-secondary,
.btn-request {
	padding: 0.9rem 2rem;
	font-size: 0.9rem;
}

.event-card {
	padding: 2rem 1.5rem;
}

.event-icon {
	font-size: 2rem;
}

.event-card h3 {
	font-size: 1.2rem;
}

.event-card p {
	font-size: 0.9rem;
}

.service-card {
	margin-bottom: 2rem;
}

.service-card img {
	height: 220px;
}

.service-content {
	padding: 1.5rem;
}

.service-content h3 {
	font-size: 1.4rem;
}

.service-content p {
	font-size: 0.9rem;
}

.pricing-card {
	padding: 2rem 1.5rem;
}

.pricing-price {
	font-size: 2.5rem;
}

.pricing-card h3 {
	font-size: 1.5rem;
}

.pricing-features li {
	font-size: 0.9rem;
	padding: 0.7rem 0;
}

.contact-form {
	padding: 2rem 1.5rem;
}

.contact-info {
	padding: 2rem 1.5rem;
}

.contact-hero h1 {
	font-size: 1.75rem;
}

.contact-hero p {
	font-size: 0.95rem;
}

.form-group label {
	font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	padding: 0.8rem 1rem;
	font-size: 0.9rem;
}

.btn-submit {
	padding: 1rem;
	font-size: 0.95rem;
}

.gallery-filters {
	gap: 0.6rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.6rem 1.2rem;
	font-size: 0.85rem;
}

.gallery-grid {
	gap: 1rem;
}

.concept-card {
	padding: 2rem 1.5rem;
}

.concept-header h3 {
	font-size: 1.8rem;
}

.concept-palette span {
	width: 50px;
	height: 50px;
}

.concept-preview img {
	height: 250px;
}

.concept-elements {
	font-size: 0.95rem;
}

.zone-item {
	aspect-ratio: 3/4;
}

.zone-overlay {
	padding: 1.5rem;
}

.zone-overlay h3 {
	font-size: 1.3rem;
}

.zone-overlay p {
	font-size: 0.85rem;
}

.case-card {
	gap: 0;
}

.case-content {
	padding: 1.5rem;
}

.case-content h3 {
	font-size: 1.4rem;
}

.case-content p {
	font-size: 0.9rem;
}

.case-palette span {
	width: 35px;
	height: 35px;
}

.section-intro {
	font-size: 0.95rem;
	margin-bottom: 2.5rem;
}

.footer-grid {
	gap: 1.5rem;
}

.footer-col h4 {
	font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
	font-size: 0.9rem;
}

.thank-you-content h1 {
	font-size: 2rem;
}

.thank-you-icon {
	font-size: 3.5rem;
}

.thank-you-message {
	font-size: 1rem;
}

/* Thank you page responsive styles */
.thank-you-section {
	padding-top: 10rem !important;
	min-height: auto !important;
	padding-bottom: 4rem !important;
}

.thank-you-content {
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem 1rem;
	text-align: center;
}

.thank-you-content img {
	max-width: 100% !important;
	width: 100% !important;
	margin: 1.5rem auto !important;
}

.error-code {
	font-size: 6rem;
}

.error-content h1 {
	font-size: 1.75rem;
}

.error-content p {
	font-size: 1rem;
}

.cta-section h2 {
	font-size: 2rem;
}

.cta-section p {
	font-size: 1rem;
}

.info-item h3 {
	font-size: 1.1rem;
}

.info-item p,
.info-item a {
	font-size: 0.9rem;
}

.process-section > .container > div > div {
	padding: 1.5rem;
}

.process-section > .container > div > div > div {
	font-size: 2.5rem;
}

.process-section > .container > div > div h3 {
	font-size: 1.3rem;
}

.process-section > .container > div > div p {
	font-size: 0.9rem;
}

.testimonials-section > .container > div > div {
	padding: 2rem 1.5rem;
}

.testimonials-section > .container > div > div > div {
	font-size: 1.5rem;
}

.testimonials-section > .container > div > div p {
	font-size: 0.9rem;
}

.gallery-preview > .container > div > div {
	aspect-ratio: 4/3;
}

.gallery-preview > .container > div > div > div {
	padding: 1.2rem;
}

.gallery-preview > .container > div > div h3 {
	font-size: 1.1rem;
}

.gallery-preview > .container > div > div p {
	font-size: 0.85rem;
}

.features-section > .container > div > div {
	gap: 1rem;
}

.features-section > .container > div > div > div {
	font-size: 2rem;
}

.features-section > .container > div > div h3 {
	font-size: 1.2rem;
}

.features-section > .container > div > div p {
	font-size: 0.9rem;
}

/* Gallery page specific 320px fixes */
.gallery-section {
	padding-top: 10rem !important;
}

.gallery-filters {
	flex-direction: column;
	align-items: stretch;
	gap: 0.5rem !important;
}

.filter-btn {
	width: 100%;
	text-align: center;
	padding: 0.7rem 1rem !important;
	font-size: 0.85rem !important;
}

.gallery-grid {
	grid-template-columns: 1fr !important;
	gap: 1rem !important;
}

.gallery-item {
	aspect-ratio: 4/3;
}

/* Gallery highlights section inline styles override */
.gallery-section + section > .container > div[style*="grid-template-columns: repeat(3"] {
	grid-template-columns: 1fr !important;
	gap: 1.5rem !important;
}

.gallery-section + section > .container > div > div[style*="padding: 2rem"] {
	padding: 1.5rem !important;
}

.gallery-section + section > .container > div > div > div[style*="font-size: 3rem"] {
	font-size: 2rem !important;
}

.gallery-section + section > .container > div > div h3[style*="font-size: 1.3rem"] {
	font-size: 1.1rem !important;
}

.gallery-section + section > .container > div > div p {
	font-size: 0.85rem !important;
}

/* Behind the scenes section inline styles override */
.gallery-section + section + section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
	grid-template-columns: 1fr !important;
	gap: 2rem !important;
}

.gallery-section + section + section > .container > div > div h2 {
	font-size: 1.5rem !important;
	text-align: center !important;
}

.gallery-section + section + section > .container > div > div p {
	font-size: 0.9rem !important;
}

.gallery-section + section + section > .container > div > div > div[style*="display: flex"] {
	flex-direction: column !important;
	gap: 1rem !important;
}

.gallery-section + section + section > .container > div > div > div > div[style*="font-size: 2rem"] {
	font-size: 1.5rem !important;
}

.gallery-section + section + section > .container > div > div > div h3 {
	font-size: 1.1rem !important;
}

/* Pricing page specific 320px fixes */
.pricing-section {
	padding-top: 10rem !important;
}

.pricing-grid {
	gap: 1.5rem !important;
}

.pricing-card {
	padding: 2rem 1.5rem !important;
	margin-bottom: 1.5rem;
}

.pricing-icon {
	font-size: 2.5rem !important;
}

.pricing-price {
	font-size: 2.2rem !important;
}

.pricing-features {
	margin-bottom: 2rem !important;
}

.pricing-features li {
	font-size: 0.85rem !important;
	padding: 0.6rem 0 !important;
	padding-left: 1.5rem !important;
}

.pricing-features li::before {
	font-size: 1rem !important;
}

.btn-request {
	width: 100%;
	padding: 0.9rem 1.5rem !important;
	font-size: 0.9rem !important;
}

.pricing-section > .container > .container[style*="margin-top"] {
	margin-top: 3rem !important;
	padding: 0 1rem !important;
}

.pricing-section > .container > .container h3 {
	font-size: 1.4rem !important;
}

.pricing-section > .container > .container p {
	font-size: 0.9rem !important;
}

/* Contact page specific 320px fixes */
.contact-section {
	padding-top: 10rem !important;
}

.contact-hero {
	margin-bottom: 3rem !important;
}

.contact-hero h1 {
	font-size: 1.6rem !important;
}

.contact-hero p {
	font-size: 0.9rem !important;
}

.contact-grid {
	gap: 2rem !important;
}

.contact-form {
	padding: 1.5rem !important;
}

.contact-form h2 {
	font-size: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

.form-group {
	margin-bottom: 1.2rem !important;
}

.form-group label {
	font-size: 0.85rem !important;
}

.form-group input,
.form-group textarea,
.form-group select {
	padding: 0.75rem 0.9rem !important;
	font-size: 0.9rem !important;
}

.form-group textarea {
	min-height: 120px !important;
}

.checkbox-group {
	flex-direction: column;
	align-items: flex-start !important;
	gap: 0.5rem !important;
}

.checkbox-group label {
	font-size: 0.85rem !important;
	line-height: 1.5;
}

.btn-submit {
	padding: 1rem !important;
	font-size: 0.95rem !important;
}

.contact-info {
	padding: 1.5rem !important;
}

.info-item {
	margin-bottom: 1.5rem !important;
}

.info-item h3 {
	font-size: 1rem !important;
	margin-bottom: 0.6rem !important;
}

.info-item p {
	font-size: 0.85rem !important;
	line-height: 1.6;
}

.info-item img {
	margin-top: 1.5rem !important;
	border-radius: 15px !important;
}

/* Services page specific 320px fixes */
.event-types[style*="padding-top: 12rem"] {
	padding-top: 10rem !important;
}

.service-grid {
	gap: 1.5rem !important;
}

.service-card {
	margin-bottom: 1.5rem !important;
}

.service-card img {
	height: 200px !important;
}

.service-content {
	padding: 1.5rem !important;
}

.service-content h3 {
	font-size: 1.3rem !important;
	margin-bottom: 0.8rem !important;
}

.service-content p {
	font-size: 0.85rem !important;
	line-height: 1.7;
	margin-bottom: 1.2rem !important;
}

.service-includes {
	margin-bottom: 1.5rem !important;
}

.service-includes li {
	font-size: 0.85rem !important;
	padding: 0.5rem 0 !important;
	padding-left: 1.2rem !important;
	line-height: 1.6;
}

.service-includes li::before {
	font-size: 0.9rem !important;
}

.btn-request {
	padding: 0.85rem 2rem !important;
	font-size: 0.9rem !important;
}

/* Services page - Service Highlights section 320px fixes */
.event-types + section[style*="padding: 8rem"] > .container > div[style*="grid-template-columns: repeat(2"] {
	grid-template-columns: 1fr !important;
	gap: 2rem !important;
}

.event-types + section > .container > div > div h3[style*="font-size: 2rem"] {
	font-size: 1.5rem !important;
	margin-bottom: 1rem !important;
}

.event-types + section > .container > div > div p[style*="color: var(--clr-muted)"] {
	font-size: 0.9rem !important;
	margin-bottom: 1.5rem !important;
}

.event-types + section > .container > div > div > div[style*="display: flex"] {
	gap: 1rem !important;
}

.event-types + section > .container > div > div > div > div[style*="font-size: 1.5rem"] {
	font-size: 1.2rem !important;
}

.event-types + section > .container > div > div > div h4[style*="font-size: 1.1rem"] {
	font-size: 1rem !important;
}

.event-types + section > .container > div > div > div p[style*="font-size: 0.95rem"] {
	font-size: 0.85rem !important;
}

/* Services page - Our Commitment section 320px fixes */
.event-types + section + section[style*="padding: 8rem"] > .container > div > div[style*="grid-template-columns: repeat(4"] {
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 1.5rem !important;
	margin-top: 2rem !important;
}

.event-types + section + section > .container > div > div > div[style*="text-align: center"] > div[style*="font-size: 2.5rem"] {
	font-size: 2rem !important;
	margin-bottom: 0.8rem !important;
}

.event-types + section + section > .container > div > div > div p[style*="font-weight: 600"] {
	font-size: 0.9rem !important;
}

.event-types + section + section > .container > div > div p[style*="font-size: 1.1rem"] {
	font-size: 0.95rem !important;
	margin-bottom: 2rem !important;
}

/* Services page - CTA section 320px fixes */
.cta-section {
	padding: 5rem 0 !important;
}

.cta-section h2 {
	font-size: 1.75rem !important;
}

.cta-section p {
	font-size: 0.95rem !important;
}

/* Services page - all sections padding 320px */
.event-types[style*="padding-top: 12rem"] {
	padding-top: 8rem !important;
}

section[style*="padding: 8rem 0"] {
	padding: 3rem 0 !important;
}

/* Style Concepts page - main section 320px fixes */
.concept-section[style*="padding-top: 12rem"] {
	padding-top: 8rem !important;
}

.concept-card {
	padding: 2rem 1.5rem !important;
	margin-bottom: 3rem !important;
}

.concept-header {
	margin-bottom: 2rem !important;
}

.concept-header h3 {
	font-size: 1.8rem !important;
	margin-bottom: 1rem !important;
}

.concept-palette {
	gap: 0.8rem !important;
	margin-bottom: 1.5rem !important;
}

.concept-palette span {
	width: 50px !important;
	height: 50px !important;
}

.concept-elements {
	font-size: 0.95rem !important;
	margin-bottom: 2rem !important;
	line-height: 1.6;
}

.concept-preview {
	grid-template-columns: 1fr !important;
	gap: 1.5rem !important;
}

.concept-preview img {
	height: 250px !important;
	border-radius: 15px !important;
}

/* Style Concepts page - Style Customization section 320px fixes */
.concept-section + section[style*="padding: 8rem"] > .container > div[style*="grid-template-columns: 1fr 1fr"] {
	grid-template-columns: 1fr !important;
	gap: 2rem !important;
}

.concept-section + section > .container > div > div h3[style*="font-size: 2rem"] {
	font-size: 1.5rem !important;
	margin-bottom: 1rem !important;
}

.concept-section + section > .container > div > div p[style*="font-size: 1.1rem"] {
	font-size: 0.95rem !important;
	margin-bottom: 1.5rem !important;
}

.concept-section + section > .container > div > div > div[style*="display: flex"] {
	gap: 1rem !important;
}

.concept-section + section > .container > div > div > div > div[style*="font-size: 1.5rem"] {
	font-size: 1.2rem !important;
}

.concept-section + section > .container > div > div > div h4[style*="font-size: 1.1rem"] {
	font-size: 1rem !important;
}

.concept-section + section > .container > div > div > div p[style*="font-size: 0.95rem"] {
	font-size: 0.85rem !important;
}

.concept-section + section > .container > div > div img {
	border-radius: 20px !important;
	margin-top: 1rem !important;
}

/* Style Concepts page - Concept Development Process section 320px fixes */
.concept-section + section + section[style*="padding: 8rem"] > .container > div > div[style*="grid-template-columns: repeat(3"] {
	grid-template-columns: 1fr !important;
	gap: 1.5rem !important;
	margin-top: 2rem !important;
}

.concept-section + section + section > .container > div > div > div[style*="text-align: center"] {
	padding: 1.5rem !important;
}

.concept-section + section + section > .container > div > div > div > div[style*="font-size: 2.5rem"] {
	font-size: 2rem !important;
	margin-bottom: 0.8rem !important;
}

.concept-section + section + section > .container > div > div > div h4[style*="font-size: 1.1rem"] {
	font-size: 1rem !important;
}

.concept-section + section + section > .container > div > div > div p[style*="font-size: 0.95rem"] {
	font-size: 0.85rem !important;
}

.concept-section + section + section > .container > div > div p[style*="font-size: 1.1rem"] {
	font-size: 0.95rem !important;
	margin-bottom: 2rem !important;
}

/* Style Concepts page - CTA section 320px fixes */
.cta-section {
	padding: 5rem 0 !important;
}

.cta-section h2 {
	font-size: 1.75rem !important;
}

.cta-section p {
	font-size: 0.95rem !important;
}

/* Thank you page 320px responsive fixes */
.thank-you-section {
	padding-top: 8rem !important;
	padding-bottom: 3rem !important;
}

.thank-you-content {
	padding: 1.5rem 1rem !important;
}

.thank-you-icon {
	font-size: 3rem !important;
	margin-bottom: 1rem !important;
}

.thank-you-content h1 {
	font-size: 1.75rem !important;
	margin-bottom: 1rem !important;
}

.thank-you-message {
	font-size: 0.95rem !important;
	margin-bottom: 1.5rem !important;
	line-height: 1.6;
}

.thank-you-content img {
	margin: 1rem auto !important;
	border-radius: 20px !important;
}

.btn-primary {
	padding: 0.9rem 2rem !important;
	font-size: 0.9rem !important;
}
}

.service-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
margin-top: 4rem;
}

.service-card {
background: var(--clr-surface);
border-radius: 25px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(224, 109, 187, 0.1);
transition: var(--transition);
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(224, 109, 187, 0.2);
}

.service-card img {
width: 100%;
height: 280px;
object-fit: cover;
}

.service-content {
padding: 2rem;
}

.service-content h3 {
font-size: 1.6rem;
margin-bottom: 1rem;
color: var(--clr-text);
}

.service-content p {
color: var(--clr-muted);
margin-bottom: 1.5rem;
line-height: 1.8;
}

.service-includes {
list-style: none;
margin-bottom: 2rem;
}

.service-includes li {
padding: 0.5rem 0;
color: var(--clr-muted);
position: relative;
padding-left: 1.5rem;
}

.service-includes li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--clr-primary);
font-weight: 600;
}

.btn-request {
display: inline-block;
padding: 0.9rem 2.5rem;
background: linear-gradient(135deg, var(--clr-primary) 0%, #D85AA8 100%);
color: white;
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
}

.btn-request:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(224, 109, 187, 0.3);
}

.concept-section {
padding: 6rem 0;
background: var(--clr-surface);
}

.concept-card {
margin-bottom: 6rem;
background: var(--clr-bg);
border-radius: 40px;
padding: 4rem;
box-shadow: 0 15px 60px rgba(224, 109, 187, 0.12);
}

.concept-header {
text-align: center;
margin-bottom: 3rem;
}

.concept-header h3 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.concept-palette {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
}

.concept-palette span {
width: 60px;
height: 60px;
border-radius: 50%;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.concept-elements {
text-align: center;
color: var(--clr-muted);
margin-bottom: 3rem;
font-size: 1.05rem;
}

.concept-preview {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.concept-preview img {
width: 100%;
height: 350px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(224, 109, 187, 0.15);
}

.gallery-section {
padding: 8rem 0;
background: var(--clr-bg);
}

.gallery-filters {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 4rem;
flex-wrap: wrap;
}

.filter-btn {
padding: 0.8rem 2rem;
background: var(--clr-surface);
border: 2px solid var(--clr-primary);
color: var(--clr-primary);
border-radius: 50px;
font-weight: 600;
transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
background: var(--clr-primary);
color: white;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
}

.gallery-item {
position: relative;
border-radius: 20px;
overflow: hidden;
aspect-ratio: 4/3;
cursor: pointer;
box-shadow: 0 10px 40px rgba(224, 109, 187, 0.12);
transition: var(--transition);
}

.gallery-item:hover {
transform: scale(1.05);
box-shadow: 0 20px 60px rgba(224, 109, 187, 0.25);
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
}

.pricing-section {
padding: 8rem 0;
background: linear-gradient(to bottom, var(--clr-bg), var(--clr-surface));
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
margin-top: 4rem;
}

.pricing-card {
background: var(--clr-surface);
border-radius: 30px;
padding: 3rem 2.5rem;
box-shadow: 0 15px 50px rgba(224, 109, 187, 0.12);
transition: var(--transition);
text-align: center;
border: 2px solid transparent;
}

.pricing-card:hover {
transform: translateY(-10px);
border-color: var(--clr-primary);
box-shadow: 0 25px 70px rgba(224, 109, 187, 0.25);
}

.pricing-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
filter: drop-shadow(0 5px 15px rgba(224, 109, 187, 0.3));
}

.pricing-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
}

.pricing-price {
font-size: 3rem;
font-family: var(--font-display);
color: var(--clr-primary);
margin-bottom: 2rem;
}

.pricing-features {
list-style: none;
text-align: left;
margin-bottom: 2.5rem;
}

.pricing-features li {
padding: 0.8rem 0;
color: var(--clr-muted);
position: relative;
padding-left: 2rem;
}

.pricing-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--clr-primary);
font-weight: 700;
font-size: 1.2rem;
}

.contact-section {
padding: 8rem 0;
background: var(--clr-bg);
}

.contact-hero {
text-align: center;
margin-bottom: 4rem;
}

.contact-hero h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
margin-bottom: 1rem;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}

.contact-form {
background: var(--clr-surface);
padding: 3rem;
border-radius: 30px;
box-shadow: 0 15px 50px rgba(224, 109, 187, 0.12);
}

.form-group {
margin-bottom: 1.8rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
color: var(--clr-text);
font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 1rem 1.5rem;
border: 2px solid rgba(224, 109, 187, 0.2);
border-radius: 15px;
font-family: inherit;
font-size: 1rem;
background: var(--clr-bg);
color: var(--clr-text);
transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
outline: none;
border-color: var(--clr-primary);
}

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

.checkbox-group {
display: flex;
gap: 0.8rem;
align-items: start;
}

.checkbox-group input {
width: auto;
margin-top: 0.2rem;
}

.btn-submit {
width: 100%;
padding: 1.2rem;
background: linear-gradient(135deg, var(--clr-primary) 0%, #D85AA8 100%);
color: white;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
cursor: pointer;
border: none;
}

.btn-submit:hover {
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(224, 109, 187, 0.4);
}

.contact-info {
background: linear-gradient(135deg, var(--clr-highlight) 0%, var(--clr-surface) 100%);
padding: 3rem;
border-radius: 30px;
}

.info-item {
margin-bottom: 2.5rem;
}

.info-item h3 {
font-size: 1.3rem;
margin-bottom: 0.8rem;
color: var(--clr-text);
}

.info-item p,
.info-item a {
color: var(--clr-muted);
line-height: 1.8;
}

.info-item a:hover {
color: var(--clr-primary);
}

.thank-you-section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--clr-highlight) 0%, var(--clr-bg) 100%);
text-align: center;
padding: 2rem;
}

.thank-you-content {
max-width: 600px;
text-align: center;
}

.thank-you-icon {
font-size: 5rem;
margin-bottom: 2rem;
filter: drop-shadow(0 10px 30px rgba(224, 109, 187, 0.4));
}

.thank-you-content h1 {
font-size: 3rem;
margin-bottom: 1rem;
}

.thank-you-message {
font-size: 1.2rem;
color: var(--clr-muted);
margin-bottom: 3rem;
line-height: 1.8;
}

.thank-you-content img {
max-width: 100%;
height: auto;
display: block;
margin: 2rem auto;
border-radius: 30px;
box-shadow: 0 20px 60px rgba(224, 109, 187, 0.2);
}

.error-section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: var(--clr-bg);
text-align: center;
padding: 2rem;
position: relative;
overflow: hidden;
}

.error-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}

.error-content {
position: relative;
z-index: 10;
max-width: 600px;
}

.error-code {
font-size: 10rem;
font-family: var(--font-display);
color: var(--clr-primary);
line-height: 1;
margin-bottom: 1rem;
opacity: 0.3;
}

.error-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.error-content p {
font-size: 1.1rem;
color: var(--clr-muted);
margin-bottom: 3rem;
}

@media (max-width: 968px) {
.contact-grid {
grid-template-columns: 1fr;
}
}
