/* ========================================
   Conseil Douane - Informations Page Styling
   Professional Services & Information Display
   ======================================== */

/* Page Container */
.page-template-default .site-main,
.page .site-main {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* Hero Section for Informations Page */
.informations-hero,
.page-header.informations-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 100px 40px 80px;
	background: linear-gradient(135deg, #1e3a8a 0%, #2c5aa0 50%, #1e40af 100%);
	border-radius: 24px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(30, 58, 138, 0.25);
}

.informations-hero::before,
.page-header.informations-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -30%;
	width: 150%;
	height: 150%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
	animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
	50% { transform: translate(-10%, 10%) scale(1.1); opacity: 0.5; }
}

.informations-hero h1,
.page-header.informations-header .page-title {
	font-size: 56px;
	font-weight: 900;
	margin: 0 0 24px 0;
	letter-spacing: -2.5px;
	line-height: 1.1;
	background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.informations-hero p,
.page-header.informations-header .page-description {
	font-size: 20px;
	line-height: 1.7;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

/* Services Grid Layout */
.services-grid,
.informations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

/* Service Card */
.service-card,
.info-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.service-card::before,
.info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #1e3a8a 0%, #2c5aa0 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover,
.info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2);
	border-color: rgba(30, 58, 138, 0.15);
}

.service-card:hover::before,
.info-card:hover::before {
	transform: scaleX(1);
}

/* Service Icon */
.service-icon,
.info-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #1e3a8a 0%, #2c5aa0 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin-bottom: 24px;
	box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
	transition: transform 0.3s ease;
}

.service-card:hover .service-icon,
.info-card:hover .info-icon {
	transform: scale(1.1) rotate(5deg);
}

/* Service Title */
.service-title,
.info-title {
	font-size: 24px;
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 16px 0;
	line-height: 1.3;
}

.service-title a,
.info-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.service-title a:hover,
.info-title a:hover {
	color: #1e3a8a;
}

/* Service Description */
.service-description,
.info-description {
	color: #64748b;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 24px;
}

/* Service Link/Button */
.service-link,
.info-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #1e3a8a;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.service-link::after,
.info-link::after {
	content: '→';
	font-size: 18px;
	transition: transform 0.3s ease;
}

.service-link:hover,
.info-link:hover {
	gap: 12px;
}

.service-link:hover::after,
.info-link:hover::after {
	transform: translateX(4px);
}

/* Featured Service - Larger Card */
.service-card.featured,
.info-card.featured {
	grid-column: span 2;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	border: 2px solid rgba(30, 58, 138, 0.1);
}

.service-card.featured .service-icon,
.info-card.featured .info-icon {
	width: 90px;
	height: 90px;
	font-size: 40px;
}

/* Content Sections */
.info-section {
	margin-bottom: 80px;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-size: 40px;
	font-weight: 900;
	color: #1e293b;
	margin: 0 0 16px 0;
	letter-spacing: -1.5px;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #1e3a8a 0%, #2c5aa0 100%);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 18px;
	color: #64748b;
	max-width: 700px;
	margin: 24px auto 0;
	line-height: 1.6;
}

/* List Items with Icons */
.info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.info-list li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	margin-bottom: 16px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.info-list li:hover {
	border-left-color: #1e3a8a;
	transform: translateX(8px);
	box-shadow: 0 4px 16px rgba(30, 58, 138, 0.1);
}

.info-list li::before {
	content: '✓';
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #1e3a8a 0%, #2c5aa0 100%);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
}

/* Two Column Layout */
.two-column-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
}

.column {
	background: #ffffff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.column h3 {
	font-size: 28px;
	font-weight: 800;
	color: #1e3a8a;
	margin: 0 0 24px 0;
}

/* Call to Action Box */
.cta-box {
	background: linear-gradient(135deg, #1e3a8a 0%, #2c5aa0 100%);
	color: #ffffff;
	padding: 60px 40px;
	border-radius: 24px;
	text-align: center;
	margin: 80px 0 60px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
}

.cta-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(10%, 10%); }
}

.cta-title {
	font-size: 36px;
	font-weight: 900;
	margin: 0 0 20px 0;
	position: relative;
	z-index: 1;
}

.cta-description {
	font-size: 18px;
	margin: 0 0 32px 0;
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	color: #1e3a8a;
	padding: 18px 40px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 1;
}

.cta-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	background: #f8fafc;
}

/* Accordion for FAQ or Details */
.accordion-item {
	background: #ffffff;
	border-radius: 16px;
	margin-bottom: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #ffffff;
}

.accordion-header:hover {
	background: #f8fafc;
}

.accordion-title {
	font-size: 18px;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.accordion-icon {
	width: 32px;
	height: 32px;
	background: #f1f5f9;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1e3a8a;
	font-weight: 700;
	transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
	background: #1e3a8a;
	color: #ffffff;
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
}

.accordion-body {
	padding: 0 28px 24px;
	color: #64748b;
	line-height: 1.7;
}

/* Stats/Numbers Section */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin: 60px 0;
}

.stat-card {
	text-align: center;
	padding: 40px 20px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-8px);
}

.stat-number {
	font-size: 48px;
	font-weight: 900;
	color: #1e3a8a;
	margin: 0 0 12px 0;
	line-height: 1;
}

.stat-label {
	font-size: 16px;
	color: #64748b;
	font-weight: 600;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
	.informations-hero h1,
	.page-header.informations-header .page-title {
		font-size: 44px;
	}
	
	.service-card.featured,
	.info-card.featured {
		grid-column: span 1;
	}
	
	.two-column-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.informations-hero,
	.page-header.informations-header {
		padding: 60px 24px 50px;
		margin-bottom: 40px;
	}
	
	.informations-hero h1,
	.page-header.informations-header .page-title {
		font-size: 36px;
		letter-spacing: -1.5px;
	}
	
	.informations-hero p,
	.page-header.informations-header .page-description {
		font-size: 17px;
	}
	
	.services-grid,
	.informations-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.service-card,
	.info-card {
		padding: 30px;
	}
	
	.section-title {
		font-size: 32px;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.cta-box {
		padding: 40px 24px;
	}
	
	.cta-title {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.informations-hero h1,
	.page-header.informations-header .page-title {
		font-size: 28px;
	}
	
	.service-card,
	.info-card {
		padding: 24px;
	}
	
	.service-icon,
	.info-icon {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}
	
	.section-title {
		font-size: 26px;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-number {
		font-size: 40px;
	}
	
	.info-list li {
		padding: 16px;
		gap: 12px;
	}
	
	.info-list li::before {
		width: 28px;
		height: 28px;
		font-size: 16px;
	}
}

/* Animation Classes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
	.cta-box,
	.accordion-icon {
		display: none;
	}
	
	.service-card,
	.info-card {
		box-shadow: none;
		border: 1px solid #e2e8f0;
		page-break-inside: avoid;
	}
}

