/*
Theme Name: My Theme
Theme URI: https://example.com
Author: the BUSIIN team
Author URI: https://example.com
Description: Premium WordPress Theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: my-theme
*/

:root
{
    --red: #8B0000;
    --gold: #D4AF37;
    --saffron: #FF6B00;
    --navy: #0D1B3E;
    --cream: #f9f4ea
    
}

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

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

:body 
{
    font-family: 'Lato', sans-serif;
    background: #fff;
    overflow-x: hidden
    
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar
{
    width: 6px
    
}

::-webkit-scrollbar-track
{
    background: #0D1B3E
    
}

::-webkit-scrollbar-thumb
{
    background: linear-gradient(#8B0000,#D4AF37);
    border-radius: 3px
    
}

/* ===== NAVBAR ===== */
#navbar
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 4px 32px;
    display:flex;
    align-items: center;
    justify-content:space-between;
    transition:all .5s ease;
    background:linear-gradient(rgba(13,27,62,0.85)0%, transparent 100%)
    
}

#navbar.scrolled
{
    background: rgba(13,27,62,.97);
    backdrop-filter: blur(12px)
    ;padding: 4px 32px;
    box-shadow: 0 4px 30px rgba(0,0,0,.4),0 1px 0 rgba(212,175,55,.2)
    
}

.nav-brand
{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
    
}

.nav-logo-icon
{
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg,#8B0000,#D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 0 20px rgba(212,175,55,.3)
    
}

.nav-brand-text .line1
{
    display: block;
    font-family:'Cinzel',serif;
    font-size:.95rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: .06em;
    line-height: 1.1
    
}

.nav-brand-text .line2
{
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: .6rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .15em;
    text-transform: uppercase
    
}

.nav-links
{
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    padding: 16px 0px 0px 0px
    
}

.nav-links a
{
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    letter-spacing: .08em;
    transition: color .2s;
    position: relative
    
}

.nav-links a::after
{
    content:'';
    position: absolute;
    height: 1px;
    bottom: -4px;
    left: 0;
    width: 0;
    background: #D4AF37;
    transition: width .3s
    
}

.nav-links a:hover
{
    color: #D4AF37
    
}

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

.nav-book-btn
{
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    letter-spacing: .1em;
    color: #fff;
    background: linear-gradient(135deg,#8B0000,#C0392B);
    border: 1px solid rgba(212,175,55,.4);
    padding: 16px 48px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s
    
}

.nav-book-btn:hover
{
    border: 1px solid rgba(212,175,55,.4);
    transform: scale(1.05)
    
}

.hamburger
{
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
    
}

.hamburger span
{
    width: 24px;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
    transition: all .3s
    
}

.mobile-nav
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,27,62,.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px
    
}

.mobile-nav.open
{
    display:flex
    
}

.mobile-nav a
{
    font-family: 'Cinzel', serif;
    font-size: 1.2rem; color: #D4AF37;
    text-decoration: none;
    letter-spacing: .15em
    
}

/* ===== SECTION TITLE ===== */
.sec-label
{
    font-family: 'Cinzel', serif;
    font-size: .9rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block
    
}

.sec-h2
{
    font-family: 'Cinzel', serif;
    font-size: clamp(1.7rem,4vw,2.7rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px
    
}

.sec-divider
{
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg,#8B0000,#D4AF37,#FF6B00);
    margin: 14px auto 0
    
}

.sec-desc
{
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 16px
    
}

.gold-border-line-start
{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,#8B0000,#D4AF37,#FF6B00,#D4AF37,#8B0000)
    
}

.gold-border-line-end
{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,#8B0000,#D4AF37,#FF6B00,#D4AF37,#8B0000)
    
}

/* ===== HERO ===== */
#home {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(13, 27, 62, .92) 0%, rgba(139, 0, 0, .6) 50%, rgba(13, 27, 62, .85) 100%), url('https://images.unsplash.com/photo-1696236929122-1a363698910a?w=1600&q=80') center/cover no-repeat
}

.hero-bar-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #D4AF37, transparent)
}

.hero-circle-r {
	position: absolute;
	top: 80px;
	right: 40px;
	width: 256px;
	height: 256px;
	opacity: 10%;
	border-radius: 50%;
	border: 2px solid rgb(212, 175, 55);
	box-shadow: 0 0 60px rgba(212, 175, 55, .3)
}

.hero-circle-r2 {
	position: absolute;
	top: 112px;
	right: 72px;
	width: 192px;
	height: 192px;
	opacity: 10%;
	border-radius: 50%;
	border: 1px solid rgba(212, 175, 55)
}

.hero-circle-l {
	position: absolute;
	bottom: 128px;
	left: 40px;
	width: 192px;
	height: 192px;
	opacity: 10%;
	border-radius: 50%;
	border: 2px solid rgb(255, 107, 0);
	box-shadow: 0 0 40px rgba(255, 107, 0, .3)
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 0 20px;
	max-width: 900px;
	margin: 0 auto
}

.hero-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
	animation: fadeInDown .9s .2s both
}

.hero-ornament-line {
	height: 1px;
	width: 64px;
	background: linear-gradient(90deg, transparent, #D4AF37)
}

.hero-ornament-line.r {
	background: linear-gradient(90deg, #D4AF37, transparent)
}

.hero-ornament-om {
	color: #D4AF37;
	font-size: 1.4rem
}

.hero-eyebrow {
	font-family: 'Cinzel', serif;
	font-size: .90rem;
	color: #D4AF37;
	letter-spacing: .25em;
	text-transform: uppercase;
	margin-bottom: 12px;
	animation: fadeInDown .9s .3s both
}

.hero-h1 {
	font-family: 'Cinzel', serif;
	font-size: clamp(2.2rem, 7vw, 5rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.1;
	letter-spacing: .04em;
	text-shadow: 0 0 40px rgba(212, 175, 55, .25), 0 2px 10px rgba(0, 0, 0, .5);
	margin-bottom: 8px;
	animation: fadeInDown .9s .4s both
}

.hero-h1 span {
	color: #D4AF37
}

.hero-divider {
	width: 130px;
	height: 4px;
	background: linear-gradient(90deg, #8B0000, #D4AF37, #FF6B00);
	border-radius: 2px;
	margin: 18px auto;
	animation: scaleIn .8s .7s both
}

.hero-h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1rem, 2.8vw, 1.75rem);
	color: #fff;
	font-style: italic;
	font-weight: 400;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
	line-height: 1.5;
	margin-bottom: 12px;
	animation: fadeInUp .8s .6s both
}

.hero-sub {
	color: rgba(255, 255, 255, .78);
	font-family: 'Lato', sans-serif;
	font-size: clamp(.9rem, 2vw, 1.05rem);
	letter-spacing: .03em;
	margin-bottom: 36px;
	animation: fadeInUp .8s .8s both
}

.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-bottom: 56px;
	animation: fadeInUp .8s 1s both
}

.hero-btn-primary {
	font-family: 'Cinzel', serif;
	font-size: .85rem;
	letter-spacing: .1em;
	color: #fff;
	background: linear-gradient(135deg, #8B0000, #C0392B);
	border: 1px solid rgba(212, 175, 55, .4);
	padding: 20px 34px;
	border-radius: 50px;
	cursor: pointer;
	transition: all .3s;
	box-shadow: 0 0 30px rgba(139, 0, 0, .5), 0 4px 16px rgba(0, 0, 0, .3)
}

.hero-btn-secondary {
	font-family: 'Cinzel', serif;
	font-size: .85rem;
	letter-spacing: .1em;
	color: #D4AF37;
	background: transparent;
	border: 2px solid rgba(212, 175, 55);
	padding: 20px 34px;
	border-radius: 50px;
	cursor: pointer;
	transition: all .3s
}

.hero-btn-primary:hover {
	border: 1px solid rgba(212, 175, 55, .4);
	transform: scale(1.06)
}

.hero-btn-secondary:hover {
	border: 2px solid rgba(212, 175, 55);
	font-family: 'Cinzel', serif;
	font-size: .85rem;
	letter-spacing: .1em;
	color: #D4AF37;
	background: transparent;
	transform: scale(1.06)
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 36px;
	animation: fadeInUp .8s 1.2s both
}

.hero-stat .val {
	font-family: 'Cinzel', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #D4AF37;
	display: block
}

.hero-stat .lbl {
	font-family: 'Lato', sans-serif;
	font-size: .75rem;
	color: rgba(255, 255, 255, .65);
	letter-spacing: .1em;
	text-transform: uppercase
}

.scroll-ind {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	animation: bounce 2s infinite
}

.scroll-ind svg {
	color: #D4AF37;
	width: 28px;
	height: 28px
}

/* ===== ABOUT ===== */
#about {
	padding: 100px 20px;
	background: linear-gradient(135deg, #0D1B3E 0%, #1a0a0a 50%, #0D1B3E 100%);
	position: relative;
	overflow: hidden
}

.about-pattern {
	position: absolute;
	inset: 0;
	opacity: .04;
	background-image: repeating-linear-gradient(45deg, #D4AF37 0px, #D4AF37 1px, transparent 1px, transparent 40px)
}

.about-inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2
}

.about-header {
	text-align: center;
	margin-bottom: 64px
}

.about-header .sec-label {
	color: #D4AF37
}

.about-header .sec-h2 {
	color: #fff
}

.about-header .sec-h2 span {
	color: #D4AF37
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center
}

.about-img-wrap {
	position: relative
}

.about-glow {
	position: absolute;
	inset: -12px;
	border-radius: 16px;
	background: linear-gradient(135deg, #D4AF37, #FF6B00);
	opacity: .25;
	filter: blur(20px)
}

.about-img-inner {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	border: 2px solid rgba(212, 175, 55, .25)
}

.about-img-inner img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	overlay: linear-gradient(rgba(13, 27, 62, 0.8)100%, transparent 60%)display:block
}

.about-badge {
	position: absolute;
	bottom: -24px;
	right: -16px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: linear-gradient(135deg, #8B0000, #C0392B);
	border: 3px solid #D4AF37;
	box-shadow: 0 0 30px rgba(212, 175, 55, .4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center
}

.about-badge .num {
	font-family: 'Cinzel', serif;
	font-size: 1.6rem;
	font-weight: 900;
	color: #D4AF37;
	line-height: 1
}

.about-badge .txt {
	font-family: 'Lato', sans-serif;
	font-size: .6rem;
	color: #fff;
	letter-spacing: .04em;
	margin-top: 2px
}

.about-content .tagline {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-style: italic;
	color: #FF8533;
	margin-bottom: 18px
}

.about-content p {
	font-family: 'Lato', sans-serif;
	font-size: .97rem;
	line-height: 1.85;
	color: rgba(255, 255, 255, .82);
	margin-bottom: 16px
}

.about-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 24px 0 32px
}

.about-highlight {
	display: flex;
	align-items: flex-start;
	gap: 8px
}

.about-highlight .chk {
	color: #D4AF37;
	margin-top: 3px;
	flex-shrink: 0;
	font-size: .9rem
}

.about-highlight span {
	font-family: 'Lato', sans-serif;
	font-size: .88rem;
	color: rgba(255, 255, 255, .78)
}

.about-cta {
	font-family: 'Cinzel', serif;
	font-size: .82rem;
	letter-spacing: .1em;
	color: #0D1B3E;
	background: linear-gradient(135deg, #D4AF37, #FF8533);
	border: none;
	padding: 16px 32px;
	border-radius: 50px;
	cursor: pointer;
	transition: all .3s;
	box-shadow: 0 0 20px rgba(212, 175, 55, .3)
}

.about-cta:hover {
	transform: scale(1.05);
	color: #0D1B3E
}

/* ===== SERVICES ===== */
#services {
	padding: 100px 20px;
	background: var(--cream);
	position: relative;
	overflow: hidden
}

.services-dots {
	position: absolute;
	inset: 0;
	opacity: .03;
	background-image: radial-gradient(circle, #8B0000 1px, transparent 1px);
	background-size: 30px 30px
}

.services-inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2
}

.services-header {
	text-align: center;
	margin-bottom: 60px
}

.services-header .sec-label {
	color: #8B0000
}

.services-header .sec-h2 {
	color: #0D1B3E
}

.services-header .sec-h2 span {
	color: #8B0000
}

.services-header .sec-desc {
	color: #555;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px
}

.svc-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 24px;
	border: 1px solid #d4af3726; 
	box-shadow: 0 4px 20px #0000000f;
	transition: all .35s;
	cursor: pointer;
	position: relative;
	overflow: hidden
}

.svc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--c), #D4AF37);
	transform: scaleX(0);
	transition: transform .3s
}

.svc-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px #8b000026, 0 0 0 1px #d4af374d
}

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

.svc-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	font-size: 1.3rem
}

.svc-card h3 {
	font-family: 'Cinzel', serif;
	font-size: .88rem;
	font-weight: 700;
	color: #0D1B3E;
	line-height: 1.35;
	margin-bottom: 8px
}

.svc-card p {
	font-family: 'Lato', sans-serif;
	font-size: .84rem;
	color: #666;
	line-height: 1.72;
	margin-bottom: 14px
}

.svc-quote-btn {
	font-family: 'Cinzel', serif;
	font-size: .72rem;
	letter-spacing: .06em;
	padding: 7px 18px;
	border-radius: 50px;
	cursor: pointer;
	transition: all .2s;
	border: 1px solid
}

.svc-quote-btn:hover {
	transform: scale(1.04)
}

/* ===== GALLERY ===== */
#gallery {
	padding: 100px 20px;
	background: linear-gradient(135deg, #0D1B3E 0%, #1a0a0a 50%, #0D1B3E 100%)
}

.gallery-inner {
	max-width: 1200px;
	margin: 0 auto
}

.gallery-header {
	text-align: center;
	margin-bottom: 56px
}

.gallery-header .sec-label {
	color: #D4AF37
}

.gallery-header .sec-h2 {
	color: #fff
}

.gallery-header .sec-h2 span {
	color: #D4AF37
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px
}

.gal-item {
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	aspect-ratio: 4/3;
	border: 1px solid rgba(212, 175, 55, .12)
}

.gal-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s
}

.gal-item::after {
	content: attr(data-label);
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 62, .92) 100%);
	display: flex;
	align-items: flex-end;
	padding: 16px;
	font-family: 'Cinzel', serif;
	font-size: .82rem;
	color: #D4AF37;
	letter-spacing: .1em;
	opacity: 0;
	transition: opacity .35s;
	display: flex;
	align-items: flex-end
}

.gal-item:hover img {
	transform: scale(1.08)
}

.gal-item:hover::after {
	opacity: 1
}

.gal-item.wide {
	grid-column: span 2
}

.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .95);
	z-index: 2000;
	align-items: center;
	justify-content: center
}

.lightbox.open {
	display: flex
}

.lightbox img {
	max-width: 90vw;
	max-height: 85vh;
	border-radius: 8px;
	border: 2px solid rgba(212, 175, 55, .3)
}

.lightbox-close {
	position: absolute;
	top: 24px;
	right: 32px;
	background: none;
	border: none;
	color: #D4AF37;
	font-size: 2rem;
	cursor: pointer;
	line-height: 1
}

/* ===== TESTIMONIALS ===== */
#testimonials {
	padding: 100px 20px;
	background: var(--cream);
	position: relative
}

.testi-inner {
	max-width: 1000px;
	margin: 0 auto
}

.testi-header {
	text-align: center;
	margin-bottom: 56px
}

.testi-header .sec-label {
	color: #8B0000
}

.testi-header .sec-h2 {
	color: #0D1B3E
}

.testi-header .sec-h2 span {
	color: #8B0000
}

.testi-wrap {
	position: relative;
	overflow: hidden
}

.testi-track {
	display: flex;
	transition: transform .5s cubic-bezier(.25, .46, .45, .94)
}

.testi-card {
	flex: 0 0 100%;
	background: linear-gradient(135deg, rgb(13, 27, 62), rgb(26, 10, 26));
	border-radius: 20px;
	padding: 40px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 60px)
}

.testi-quote-icon {
	color: rgba(212, 175, 55, .25);
	font-size: 3rem;
	;
	font-family: 'Playfair Display', serif;
	line-height: .7;
	margin-bottom: 16px
}

.stars {
	color: #D4AF37;
	font-size: 1rem;
	letter-spacing: 2px;
	margin-bottom: 16px
}

.testi-text {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	font-style: italic;
	margin-bottom: 24px
}

.testi-author {
	display: flex;
	align-items: center;
	gap: 16px
}

.testi-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50px;
	border: 2px solid;
	background: linear-gradient(135deg, rgb(139, 0, 0), rgb(192, 57, 43));
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cinzel', serif;
	font-size: .9rem;
	font-weight: 700;
	color: rgb(212, 175, 55);
	flex-shrink: 0
}

.testi-name {
	font-family: 'Cinzel', serif;
	font-size: .95rem;
	font-weight: 600;
	color: rgb(212, 175, 55)
}

.testi-meta {
	font-family: 'Lato', sans-serif;
	font-size: .85rem;
	color: rgba(255, 255, 255, 0.6)
}

.testi-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 28px
}

.testi-btn {
	width: 40px;
	height: 40px;
	padding: 0px 0px 0px 0px;
	border-radius: 50px;
	background: white;
	border: 2px solid rgba(139, 0, 0, 0.3);
	box-shadow: rgba(0, 0, 0, 0.1)0px 2px 2px;
	cursor: pointer;
	color: #fff;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s
}

.testi-btn:hover {
	background: white;
	border: 2px solid rgba(139, 0, 0, 0.3);
	box-shadow: rgba(0, 0, 0, 0.1)0px 2px 2px;
	transform: scale(1.1)
}

.testi-dots {
	display: flex;
	gap: 8px
}

.testi-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(139, 0, 0, .2);
	cursor: pointer;
	transition: all .3s
}

.testi-dot.active {
	background: #8B0000;
	width: 24px;
	border-radius: 4px
}

/* ===== PACKAGES ===== */
#packages {
	padding: 100px 20px;
	background: linear-gradient(135deg, #0D1B3E 0%, #1a0a0a 50%, #0D1B3E 100%);
	position: relative;
	overflow: hidden
}

.pkg-pattern {
	position: absolute;
	inset: 0;
	opacity: .04;
	background-image: repeating-linear-gradient(45deg, #D4AF37 0px, #D4AF37 1px, transparent 1px, transparent 40px)
}

.pkg-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 2
}

.pkg-header {
	text-align: center;
	margin-bottom: 60px
}

.pkg-header .sec-label {
	color: #D4AF37
}

.pkg-header .sec-h2 {
	color: #fff
}

.pkg-header .sec-h2 span {
	color: #D4AF37
}

.pkg-header .sec-desc {
	color: rgba(255, 255, 255, .5);
	max-width: 520px;
	margin: 12px auto 0
}

.pkg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px
}

.pkg-card {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	backdrop-filter: blur(5px);
	transition: transform .3s
}

.pkg-card:hover {
	transform: translateY(-8px)
}

.pkg-card-inner {
	padding: 28px
}

.pkg-popular-bar {
	background: linear-gradient(90deg, #8B0000, #D4AF37, #8B0000);
	padding: 8px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px
}

.pkg-popular-bar span {
	font-family: 'Cinzel', serif;
	font-size: .68rem;
	letter-spacing: .18em;
	color: #fff
}

.pkg-badge {
	display: inline-block;
	padding: 4px 14px;
	border-radius: 50px;
	margin-bottom: 8px
}

.pkg-badge span {
	font-family: 'Cinzel', serif;
	font-size: .7rem;
	letter-spacing: .15em;
	text-transform: uppercase
}

.pkg-subtitle {
	font-family: 'Lato', sans-serif;
	font-size: .83rem;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 18px
}

.pkg-price {
	font-family: 'Cinzel', serif;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 4px
}

.pkg-price-note {
	font-family: 'Lato', sans-serif;
	font-size: .82rem;
	color: rgba(255, 255, 255, .38)
}

.pkg-divider {
	height: 1px;
	margin: 18px 0
}

.pkg-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 28px
}

.pkg-feature {
	display: flex;
	align-items: flex-start;
	gap: 10px
}

.pkg-chk {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: .65rem
}

.pkg-feat-text {
	font-family: 'Lato', sans-serif;
	font-size: .86rem;
	color: rgba(255, 255, 255, .8);
	line-height: 1.45
}

.pkg-btn {
	width: 100%;
	padding: 13px;
	border-radius: 50px;
	font-family: 'Cinzel', serif;
	font-size: .83rem;
	letter-spacing: .09em;
	cursor: pointer;
	transition: all .3s;
	border: none
}

.pkg-btn:hover {
	transform: scale(1.04)
}

.pkg-note {
	text-align: center;
	margin-top: 28px;
	font-family: 'Lato', sans-serif;
	font-size: .82rem;
	color: rgba(255, 255, 255, .35);
	line-height: 1.7
}

/* ===== SERVICE AREAS ===== */
#areas {
	padding: 100px 20px;
	background: var(--cream);
	position: relative
}

.areas-inner {
	max-width: 1200px;
	margin: 0 auto
}

.areas-header {
	text-align: center;
	margin-bottom: 56px
}

.areas-header .sec-label {
	color: #8B0000
}

.areas-header .sec-h2 {
	color: #0D1B3E
}

.areas-header .sec-h2 span {
	color: #8B0000
}

.areas-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px
}

.area-card {
	background: #fff;
	border-radius: 16px;
	padding: 10px 10px 10px 10px;
	border: 1px solid rgba(212, 175, 55, .15);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
	display: flex;
	width: auto;
	align-items: center;
	gap: 10px;
	transition: all .3s
}

.area-card:hover {
	border-color: #D4AF37;
	box-shadow: 0 4px 24px rgba(139, 0, 0, .12);
	transform: translateY(-3px)
}

.area-pin {
	color: #8B0000;
	font-size: 1rem;
	flex-shrink: 0;
	padding: 0px 0px 24px 0px
}

.area-city {
	font-family: 'Cinzel', serif;
	font-size: .88rem;
	color: #0D1B3E;
	font-weight: 700
}

.area-dist {
	font-family: 'Lato', sans-serif;
	font-size: .74rem;
	color: #888
}

.condition-card {
	background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(212, 175, 55, 0.08));
	border: 1px solid rgba(139, 0, 0, 0.15);
	opacity: 1;
	transform: none;
	border-radius: 16px;
	font-family: Lato, sans-serif;
	color: rgb(139, 0, 0);
	font-size: 0.9rem;
	line-height: 1.7;
	padding: 20px;
	width: responsive
}

.map-wrap {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 24px;
	border: 2px solid rgba(212, 175, 55, .25);
	box-shadow: 0 8px 40px rgba(0, 0, 0, .1)
}

.map-wrap iframe {
	width: 100%;
	height: 400px;
	display: block;
	border: none
}

/* ===== CONTACT ===== */
#contact {
	padding: 100px 20px;
	background: linear-gradient(135deg, #0D1B3E 0%, #1a0a0a 50%, #0D1B3E 100%);
	position: relative;
	overflow: hidden
}

.contact-pattern {
	position: absolute;
	inset: 0;
	opacity: .04;
	background-image: repeating-linear-gradient(45deg, #D4AF37 0px, #D4AF37 1px, transparent 1px, transparent 40px)
}

.contact-inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 2
}

.contact-header {
	text-align: center;
	margin-bottom: 56px
}

.contact-header .sec-label {
	color: #D4AF37
}

.contact-header .sec-h2 {
	color: #fff
}

.contact-header .sec-h2 span {
	color: #D4AF37
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 48px;
	align-items: start
}

.contact-info h3 {
	font-family: 'Cinzel', serif;
	font-size: 1.1rem;
	color: #D4AF37;
	margin-bottom: 24px
}

.contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 22px
}

.contact-detail-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(212, 175, 55, .1);
	border: 1px solid rgba(212, 175, 55, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0
}

.contact-detail-text .lbl {
	font-family: 'Cinzel', serif;
	font-size: .72rem;
	letter-spacing: .15em;
	color: #D4AF37;
	text-transform: uppercase;
	margin-bottom: 4px
}

.contact-detail-text .val {
	font-family: 'Lato', sans-serif;
	font-size: .92rem;
	color: rgba(255, 255, 255, .82)
}

.contact-wa-big {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 22px;
	background: linear-gradient(135deg, #25D366, #128C7E);
	border-radius: 50px;
	text-decoration: none;
	margin-top: 28px;
	font-family: 'Cinzel', serif;
	font-size: .82rem;
	letter-spacing: .1em;
	color: #fff;
	transition: all .3s;
	box-shadow: 0 0 20px rgba(37, 211, 102, .25)
}

.contact-wa-big:hover {
	transform: scale(1.05)
}

.contact-form {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(212, 175, 55, .12);
	border-radius: 20px;
	padding: 36px
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.form-group {
	margin-bottom: 18px
}

.form-group label {
	display: block;
	font-family: 'Lato', sans-serif;
	font-size: .8rem;
	color: rgba(255, 255, 255, .6);
	margin-bottom: 7px;
	letter-spacing: .05em
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 10px;
	padding: 11px 14px;
	font-family: 'Lato', sans-serif;
	font-size: .9rem;
	color: #fff;
	outline: none;
	transition: all .3s;
	-webkit-appearance: none
}

.form-group select option {
	background: #1a0a0a;
	color: #fff
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: rgba(212, 175, 55, .5);
	background: rgba(255, 255, 255, .08);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, .1)
}

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

.form-submit {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, #8B0000, #C0392B);
	border: 1px solid rgba(212, 175, 55, .4);
	border-radius: 50px;
	font-family: 'Cinzel', serif;
	font-size: .88rem;
	letter-spacing: .12em;
	color: #fff;
	cursor: pointer;
	transition: all .3s;
	box-shadow: 0 0 20px rgba(139, 0, 0, .3)
}

.form-submit:hover {
	transform: scale(1.03);
	box-shadow: 0 0 30px rgba(212, 175, 55, .3)
}

.form-success {
	display: none;
	text-align: center;
	padding: 20px;
	font-family: 'Cinzel', serif;
	color: #D4AF37;
	font-size: .9rem;
	letter-spacing: .1em
}

/* ===== FAQ ===== */
#faq {
	padding: 100px 20px;
	background: var(--cream);
	position: relative
}

.faq-inner {
	max-width: 860px;
	margin: 0 auto
}

.faq-header {
	text-align: center;
	margin-bottom: 56px
}

.faq-header .sec-label {
	color: #8B0000
}

.faq-header .sec-h2 {
	color: #0D1B3E
}

.faq-header .sec-h2 span {
	color: #8B0000
}

.faq-item {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 10px;
	border: 1px solid rgba(0, 0, 0, .08);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
	transition: all .3s
}

.faq-item.open {
	border-color: rgba(139, 0, 0, .3);
	box-shadow: 0 4px 24px rgba(139, 0, 0, .1)
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	gap: 16px
}

.faq-question span {
	font-family: 'Lato', sans-serif;
	font-size: .93rem;
	font-weight: 600;
	color: #0D1B3E;
	line-height: 1.45
}

.faq-item.open .faq-question span {
	color: #8B0000
}

.faq-chev {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(139, 0, 0, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all .35s;
	color: #8B0000;
	font-size: .75rem
}

.faq-item.open .faq-chev {
	background: linear-gradient(135deg, #8B0000, #C0392B);
	color: #fff;
	transform: rotate(180deg)
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease, opacity .3s;
	opacity: 0
}

.faq-item.open .faq-answer {
	max-height: 400px;
	opacity: 1
}

.faq-answer p {
	font-family: 'Lato', sans-serif;
	font-size: .9rem;
	color: #555;
	line-height: 1.85;
	padding: 0 24px 20px;
	border-top: 1px solid rgba(139, 0, 0, .07)
}

/* ===== FOOTER ===== */
#footer {
	background: #070d1f;
	padding: 64px 20px 28px;
	position: relative
}

.footer-top-border {
	height: 3px;
	background: linear-gradient(90deg, #8B0000, #D4AF37, #FF6B00, #D4AF37, #8B0000);
	margin-bottom: 56px
}

.footer-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
	gap: 48px;
	margin-bottom: 48px
}

.footer-brand .logo-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px
}

.footer-brand .logo-icon {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #8B0000, #D4AF37);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem
}

.footer-brand .brand-name {
	font-family: 'Cinzel', serif;
	font-size: 1rem;
	font-weight: 700;
	color: #D4AF37;
	letter-spacing: .05em;
	display: block;
	line-height: 1.2
}

.footer-brand .tagline {
	font-family: 'Playfair Display', serif;
	font-size: .9rem;
	font-style: italic;
	color: rgba(255, 255, 255, .5);
	margin-bottom: 20px
}

.footer-brand .about-short {
	font-family: 'Lato', sans-serif;
	font-size: .85rem;
	color: rgba(255, 255, 255, .45);
	line-height: 1.8
}

.footer-col h4 {
	font-family: 'Cinzel', serif;
	font-size: .82rem;
	letter-spacing: .15em;
	color: #D4AF37;
	text-transform: uppercase;
	margin-bottom: 18px
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px
}

.footer-col ul li a {
	font-family: 'Lato', sans-serif;
	font-size: .85rem;
	color: rgba(255, 255, 255, .5);
	text-decoration: none;
	transition: color .2s
}

.footer-col ul li a:hover {
	color: #D4AF37
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px
}

.footer-contact-item .icon {
	color: #D4AF37;
	font-size: .95rem;
	margin-top: 2px
}

.footer-contact-item span {
	font-family: 'Lato', sans-serif;
	font-size: .84rem;
	color: rgba(255, 255, 255, .55);
	line-height: 1.55
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 16px
}

.social-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	text-decoration: none;
	transition: all .3s
}

.social-btn:hover {
	transform: scale(1.12)
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, .07);
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: gap-12px
}

.footer-copy {
	font-family: 'Lato', sans-serif;
	font-size: .8rem;
	color: rgba(255, 255, 255, .3)
}

.footer-devotion {
	font-family: 'Playfair Display', serif;
	font-size: .82rem;
	font-style: italic;
	color: rgba(212, 175, 55, .5)
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 900;
	width: 58px;
	height: 58px;
	background: linear-gradient(135deg, #25D366, #128C7E);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 0 30px rgba(37, 211, 102, .4);
	animation: waPulse 2.5s infinite;
	font-size: 1.5rem
}

.wa-float:hover {
	transform: scale(1.1)
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-28px)
	}

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

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

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

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scaleX(0)
	}

	to {
		opacity: 1;
		transform: scaleX(1)
	}
}

@keyframes bounce {

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

	50% {
		transform: translateX(-50%) translateY(12px)
	}
}

@keyframes waPulse {

	0%,
	100% {
		box-shadow: 0 0 30px rgba(37, 211, 102, .4)
	}

	50% {
		box-shadow: 0 0 50px rgba(37, 211, 102, .65)
	}
}

.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.areas-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media(max-width:768px) {

	.nav-links,
	.nav-book-btn {
		display: none
	}

	.hamburger {
		display: flex
	}

	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr
	}

	.pkg-grid {
		grid-template-columns: 1fr
	}

	.footer-grid {
		grid-template-columns: 1fr
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr
	}

	.gal-item.wide {
		grid-column: span 1
	}

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

	.form-row {
		grid-template-columns: 1fr
	}

	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center
	}
}

@media(max-width:480px) {
	.services-grid {
		grid-template-columns: 1fr
	}

	.areas-grid {
		grid-template-columns: 1fr
	}

	.gallery-grid {
		grid-template-columns: 1fr
	}
}