/* ============================================
   CITIZEN TRAVEL PRO - Main Stylesheet
   Modern Professional Travel Agency Theme
   ============================================ */

/* ===== CSS Variables ===== */
:root {
	/* Colors */
	--ct-navy: #0a2540;
	--ct-navy-light: #1a365d;
	--ct-navy-dark: #051a30;
	--ct-teal: #0d9488;
	--ct-teal-light: #14b8a6;
	--ct-teal-dark: #0f766e;
	--ct-gold: #f59e0b;
	--ct-gold-light: #fbbf24;
	--ct-gold-dark: #d97706;
	--ct-coral: #f87171;
	--ct-white: #ffffff;
	--ct-off-white: #f8fafc;
	--ct-gray-50: #f9fafb;
	--ct-gray-100: #f3f4f6;
	--ct-gray-200: #e5e7eb;
	--ct-gray-300: #d1d5db;
	--ct-gray-400: #9ca3af;
	--ct-gray-500: #6b7280;
	--ct-gray-600: #4b5563;
	--ct-gray-700: #374151;
	--ct-gray-800: #1f2937;
	--ct-gray-900: #111827;

	/* Gradients */
	--ct-gradient-hero: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(13, 148, 136, 0.7) 100%);
	--ct-gradient-teal: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
	--ct-gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	--ct-gradient-cta: linear-gradient(135deg, #0a2540 0%, #1a365d 50%, #0d9488 100%);

	/* Typography */
	--ct-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ct-font-head: 'Playfair Display', Georgia, serif;

	/* Spacing */
	--ct-section-pad: 80px;
	--ct-container-max: 1200px;

	/* Transitions */
	--ct-trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--ct-trans-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

	/* Shadows */
	--ct-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--ct-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--ct-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--ct-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--ct-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ===== Astra Overrides ===== */
/* Remove Astra's default header/footer padding and margins */
.ast-container,
.ast-page-builder-template .site-content,
.site-content {
	margin: 0;
	padding: 0;
	max-width: 100%;
}

/* Reset Astra body styles */
body.ast-page-builder-template.ast-advanced-header-no-meta-title,
body[class*="ast-"] {
	margin: 0;
}

/* Hide Astra builder output if any leaks through */
.ast-header-break-point .main-header-bar,
.ast-desktop .main-header-menu,
.site-footer .ast-builder-grid-row,
.ast-footer-copyright,
.ast-main-header-wrap {
	display: none !important;
}

/* Ensure our container takes precedence */
.ast-container {
	max-width: 100%;
	width: 100%;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--ct-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--ct-gray-700);
	background: var(--ct-white);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ct-font-head);
	font-weight: 700;
	line-height: 1.2;
	color: var(--ct-navy);
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--ct-teal);
	text-decoration: none;
	transition: color var(--ct-trans);
}

a:hover {
	color: var(--ct-teal-dark);
}

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

ul, ol {
	padding-left: 1.5em;
}

/* ===== Container ===== */
.ct-container {
	max-width: var(--ct-container-max);
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== Buttons ===== */
.ct-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ct-font-body);
	font-size: 15px;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 50px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--ct-trans);
	text-decoration: none;
	letter-spacing: 0.025em;
	white-space: nowrap;
}

.ct-btn-sm {
	padding: 9px 22px;
	font-size: 14px;
}

.ct-btn-lg {
	padding: 16px 36px;
	font-size: 16px;
}

.ct-btn-primary {
	background: var(--ct-gradient-teal);
	color: var(--ct-white);
	border-color: var(--ct-teal);
	box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
}

.ct-btn-primary:hover {
	color: var(--ct-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5);
}

.ct-btn-outline {
	background: transparent;
	color: var(--ct-navy);
	border-color: var(--ct-navy);
}

.ct-btn-outline:hover {
	background: var(--ct-navy);
	color: var(--ct-white);
	transform: translateY(-2px);
}

.ct-btn-light {
	background: var(--ct-white);
	color: var(--ct-navy);
	border-color: var(--ct-white);
}

.ct-btn-light:hover {
	background: var(--ct-gray-100);
	transform: translateY(-2px);
}

.ct-btn-outline-light {
	background: transparent;
	color: var(--ct-white);
	border-color: rgba(255, 255, 255, 0.5);
}

.ct-btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--ct-white);
	color: var(--ct-white);
}

/* ===== Top Bar ===== */
.ct-top-bar {
	background: var(--ct-navy-dark);
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	padding: 8px 0;
}

.ct-top-bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.ct-top-bar-contact {
	display: flex;
	gap: 28px;
	align-items: center;
}

.ct-top-link {
	color: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	gap: 7px;
	transition: color var(--ct-trans);
}

.ct-top-link:hover {
	color: var(--ct-gold-light);
}

.ct-top-link i {
	font-size: 12px;
	color: var(--ct-teal-light);
}

.ct-top-bar-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ct-top-tagline {
	letter-spacing: 0.05em;
}

.ct-top-separator {
	color: rgba(255, 255, 255, 0.3);
}

/* ===== Header ===== */
.ct-site-header {
	background: var(--ct-white);
	box-shadow: var(--ct-shadow-sm);
	position: sticky;
	top: 0;
	z-index: 999;
	transition: all var(--ct-trans);
}

.ct-site-header.scrolled {
	box-shadow: var(--ct-shadow-md);
}

.ct-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 14px 0;
	transition: padding var(--ct-trans);
}

.ct-site-header.scrolled .ct-header-inner {
	padding: 10px 0;
}

/* Logo */
.ct-site-logo {
	flex-shrink: 0;
}

.ct-site-logo .custom-logo-link img {
	max-height: 52px;
	width: auto;
	transition: max-height var(--ct-trans);
}

.ct-site-header.scrolled .custom-logo-link img {
	max-height: 44px;
}

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

.ct-logo-icon {
	font-size: 28px;
	color: var(--ct-teal);
}

.ct-logo-name {
	font-family: var(--ct-font-head);
	font-size: 24px;
	font-weight: 700;
	color: var(--ct-navy);
}

/* Navigation */
.ct-main-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.ct-nav-list {
	display: flex;
	list-style: none;
	gap: 4px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.ct-nav-list > li > a {
	display: block;
	padding: 10px 18px;
	font-size: 15px;
	font-weight: 500;
	color: var(--ct-gray-700);
	border-radius: 8px;
	transition: all var(--ct-trans);
	position: relative;
}

.ct-nav-list > li > a:hover,
.ct-nav-list > li.current_page_item > a,
.ct-nav-list > li.current-menu-item > a {
	color: var(--ct-teal);
	background: rgba(13, 148, 136, 0.08);
}

.ct-nav-list > li > a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--ct-teal);
	border-radius: 2px;
	transition: all var(--ct-trans);
	transform: translateX(-50%);
}

.ct-nav-list > li > a:hover::after,
.ct-nav-list > li.current_page_item > a::after,
.ct-nav-list > li.current-menu-item > a::after {
	width: 24px;
}

/* Sub-menu */
.ct-nav-list .sub-menu,
.ct-nav-list .children {
	position: absolute;
	background: var(--ct-white);
	border-radius: 12px;
	box-shadow: var(--ct-shadow-lg);
	padding: 8px;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--ct-trans);
	list-style: none;
	margin: 0;
}

.ct-nav-list li:hover > .sub-menu,
.ct-nav-list li:hover > .children {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ct-nav-list .sub-menu a,
.ct-nav-list .children a {
	display: block;
	padding: 8px 14px;
	font-size: 14px;
	color: var(--ct-gray-700);
	border-radius: 8px;
	transition: all var(--ct-trans);
}

.ct-nav-list .sub-menu a:hover,
.ct-nav-list .children a:hover {
	background: var(--ct-gray-100);
	color: var(--ct-teal);
}

/* Header CTA */
.ct-header-cta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.ct-nav-cta-mobile {
	display: none;
}

.ct-desktop-only {
	display: inline-flex;
}

/* Mobile Toggle */
.ct-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.ct-nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--ct-navy);
	border-radius: 3px;
	transition: all var(--ct-trans);
}

.ct-nav-toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

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

.ct-nav-toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Nav Overlay */
.ct-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 37, 64, 0.6);
	backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: all var(--ct-trans);
	z-index: 998;
}

.ct-nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ===== Hero Section ===== */
.ct-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: 80px;
}

.ct-hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('https://images.unsplash.com/photo-1537956965359-733e90178016?w=1920&q=80');
	background-size: cover;
	background-position: center;
	animation: ct-hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes ct-hero-zoom {
	from { transform: scale(1); }
	to { transform: scale(1.1); }
}

.ct-hero-overlay {
	position: absolute;
	inset: 0;
	background: var(--ct-gradient-hero);
	z-index: 1;
}

.ct-hero-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
	padding: 60px 0;
}

.ct-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--ct-white);
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
}

.ct-hero-badge i {
	color: var(--ct-gold-light);
}

.ct-hero-title {
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	color: var(--ct-white);
	line-height: 1.05;
	margin-bottom: 24px;
	font-weight: 800;
}

.ct-hero-title-accent {
	display: block;
	font-style: italic;
	color: var(--ct-gold-light);
	font-size: 0.7em;
}

.ct-hero-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin-bottom: 36px;
	line-height: 1.6;
}

.ct-hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}

.ct-hero-stats {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.ct-hero-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ct-hero-stat-number {
	font-family: var(--ct-font-head);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--ct-white);
	line-height: 1;
}

.ct-hero-stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 4px;
}

.ct-hero-stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
}

.ct-hero-scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 2;
	animation: ct-scroll-bounce 2s ease-in-out infinite;
}

@keyframes ct-scroll-bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Section Layout ===== */
.ct-section {
	padding: var(--ct-section-pad) 0;
}

.ct-section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}

.ct-section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ct-teal);
	margin-bottom: 12px;
	padding: 4px 16px;
	background: rgba(13, 148, 136, 0.1);
	border-radius: 50px;
}

.ct-section-title {
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	margin-bottom: 16px;
}

.ct-section-desc {
	font-size: 1.05rem;
	color: var(--ct-gray-500);
}

/* ===== Services Section ===== */
.ct-services-section {
	background: var(--ct-off-white);
}

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

.ct-service-card {
	background: var(--ct-white);
	border-radius: 16px;
	padding: 36px 32px;
	box-shadow: var(--ct-shadow);
	transition: all var(--ct-trans);
	border: 1px solid var(--ct-gray-100);
	position: relative;
	overflow: hidden;
}

.ct-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--ct-gradient-teal);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--ct-trans-slow);
}

.ct-service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--ct-shadow-xl);
}

.ct-service-card:hover::before {
	transform: scaleX(1);
}

.ct-service-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--ct-gradient-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--ct-white);
	margin-bottom: 24px;
	transition: all var(--ct-trans);
}

.ct-service-card:hover .ct-service-icon {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.ct-service-title {
	font-size: 1.35rem;
	margin-bottom: 12px;
	color: var(--ct-navy);
}

.ct-service-desc {
	color: var(--ct-gray-500);
	font-size: 0.95rem;
	margin-bottom: 20px;
	line-height: 1.65;
}

.ct-service-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ct-teal);
	transition: gap var(--ct-trans);
}

.ct-service-link:hover {
	gap: 12px;
	color: var(--ct-teal-dark);
}

/* ===== Destinations Section ===== */
.ct-destinations-section {
	background: var(--ct-white);
}

.ct-destinations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ct-destination-card {
	position: relative;
	height: 320px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--ct-shadow-md);
	transition: all var(--ct-trans-slow);
}

.ct-destination-card:hover {
	box-shadow: var(--ct-shadow-xl);
	transform: translateY(-6px);
}

.ct-destination-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform var(--ct-trans-slow);
}

.ct-destination-card:hover .ct-destination-image {
	transform: scale(1.1);
}

.ct-destination-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 37, 64, 0.85) 0%, transparent 60%);
}

.ct-destination-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	color: var(--ct-white);
}

.ct-destination-name {
	font-size: 1.5rem;
	color: var(--ct-white);
	margin-bottom: 4px;
}

.ct-destination-cta {
	font-size: 14px;
	color: var(--ct-gold-light);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	opacity: 0;
	transform: translateY(10px);
	transition: all var(--ct-trans);
}

.ct-destination-card:hover .ct-destination-cta {
	opacity: 1;
	transform: translateY(0);
}

/* ===== Why Choose Us Section ===== */
.ct-why-section {
	background: var(--ct-off-white);
}

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

.ct-why-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin: 36px 0;
}

.ct-why-feature {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.ct-why-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(13, 148, 136, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--ct-teal);
	flex-shrink: 0;
	transition: all var(--ct-trans);
}

.ct-why-feature:hover .ct-why-feature-icon {
	background: var(--ct-gradient-teal);
	color: var(--ct-white);
}

.ct-why-feature h4 {
	font-size: 1rem;
	margin-bottom: 4px;
	color: var(--ct-navy);
	font-family: var(--ct-font-body);
	font-weight: 600;
}

.ct-why-feature p {
	font-size: 0.875rem;
	color: var(--ct-gray-500);
	margin: 0;
}

.ct-why-image {
	position: relative;
}

.ct-why-image-main {
	width: 100%;
	height: 500px;
	border-radius: 24px;
	background-size: cover;
	background-position: center;
	box-shadow: var(--ct-shadow-xl);
}

.ct-why-image-badge {
	position: absolute;
	bottom: -24px;
	left: -24px;
	background: var(--ct-white);
	border-radius: 20px;
	padding: 24px 32px;
	box-shadow: var(--ct-shadow-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid var(--ct-gray-100);
}

.ct-why-badge-number {
	font-family: var(--ct-font-head);
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--ct-teal);
	line-height: 1;
}

.ct-why-badge-text {
	font-size: 13px;
	color: var(--ct-gray-500);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 4px;
}

/* ===== Gallery Section ===== */
.ct-gallery-section {
	background: var(--ct-white);
}

.ct-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 16px;
}

.ct-gallery-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--ct-shadow);
	transition: all var(--ct-trans);
}

.ct-gallery-item:hover {
	box-shadow: var(--ct-shadow-lg);
}

.ct-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ct-trans-slow);
}

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

.ct-gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 37, 64, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity var(--ct-trans);
	color: var(--ct-white);
	font-size: 24px;
}

.ct-gallery-item:hover .ct-gallery-overlay {
	opacity: 1;
}

.ct-gallery-item-1, .ct-gallery-item-4 {
	grid-column: span 2;
}

.ct-gallery-item-2, .ct-gallery-item-3,
.ct-gallery-item-5, .ct-gallery-item-6,
.ct-gallery-item-7, .ct-gallery-item-8 {
	grid-column: span 1;
}

.ct-gallery-item-2, .ct-gallery-item-5 {
	grid-row: span 2;
}

/* ===== Partners Section ===== */
.ct-partners-section {
	background: var(--ct-navy);
	padding: 64px 0;
}

.ct-partner-group {
	margin-bottom: 32px;
}

.ct-partner-group:last-child {
	margin-bottom: 0;
}

.ct-partner-heading {
	color: var(--ct-white);
	font-size: 1.25rem;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ct-partner-heading i {
	color: var(--ct-teal-light);
}

.ct-partners-marquee {
	overflow: hidden;
	position: relative;
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ct-partners-track {
	display: flex;
	gap: 16px;
	animation: ct-marquee 30s linear infinite;
	width: max-content;
}

.ct-marquee-reverse .ct-partners-track {
	animation: ct-marquee-rev 30s linear infinite;
}

@keyframes ct-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes ct-marquee-rev {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

.ct-partner-tag {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.85);
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	transition: all var(--ct-trans);
}

.ct-partner-tag-alt {
	background: rgba(245, 158, 11, 0.08);
	border-color: rgba(245, 158, 11, 0.2);
}

.ct-partner-tag:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.25);
}

/* ===== CTA Section ===== */
.ct-cta-section {
	background: var(--ct-gradient-cta);
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ct-cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}

.ct-cta-section::after {
	content: '';
	position: absolute;
	bottom: -50%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.ct-cta-content {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
}

.ct-cta-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--ct-white);
	margin-bottom: 16px;
}

.ct-cta-desc {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 36px;
}

.ct-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== Page Banner ===== */
.ct-page-banner {
	background: var(--ct-navy);
	padding: 60px 0 40px;
	position: relative;
	overflow: hidden;
}

.ct-page-banner::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.ct-page-banner .ct-container {
	position: relative;
	z-index: 1;
}

.ct-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 12px;
}

.ct-breadcrumb a {
	color: rgba(255, 255, 255, 0.6);
	transition: color var(--ct-trans);
}

.ct-breadcrumb a:hover {
	color: var(--ct-gold-light);
}

.ct-breadcrumb-sep {
	color: rgba(255, 255, 255, 0.3);
}

.ct-breadcrumb-current {
	color: rgba(255, 255, 255, 0.9);
}

.ct-page-title {
	color: var(--ct-white);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	margin-bottom: 0;
}

.ct-post-meta {
	display: flex;
	gap: 20px;
	margin-top: 12px;
}

.ct-post-meta-item {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	gap: 6px;
}

/* ===== Page Content ===== */
.ct-page-content-wrapper {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 0;
}

.ct-page-article {
	background: var(--ct-white);
}

.ct-page-featured-image {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow: var(--ct-shadow-md);
}

.ct-page-featured-image img {
	width: 100%;
}

.ct-page-entry-content {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--ct-gray-700);
}

.ct-page-entry-content h2 {
	font-size: 1.75rem;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	color: var(--ct-navy);
}

.ct-page-entry-content h3 {
	font-size: 1.35rem;
	margin-top: 1.2em;
	margin-bottom: 0.5em;
	color: var(--ct-navy);
}

.ct-page-entry-content h4 {
	font-size: 1.1rem;
	margin-top: 1em;
	margin-bottom: 0.5em;
	color: var(--ct-navy);
}

.ct-page-entry-content p {
	margin-bottom: 1.2em;
}

.ct-page-entry-content img {
	border-radius: 12px;
	margin: 16px 0;
}

.ct-page-entry-content a {
	color: var(--ct-teal);
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: rgba(13, 148, 136, 0.3);
	text-underline-offset: 3px;
}

.ct-page-entry-content a:hover {
	text-decoration-color: var(--ct-teal);
}

.ct-page-entry-content ul,
.ct-page-entry-content ol {
	margin-bottom: 1.2em;
}

.ct-page-entry-content li {
	margin-bottom: 0.5em;
}

.ct-page-entry-content blockquote {
	border-left: 4px solid var(--ct-teal);
	padding: 16px 24px;
	margin: 24px 0;
	background: var(--ct-gray-50);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: var(--ct-gray-600);
}

.ct-page-entry-content figure {
	margin: 24px 0;
}

.ct-page-entry-content figcaption {
	text-align: center;
	font-size: 0.875rem;
	color: var(--ct-gray-400);
	margin-top: 8px;
}

/* ===== Blog Grid ===== */
.ct-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	padding: 60px 0;
}

.ct-blog-card {
	background: var(--ct-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--ct-shadow);
	transition: all var(--ct-trans);
	border: 1px solid var(--ct-gray-100);
}

.ct-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ct-shadow-lg);
}

.ct-blog-card-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.ct-blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ct-trans-slow);
}

.ct-blog-card:hover .ct-blog-card-image img {
	transform: scale(1.08);
}

.ct-blog-card-body {
	padding: 24px;
}

.ct-blog-card-date {
	font-size: 13px;
	color: var(--ct-gray-400);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}

.ct-blog-card-title {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.ct-blog-card-title a {
	color: var(--ct-navy);
	transition: color var(--ct-trans);
}

.ct-blog-card-title a:hover {
	color: var(--ct-teal);
}

.ct-blog-card-excerpt {
	color: var(--ct-gray-500);
	font-size: 0.95rem;
	margin-bottom: 16px;
	line-height: 1.6;
}

.ct-blog-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ct-teal);
}

.ct-blog-card-link:hover {
	gap: 10px;
}

/* ===== Single Post ===== */
.ct-single-post-wrapper {
	max-width: 820px;
	margin: 0 auto;
	padding: 60px 0;
}

.ct-single-featured-image {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow: var(--ct-shadow-lg);
}

.ct-single-featured-image img {
	width: 100%;
}

.ct-single-entry-content {
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--ct-gray-700);
}

.ct-single-entry-content h2,
.ct-single-entry-content h3 {
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	color: var(--ct-navy);
}

.ct-single-entry-content p {
	margin-bottom: 1.2em;
}

.ct-single-entry-content img {
	border-radius: 12px;
}

.ct-single-entry-content a {
	color: var(--ct-teal);
	font-weight: 500;
}

.ct-single-entry-content blockquote {
	border-left: 4px solid var(--ct-teal);
	padding: 16px 24px;
	margin: 24px 0;
	background: var(--ct-gray-50);
	border-radius: 0 12px 12px 0;
	font-style: italic;
}

.ct-single-tags {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 24px 0;
	border-top: 1px solid var(--ct-gray-200);
	margin-top: 32px;
}

.ct-tags-label {
	color: var(--ct-gray-400);
}

.ct-tag {
	background: var(--ct-gray-100);
	color: var(--ct-gray-600);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	transition: all var(--ct-trans);
}

.ct-tag:hover {
	background: var(--ct-teal);
	color: var(--ct-white);
}

.ct-post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 32px 0;
	border-top: 1px solid var(--ct-gray-200);
	margin-top: 16px;
}

.ct-post-nav-prev,
.ct-post-nav-next {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ct-post-nav-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ct-gray-400);
}

.ct-post-nav-prev a,
.ct-post-nav-next a {
	color: var(--ct-navy);
	font-weight: 500;
}

.ct-post-nav-prev a:hover,
.ct-post-nav-next a:hover {
	color: var(--ct-teal);
}

.ct-post-nav-next {
	text-align: right;
}

/* ===== 404 Page ===== */
.ct-404-section {
	min-height: 60vh;
	display: flex;
	align-items: center;
	padding: 80px 0;
}

.ct-404-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.ct-404-number {
	font-family: var(--ct-font-head);
	font-size: 8rem;
	font-weight: 900;
	color: var(--ct-teal);
	line-height: 1;
	display: block;
}

.ct-404-title {
	font-size: 2rem;
	margin-bottom: 16px;
}

.ct-404-desc {
	color: var(--ct-gray-500);
	margin-bottom: 32px;
}

/* ===== Pagination ===== */
.pagination,
.wp-pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
	flex-wrap: wrap;
}

.pagination .page-numbers,
.wp-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--ct-gray-600);
	background: var(--ct-gray-100);
	transition: all var(--ct-trans);
}

.pagination .page-numbers:hover,
.wp-pagination .page-numbers:hover {
	background: var(--ct-teal);
	color: var(--ct-white);
}

.pagination .page-numbers.current,
.wp-pagination .page-numbers.current {
	background: var(--ct-teal);
	color: var(--ct-white);
}

.pagination .page-numbers.dots,
.wp-pagination .page-numbers.dots {
	background: transparent;
}

.pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

/* ===== Footer ===== */
.ct-site-footer {
	background: var(--ct-navy-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 0;
}

.ct-footer-top {
	padding: 72px 0 56px;
}

.ct-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 40px;
}

.ct-footer-logo {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ct-footer-logo .custom-logo-link img {
	max-height: 48px;
	filter: brightness(0) invert(1);
}

.ct-footer-logo .ct-logo-name {
	color: var(--ct-white);
}

.ct-footer-desc {
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 24px;
}

.ct-footer-social {
	display: flex;
	gap: 12px;
}

.ct-footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	transition: all var(--ct-trans);
}

.ct-footer-social a:hover {
	background: var(--ct-gradient-teal);
	color: var(--ct-white);
	transform: translateY(-3px);
}

.ct-footer-heading {
	color: var(--ct-white);
	font-size: 1.05rem;
	font-family: var(--ct-font-body);
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.ct-footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 32px;
	height: 2px;
	background: var(--ct-teal);
	border-radius: 2px;
}

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

.ct-footer-list li {
	margin-bottom: 10px;
}

.ct-footer-list a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.95rem;
	transition: all var(--ct-trans);
	display: flex;
	align-items: center;
	gap: 6px;
}

.ct-footer-list a::before {
	content: '\f105';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 12px;
	color: var(--ct-teal);
	opacity: 0;
	width: 0;
	transition: all var(--ct-trans);
	overflow: hidden;
}

.ct-footer-list a:hover {
	color: var(--ct-white);
}

.ct-footer-list a:hover::before {
	opacity: 1;
	width: 12px;
}

.ct-footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ct-footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.65);
}

.ct-contact-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(13, 148, 136, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--ct-teal-light);
	flex-shrink: 0;
}

.ct-footer-contact-list a {
	color: rgba(255, 255, 255, 0.65);
}

.ct-footer-contact-list a:hover {
	color: var(--ct-white);
}

.ct-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px 0;
}

.ct-footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.ct-copyright {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.ct-footer-credit {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* ===== Scroll to Top ===== */
.ct-scroll-top {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ct-gradient-teal);
	color: var(--ct-white);
	border: none;
	font-size: 18px;
	cursor: pointer;
	box-shadow: var(--ct-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--ct-trans);
	z-index: 997;
}

.ct-scroll-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ct-scroll-top:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
}

/* ===== Animations ===== */
[data-animate] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
	opacity: 1;
	transform: translateY(0);
}

[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-animate]:nth-child(4) { transition-delay: 0.3s; }
[data-animate]:nth-child(5) { transition-delay: 0.4s; }
[data-animate]:nth-child(6) { transition-delay: 0.5s; }

/* ===== Comments ===== */
.comments-area {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--ct-gray-200);
}

.comments-area .comments-title {
	font-size: 1.5rem;
	margin-bottom: 24px;
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .comment {
	padding: 20px 0;
	border-bottom: 1px solid var(--ct-gray-100);
}

.comment-body .comment-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.comment-author .fn {
	font-weight: 600;
	color: var(--ct-navy);
}

.comment-reply-link {
	color: var(--ct-teal);
	font-size: 14px;
	font-weight: 500;
}

.comment-respond {
	margin-top: 32px;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--ct-gray-200);
	border-radius: 10px;
	font-family: var(--ct-font-body);
	font-size: 15px;
	transition: border-color var(--ct-trans);
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--ct-teal);
	outline: none;
}

.comment-form .submit {
	background: var(--ct-gradient-teal);
	color: var(--ct-white);
	border: none;
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	width: auto;
	transition: all var(--ct-trans);
}

.comment-form .submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

/* ===== WordPress Core Styles ===== */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1em;
}

.aligncenter {
	display: block;
	margin: 1.5em auto;
}

.alignwide {
	max-width: 100%;
	margin: 2em 0;
}

.alignfull {
	max-width: 100%;
	margin: 2em 0;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	text-align: center;
	font-size: 0.875rem;
	color: var(--ct-gray-400);
	margin-top: 8px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.sticky {
	display: block;
}

.bypostauthor {
	display: block;
}

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

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

.gallery-caption {
	font-size: 0.8rem;
	color: var(--ct-gray-400);
}

/* ===== Search Form ===== */
.search-form {
	display: flex;
	gap: 8px;
	max-width: 400px;
}

.search-form .search-field {
	flex: 1;
	padding: 10px 16px;
	border: 1px solid var(--ct-gray-200);
	border-radius: 10px;
	font-family: var(--ct-font-body);
	font-size: 15px;
	transition: border-color var(--ct-trans);
}

.search-form .search-field:focus {
	border-color: var(--ct-teal);
	outline: none;
}

.search-form .search-submit {
	background: var(--ct-gradient-teal);
	color: var(--ct-white);
	border: none;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--ct-trans);
}

.search-form .search-submit:hover {
	transform: translateY(-2px);
}

/* ===== Block Editor Styles ===== */
.wp-block-button .wp-block-button__link {
	background: var(--ct-teal);
	border-radius: 50px;
	font-weight: 600;
	padding: 12px 28px;
}

.wp-block-image img {
	border-radius: 12px;
}

.wp-block-quote {
	border-left: 4px solid var(--ct-teal);
	padding: 16px 24px;
	margin: 24px 0;
	background: var(--ct-gray-50);
	border-radius: 0 12px 12px 0;
}

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

	.ct-why-grid {
		gap: 40px;
	}

	.ct-gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.ct-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.ct-hero-stats {
		gap: 12px;
	}

	.ct-hero-stat-number {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	:root {
		--ct-section-pad: 56px;
	}

	/* Mobile Navigation */
	.ct-nav-toggle {
		display: flex;
	}

	.ct-desktop-only {
		display: none;
	}

	.ct-main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		max-width: 85vw;
		height: 100vh;
		background: var(--ct-white);
		padding: 80px 24px 24px;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		transition: right var(--ct-trans);
		z-index: 1000;
		box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
		overflow-y: auto;
	}

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

	.ct-nav-list {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	.ct-nav-list > li {
		width: 100%;
	}

	.ct-nav-list > li > a {
		padding: 14px 16px;
		font-size: 16px;
		border-radius: 10px;
	}

	.ct-nav-list > li > a::after {
		display: none;
	}

	.ct-nav-list .sub-menu,
	.ct-nav-list .children {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding: 0 0 0 16px;
		margin: 0;
	}

	.ct-nav-cta-mobile {
		margin-top: 24px;
		display: block;
	}

	/* Mobile top bar */
	.ct-top-bar-right {
		display: none;
	}

	.ct-top-bar-contact {
		gap: 16px;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}

	.ct-top-bar-inner {
		justify-content: center;
	}

	/* Hero */
	.ct-hero {
		min-height: auto;
		padding: 120px 0 80px;
	}

	.ct-hero-stats {
		justify-content: space-between;
		gap: 8px;
		width: 100%;
	}

	.ct-hero-stat-divider {
		display: none;
	}

	.ct-hero-stat {
		flex: 1;
		min-width: 70px;
	}

	.ct-hero-stat-number {
		font-size: 1.5rem;
	}

	.ct-hero-stat-label {
		font-size: 11px;
	}

	.ct-hero-scroll {
		display: none;
	}

	/* Sections */
	.ct-why-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ct-why-features {
		grid-template-columns: 1fr;
	}

	.ct-why-image-main {
		height: 360px;
	}

	.ct-why-image-badge {
		position: relative;
		bottom: auto;
		left: auto;
		margin: -40px auto 0;
		display: inline-flex;
	}

	/* Gallery */
	.ct-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 160px;
	}

	.ct-gallery-item-1,
	.ct-gallery-item-4 {
		grid-column: span 2;
	}

	/* Footer */
	.ct-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ct-footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	/* CTA */
	.ct-cta-actions {
		flex-direction: column;
	}

	.ct-cta-actions .ct-btn {
		width: 100%;
		justify-content: center;
	}

	/* Page content */
	.ct-page-content-wrapper {
		padding: 40px 0;
	}

	.ct-blog-grid {
		padding: 32px 0;
	}
}

@media (max-width: 480px) {
	.ct-services-grid,
	.ct-destinations-grid,
	.ct-blog-grid {
		grid-template-columns: 1fr;
	}

	.ct-hero-actions {
		flex-direction: column;
	}

	.ct-hero-actions .ct-btn {
		width: 100%;
		justify-content: center;
	}

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

	.ct-gallery-item-1,
	.ct-gallery-item-2,
	.ct-gallery-item-3,
	.ct-gallery-item-4,
	.ct-gallery-item-5,
	.ct-gallery-item-6,
	.ct-gallery-item-7,
	.ct-gallery-item-8 {
		grid-column: span 1;
		grid-row: span 1;
	}

	.ct-post-navigation {
		flex-direction: column;
	}

	.ct-post-nav-next {
		text-align: left;
	}

	.ct-404-number {
		font-size: 5rem;
	}

	.ct-container {
		padding: 0 16px;
	}
}

/* ===== Print ===== */
@media print {
	.ct-top-bar,
	.ct-site-header,
	.ct-site-footer,
	.ct-scroll-top,
	.ct-hero-scroll,
	.ct-nav-toggle,
	.ct-nav-overlay {
		display: none;
	}

	.ct-hero {
		min-height: auto;
		padding: 40px 0;
	}

	.ct-hero-bg,
	.ct-hero-overlay {
		display: none;
	}

	.ct-hero-content {
		color: var(--ct-navy);
	}

	.ct-hero-title,
	.ct-hero-subtitle,
	.ct-hero-badge {
		color: var(--ct-navy);
	}
}

/* ===== Selection ===== */
::selection {
	background: var(--ct-teal);
	color: var(--ct-white);
}

::-moz-selection {
	background: var(--ct-teal);
	color: var(--ct-white);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: var(--ct-gray-100);
}

::-webkit-scrollbar-thumb {
	background: var(--ct-gray-300);
	border-radius: 6px;
	border: 3px solid var(--ct-gray-100);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--ct-teal);
}

/* ===== Focus States ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--ct-teal);
	outline-offset: 2px;
}

/* ===== Lightbox ===== */
.ct-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(5, 26, 48, 0.95);
	backdrop-filter: blur(8px);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.ct-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.ct-lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
}

.ct-lightbox-content img {
	max-width: 90vw;
	max-height: 85vh;
	border-radius: 12px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.ct-lightbox-close,
.ct-lightbox-prev,
.ct-lightbox-next {
	position: absolute;
	color: var(--ct-white);
	cursor: pointer;
	transition: all var(--ct-trans);
	user-select: none;
}

.ct-lightbox-close {
	top: -48px;
	right: 0;
	font-size: 36px;
	line-height: 1;
}

.ct-lightbox-close:hover {
	color: var(--ct-gold-light);
	transform: rotate(90deg);
}

.ct-lightbox-prev,
.ct-lightbox-next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 48px;
	font-weight: 300;
	padding: 16px;
}

.ct-lightbox-prev {
	left: -60px;
}

.ct-lightbox-next {
	right: -60px;
}

.ct-lightbox-prev:hover,
.ct-lightbox-next:hover {
	color: var(--ct-teal-light);
}

@media (max-width: 768px) {
	.ct-lightbox-prev {
		left: 0;
	}
	.ct-lightbox-next {
		right: 0;
	}
	.ct-lightbox-prev,
	.ct-lightbox-next {
		font-size: 32px;
	}
	.ct-lightbox-close {
		top: -40px;
		font-size: 28px;
	}
}

/* ===== No Posts ===== */
.ct-no-posts {
	text-align: center;
	padding: 60px 0;
	color: var(--ct-gray-400);
	font-size: 1.1rem;
}
