/**
 * Plans Section - Excitel Exact Design
 * Blue speed section, orange Wi-Fi banner, professional layout
 */

/* ========================================
   ROTATING IMAGES - ABOUT SECTION
======================================== */

.about-section .image-column .images {
	position: relative;
	width: 100%;
	height: 400px;
	perspective: 1000px;
}

.about-section .image-column .images .row {
	position: relative;
	width: 100%;
	height: 100%;
}

.about-section .image-column .images figure.image {
	position: absolute;
	width: 45%;
	height: 45%;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease;
}

.about-section .image-column .images figure.image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.about-section .image-column .images figure.image:hover img {
	transform: scale(1.08) rotate(2deg);
}

/* Position images in grid */
.about-section .image-column .images figure.image:nth-child(1) {
	top: 0;
	left: 0;
	animation: rotate-image-1 6s ease-in-out infinite;
}

.about-section .image-column .images figure.image:nth-child(2) {
	top: 0;
	right: 0;
	animation: rotate-image-2 6s ease-in-out infinite;
}

.about-section .image-column .images figure.image:nth-child(3) {
	bottom: 0;
	left: 0;
	animation: rotate-image-3 6s ease-in-out infinite;
}

.about-section .image-column .images figure.image:nth-child(4) {
	bottom: 0;
	right: 0;
	animation: rotate-image-4 6s ease-in-out infinite;
}

/* Rotation animations */
@keyframes rotate-image-1 {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes rotate-image-2 {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(10px) rotate(1deg); }
}

@keyframes rotate-image-3 {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(10px) rotate(1deg); }
}

@keyframes rotate-image-4 {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(-1deg); }
}

/* ========================================
   THEME SEPARATOR
======================================== */

.theme-separator {
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent 0%, #FF6A00 25%, #FF6A00 75%, transparent 100%);
	margin: 40px 0;
	position: relative;
}

 
@keyframes separator-rotate {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   PLAN SECTION
======================================== */

.locations-section,
.cases-section {
	background: #f8f8f8;
	position: relative;
	padding: 40px 0 !important;
}

/* ========================================
   PLAN CARD - EXCITEL EXACT
======================================== */

.single-service-style1,
.case-block {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	margin-bottom: 35px;
	padding: 0 !important;
	height: auto;
    padding-top: 15px !important;
}

.single-service-style1:hover,
.case-block:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* Best Value Badge */
.single-service-style1.featured,
.case-block.featured {
	border: 2px solid #FF6A00;
	transform: scale(1.02);
}

.single-service-style1.featured::after,
.case-block.featured::after {
	content: 'BEST VALUE';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #FF6A00, #ff8533);
	color: #ffffff;
	padding: 6px 20px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	z-index: 3;
	box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

/* Plan Name Badge */
.single-service-style1::before {
	content: '';
	display: none;
}

.single-service-style1::after {
	content: '';
	display: none;
}

/* ========================================
   SPEED DISPLAY - TOP (LIGHTNING BOLT)
======================================== */

.single-service-style1 .icon_text,
.single-service-style1 span.icon_text {
	position: relative !important;
	padding: 35px 30px 30px !important;
	background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
	background-image: none !important;
	text-align: center !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-direction: column !important;
	min-height: auto !important;
	border-bottom: 2px solid #f0f0f0 !important;
	border-radius: 16px 16px 0 0 !important;
}

/* Lightning Bolt Icon */
.single-service-style1 .icon_text::before {
	content: '⚡';
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 48px;
	color: #FF6A00;
	z-index: 1;
	filter: drop-shadow(0 2px 4px rgba(255, 106, 0, 0.3));
}

.single-service-style1 .icon_text .count-box {
	position: relative;
	z-index: 2;
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	border: none;
	margin-top: 15px;
}

/* Speed Text - Large Bold */
.single-service-style1 .icon_text .count-text,
.single-service-style1 .icon_text .count-box .count-text,
.single-service-style1 span.icon_text .count-text {
	font-size: 54px !important;
	font-weight: 900 !important;
	color: #FF6A00 !important;
	line-height: 1 !important;
	display: inline-block !important;
	letter-spacing: -2px !important;
	position: relative !important;
	z-index: 3 !important;
}

/* ========================================
   ORANGE WI-FI BANNER
======================================== */

.single-service-style1 .title-holder {
	padding: 0 !important;
	background: linear-gradient(135deg, #FF6A00 0%, #ff8533 100%) !important;
	text-align: center !important;
	border-bottom: none !important;
	position: relative !important;
	clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%) !important;
	padding: 18px 30px 28px !important;
}

.single-service-style1 .title-holder span {
	display: block;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.single-service-style1 .title-holder h3 {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.2 !important;
}

/* ========================================
   PRICING LIST - MODERN TABLE LAYOUT
======================================== */

.single-service-style1 .plan-inc,
.case-block .image-box figure {
	margin: 0 auto;
	position: relative;
	display: block;
	list-style: none;
	padding: 0 !important;
	margin: 0 !important;
	background: #ffffff;
	border-radius: 0 0 16px 16px;
}

.single-service-style1 .plan-inc li {
	padding: 11px 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.25s ease;
	font-size: 13px;
	color: #555555;
	font-weight: 500;
	line-height: 1.4;
	gap: 10px;
}

.single-service-style1 .plan-inc li:last-child {
	border-bottom: none;
	padding-bottom: 11px;
}

.single-service-style1 .plan-inc li:hover {
	background: linear-gradient(90deg, #fff8f0 0%, transparent 100%);
	padding-left: 26px;
}

/* Icon styling - show and style */
.single-service-style1 .plan-inc li i {
	display: inline-block !important;
	color: #FF6A00 !important;
	font-size: 14px !important;
	width: 16px;
	height: 16px;
	text-align: center;
	flex-shrink: 0;
	line-height: 16px;
}

/* Label text - middle */
.single-service-style1 .plan-inc li i ~ * {
	color: #666666;
	font-weight: 500;
	flex: 1;
	min-width: 0;
}

/* Price value styling - right side */
.single-service-style1 .plan-inc li i + * {
	color: #FF6A00;
	font-weight: 700;
	text-align: right;
	flex: 0 0 auto;
	margin-left: auto;
	white-space: nowrap;
	font-size: 14px;
	letter-spacing: 0.5px;
}

/* Remove inline background styles from highlighted items */
.single-service-style1 .plan-inc li[style*="background"] {
	background: linear-gradient(90deg, #fff8f0 0%, transparent 100%) !important;
	color: #FF6A00 !important;
	font-weight: 600 !important;
	border-left: none !important;
	padding-left: 20px !important;
	border-radius: 0;
}

/* First item highlight */
.single-service-style1 .plan-inc li:first-child {
	background: linear-gradient(90deg, #fff8f0 0%, transparent 100%);
	color: #FF6A00;
	font-weight: 600;
	border-left: none;
	padding-left: 20px;
	border-radius: 0;
}

/* ========================================
   CTA BUTTON - BOTTOM
======================================== */

.single-service-style1 .cta-button {
	padding: 20px 30px;
	background: #ffffff;
	text-align: center;
	border-top: 1px solid #f0f0f0;
}

.single-service-style1 .btn-get-plan {
	display: inline-block;
	padding: 14px 50px;
	background: linear-gradient(135deg, #FF6A00 0%, #ff8533 100%);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 25px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
	border: none;
	cursor: pointer;
}

.single-service-style1 .btn-get-plan:hover {
	background: linear-gradient(135deg, #ff8533 0%, #FF6A00 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 106, 0, 0.4);
}

.case-block .image-box figure {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #ff9933, #ff6b35);
	color: #ffffff;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
	z-index: 2;
}

/* Plan Title Section */
.case-block .content-box {
	padding: 0;
	background: #ffffff;
}

.case-block .content-box .title-box {
	background: linear-gradient(to bottom, #fffef8, #ffffff);
	padding: 25px 25px 20px;
	text-align: center;
	border-bottom: 2px solid #f5f5f5;
	position: relative;
}

.case-block .content-box .title-box::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #ff9933, #ff6b35);
}

.case-block .content-box .title-box h3 {
	color: #222222;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 5px 0;
	line-height: 1.2;
}

.case-block .content-box .title-box .plan-type {
	color: #ff6b35;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Pricing Section */
.case-block .content-box .pricing-section {
	padding: 25px;
	background: #ffffff;
}

.case-block .content-box .pricing-section .price-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

.case-block .content-box .pricing-section .price-item:last-child {
	border-bottom: none;
}

.case-block .content-box .pricing-section .price-item:hover {
	padding-left: 5px;
	background: #fffef8;
}

.case-block .content-box .pricing-section .price-item .label {
	color: #666666;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.case-block .content-box .pricing-section .price-item .label i {
	color: #ff9933;
	margin-right: 8px;
	font-size: 16px;
}

.case-block .content-box .pricing-section .price-item .value {
	color: #222222;
	font-size: 16px;
	font-weight: 700;
}

/* Features List */
.case-block .content-box .features-list {
	padding: 25px;
	background: #fafafa;
}

.case-block .content-box .features-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.case-block .content-box .features-list li {
	padding: 10px 0;
	color: #555555;
	font-size: 14px;
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 30px;
}

.case-block .content-box .features-list li::before {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	color: #ff9933;
	font-weight: bold;
	font-size: 14px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 153, 51, 0.1);
	border-radius: 50%;
}

/* CTA Button */
.case-block .content-box .cta-section {
	padding: 25px;
	background: #ffffff;
	text-align: center;
}

.case-block .content-box .cta-section .btn-plan {
	display: inline-block;
	padding: 14px 40px;
	background: linear-gradient(135deg, #ff9933, #ff6b35);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
	border: none;
}

.case-block .content-box .cta-section .btn-plan:hover {
	background: linear-gradient(135deg, #ff6b35, #f91b03);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.case-block .content-box .cta-section .btn-plan i {
	margin-left: 8px;
}

/* Popular Badge */
.case-block.popular {
	border: 3px solid #ff9933;
	transform: scale(1.05);
}

.case-block.popular::before {
	height: 8px;
	background: linear-gradient(90deg, #ff9933, #ffc107, #ff9933);
}

.case-block.popular .image-box .plan-badge {
	background: linear-gradient(135deg, #ffc107, #ff9933);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* ========================================
   MOBILE RESPONSIVE
======================================== */

@media only screen and (max-width: 767px) {
	.locations-section,
	.cases-section {
		padding: 30px 0 !important;
	}

	.case-block {
		border-radius: 16px;
		margin-bottom: 25px;
	}

	.case-block .image-box {
		padding: 30px 15px 15px;
	}

	.case-block .image-box figure img {
		max-width: 120px;
	}

	.case-block .content-box .title-box {
		padding: 20px 15px 15px;
	}

	.case-block .content-box .title-box h3 {
		font-size: 24px;
	}

	.case-block .content-box .pricing-section,
	.case-block .content-box .features-list,
	.case-block .content-box .cta-section {
		padding: 20px 15px;
	}

	.case-block .content-box .pricing-section .price-item .label,
	.case-block .content-box .pricing-section .price-item .value {
		font-size: 13px;
	}

	.case-block .content-box .features-list li {
		font-size: 13px;
		padding: 8px 0 8px 25px;
	}

	.case-block .content-box .cta-section .btn-plan {
		padding: 12px 30px;
		font-size: 14px;
		width: 100%;
	}

	.case-block.popular {
		transform: scale(1);
	}
}

/* ========================================
   FOOTER REDESIGN - RAM MANDIR AYODHYA THEME
======================================== */

.main-footer {
	position: relative;
	background: #1a1a1a;
	padding: 0;
	overflow: hidden;
	margin-top: 0;
}

/* Top border - simple gradient line */
.main-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #FF6A00, #ff8533, #FF6A00, transparent);
}

/* Footer content wrapper */
.main-footer .footer-top {
	padding: 60px 0 40px;
	position: relative;
	z-index: 2;
}

.main-footer .footer-top .auto-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.main-footer .footer-top .row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 50px;
}

/* Footer widget headers */
.main-footer .footer-widget h4 {
	font-size: 16px;
	font-weight: 700;
	color: #FF6A00;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #FF6A00;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

/* Footer about text */
.main-footer .footer-widget.about-widget .text,
.main-footer .footer-widget.about-widget p {
	color: #cccccc;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* Footer links */
.main-footer .footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-footer .footer-widget ul li {
	margin-bottom: 12px;
}

.main-footer .footer-widget ul li a {
	color: #bbbbbb;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.main-footer .footer-widget ul li a i {
	color: #FF6A00;
	margin-right: 8px;
	font-size: 12px;
}

.main-footer .footer-widget ul li a:hover {
	color: #FF6A00;
	padding-left: 5px;
}

/* Social icons */
.main-footer .social-icon-one {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.main-footer .social-icon-one li {
	list-style: none;
}

.main-footer .social-icon-one li a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 106, 0, 0.2);
	border: 1px solid #FF6A00;
	color: #FF6A00;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.main-footer .social-icon-one li a:hover {
	background: #FF6A00;
	color: #ffffff;
	transform: translateY(-3px);
}

/* Footer bottom */
.main-footer .footer-bottom {
	padding: 20px 0;
	background: rgba(0, 0, 0, 0.6);
	border-top: 1px solid rgba(255, 106, 0, 0.3);
}

.main-footer .footer-bottom .copyright {
	text-align: center;
	color: #b0b0b0;
	font-size: 13px;
}

.main-footer .footer-bottom .copyright a {
	color: #FF6A00;
	text-decoration: none;
}

.main-footer .footer-bottom .copyright a:hover {
	text-decoration: underline;
}

/* ========================================
   MOBILE FOOTER VISIBILITY
======================================== */

/* Hide on desktop by default */
@media only screen and (min-width: 768px) {
	.mobile-bottom-nav,
	.mobile-footer-nav,
	.bottom-navigation {
		display: none !important;
	}
}

/* ========================================
   FOOTER MOBILE RESPONSIVE
======================================== */

@media only screen and (max-width: 767px) {
	.main-footer .footer-top {
		padding: 50px 0 80px;
	}

	.main-footer .footer-top .row {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.main-footer .footer-widget h4 {
		font-size: 15px;
		margin-bottom: 18px;
	}

	.main-footer .footer-widget.about-widget .text,
	.main-footer .footer-widget.about-widget p {
		font-size: 13px;
		color: #bbbbbb;
	}

	.main-footer .footer-widget ul li a {
		font-size: 13px;
		color: #aaaaaa;
	}

	.main-footer .social-icon-one li a {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}
}

/* ========================================
   TABLET RESPONSIVE
======================================== */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.main-footer .footer-top .row {
		grid-template-columns: 2fr 1fr 1fr;
		gap: 40px;
	}

	.case-block .content-box .title-box h3 {
		font-size: 24px;
	}

	.case-block .content-box .pricing-section,
	.case-block .content-box .features-list,
	.case-block .content-box .cta-section {
		padding: 20px;
	}
}
