@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #F5821F;
    --orange-light: #ff9a47;
    --orange-dark: #e06810;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.mb-10 {margin-bottom: 10px;display: inline-block;}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding:0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
}
.header.scrolled .logo, .headerbg .logo {background:none;top: 0;transition: all ease 0s}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: transform 0.3s ease;
	background: #fff;
	padding: 1rem 1rem .6rem;
	border-radius: 0 0 12px 12px;position: relative;top: -8px;
}

.logo:hover {

}

.logo-icon {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: var(--orange-primary);
    filter: blur(30px);
    opacity: 0.5;
}

.logo-plane {
    position: relative;
    font-size: 2rem;
    color: var(--orange-primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text {
    color: var(--gray-900);
}

.nav-desktop {
    display: none;
    gap: 2rem;margin: 20px 0;
}

.header .btn-cta {margin: 20px 0;}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.header.scrolled .nav-link, .headerbg .nav-link {
    color: var(--gray-700);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    display: none;
    padding: 0.86rem 1.6rem;
    background: linear-gradient(to right, var(--orange-primary), #ff6b35);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 130, 31, 0.3);font-family: "Roboto",serif;
}

@media (min-width: 768px) {
    .btn-cta {
        display: block;
    }
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(245, 130, 31, 0.5);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.header.scrolled .mobile-menu-btn, .headerbg .mobile-menu-btn {
    color: var(--gray-700);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    margin-top: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile-link {
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-mobile-link:hover {
    background: var(--orange-primary);
    color: white;
}

.btn-mobile {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--orange-primary), #ff6b35);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;font-family: "Roboto",serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(245, 130, 31, 0.3));
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.badge-icon {
    color: var(--orange-primary);
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-highlight {
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
    z-index: 10;
    background: linear-gradient(to right, var(--orange-primary), #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(245, 130, 31, 0.3);
    animation: slideIn 0.8s ease forwards;
    animation-delay: 1s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.hero-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
}

.feature-subtext {
    font-size: 1.125rem;
    color: var(--gray-400);
    padding-left: 1.25rem;
}

/* Booking Form */
.booking-form-wrapper {
    position: relative;
}

.form-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, var(--orange-primary), #ff9a47);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.booking-form-wrapper:hover .form-glow {
    opacity: 0.3;
}

.booking-form {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Form Tabs */
.form-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1rem 0;
}

.tab-btn {
	flex: 1;
	padding: 0.875rem 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: none;
	border-radius: 0.75rem;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-family: "Roboto",serif;
}

.tab-btn.active {
    background: #fff;
  color: #000;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 1.5rem;
}

.tab-content.active {
    display: block;
}

/* Trip Type Selector */
.trip-type-selector {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: white;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #ff6b35;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background:#ff6b35;
    border-radius: 50%;
}

.radio-label {
    font-size: 1rem;
    font-weight: 500;
}

/* Form Fields */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.form-field:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.field-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.field-icon img {height: 16px;filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(106%) contrast(104%);}

.field-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.field-content label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-content input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    outline: none;
    width: 100%;font-family: "Roboto",serif;
}

.field-content input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Passengers Field */
.passengers-field {
    margin-bottom: 1rem;
}

.passenger-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.passenger-controls input {
    width: 50px;
}

.passenger-buttons {
    display: flex;
    gap: 0.5rem;
}

.passenger-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    color: white;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.passenger-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.passenger-btn:active {
    transform: scale(0.95);
}

/* Return Fields */
.return-fields {
    animation: fadeInDown 0.3s ease;
}

/* Search Button */
.btn-search {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, var(--orange-primary), #ff6b35);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 141, 239, 0.4);font-family: "Roboto",serif;
}

.btn-search:hover {
    background: var(--orange-primary);
    
}

.btn-search:active {
    /*transform: translateY(0);*/
}

/* Responsive */
@media (max-width: 768px) {
    .form-row-2col {
        grid-template-columns: 1fr;
    }
}

/* Old form styles - remove or comment out */
.form-header,
.form-group,
.form-row,
.input-wrapper,
.btn-submit,
.trust-indicators {
    /* These are now unused */
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s ease infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    animation: scrollWheel 2s ease infinite;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, var(--gray-50), white, rgba(255, 237, 213, 0.3));
    position: relative;
    overflow: hidden;
}

.services-bg-decor::before,
.services-bg-decor::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
}

.services-bg-decor::before {
    top: 0;
    right: 0;
    background: rgba(245, 130, 31, 0.05);
}

.services-bg-decor::after {
    bottom: 0;
    left: 0;
    background: rgba(59, 130, 246, 0.05);
}

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background: rgba(245, 130, 31, 0.1);
    color: var(--orange-primary);
    border-radius: 50px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-badge.dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 4rem !important;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title.white {
    color: white;position: relative;
}

.gradient-text {
    background: linear-gradient(to right, var(--orange-primary), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.section-subtitle.white {
    color: var(--gray-300);position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.service-icon-glow {
    position: absolute;
    inset: 0;
    filter: blur(30px);
    opacity: 0.1;
}

.service-icon {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: #ff6b35;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(245, 130, 31, 0.2);
    transition: transform 0.3s ease;
}

.service-icon img {height: 30px;filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(106%) contrast(104%);}


.service-card:hover .service-icon {
    /*transform: rotate(360deg);*/
}

.service-title {
	font-size: 1.25rem;
	color: var(--gray-900);
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
	line-height: normal;
}
.service-card:hover .service-title {
    color: var(--orange-primary);
}

.service-description {
    color: var(--gray-600);
    line-height: 1.5;
}

.service-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--orange-primary);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    animation: arrowMove 1.5s ease infinite;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.rating-badge {
    top: -1.5rem;
    right: -1.5rem;
    animation: float 4s ease-in-out infinite;
}

.stars {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.experience-badge {
    bottom: -1.5rem;
    left: -1.5rem;
    background: linear-gradient(to bottom right, var(--orange-primary), #ff6b35);
    color: white;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.badge-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;line-height: normal;
}

.badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-image-glow {
    position: absolute;
    inset: -1.5rem;
    background: linear-gradient(to right, rgba(245, 130, 31, 0.2), rgba(255, 154, 51, 0.2));
    border-radius: 1.5rem;
    filter: blur(40px);
}

.about-image {
    position: relative;
    width: 100%;
    /*height: 500px;*/
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.about-content {
    padding: 0;
}

.about-text {
    margin: 2rem 0;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text-highlight {
    color: var(--orange-primary);
    font-weight: 600;
}

.info-box {
    background: linear-gradient(to right, rgba(255, 237, 213, 1), rgba(255, 237, 213, 0.5));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(245, 130, 31, 0.2);
}

.info-box p {margin-bottom:0;line-height: 1.6;}

.info-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 1.875rem;
    color: var(--orange-primary);
    font-weight: 700;
    margin-bottom: 0.2rem;line-height: normal;
}

.stat-label {
    color: var(--gray-600);line-height: normal;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--orange-primary), #ff6b35);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
	font-family: "Roboto",serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 130, 31, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(245, 130, 31, 0.5);
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.dark-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800), black);
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(var(--orange-primary) 1px, transparent 1px), 
                      linear-gradient(90deg, var(--orange-primary) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    top: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(245, 130, 31, 0.2);
    animation: pulse 8s ease-in-out infinite;
}

.orb-2 {
    bottom: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.2);
    animation: pulse 10s ease-in-out infinite;
    animation-delay: 2s;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(245, 130, 31, 0.5);
}

.step-number {
    position: absolute;
    top: -1.25rem;
    left: -1.25rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, var(--orange-primary), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 10;
    transition: transform 0.3s ease;
}

.step-card:hover .step-number {

}

.step-glow {
    position: absolute;
    inset: -4px;
    border-radius: 1rem;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-card:hover .step-glow {
    /*opacity: 0.3;
    background: linear-gradient(to right, var(--orange-primary), #ff6b35);*/
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.step-icon img {height: 36px;}

.step-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: var(--orange-primary);
}

.step-description {
    color: var(--gray-400);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.cta-text {
    color: var(--gray-400);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Leaders Section */
.leaders-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, rgba(255, 237, 213, 0.3), white, rgba(219, 234, 254, 0.3));
    position: relative;
    overflow: hidden;
}

.leaders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.leader-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.leader-card-glow {
    /*position: absolute;
    inset: -4px;
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.5s ease;*/
}

.leader-card:hover .leader-card-glow {
    /*opacity: 0.2;
    background: linear-gradient(to right, var(--orange-primary), #ff6b35);*/
}

.quote-icon-wrapper {
	position: relative;
	width: 4rem;
	height: 4rem;
	/* background: linear-gradient(to bottom right, rgba(255, 237, 213, 0.5), rgba(255, 237, 213, 1)); */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: start;
	/* margin-bottom: 1.5rem; */
}

.quote-icon {
    font-size: 2rem;
    color: var(--orange-primary);font-size: 6rem;
}

.leader-quote {
    position: relative;
    font-size: 1.125rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quote-mark-start,
.quote-mark-end {
    position: absolute;
    font-size: 3rem;
    color: rgba(245, 130, 31, 0.2);
}

.quote-mark-start {
    top: -1rem;
    left: -0.5rem;
}

.quote-mark-end {
    bottom: -2rem;
    right: -0.5rem;
}

.leader-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.leader-avatar-wrapper {
    position: relative;
}

.leader-avatar-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.5;
}

.leader-avatar {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.leader-name {
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.25rem;line-height: normal;display: flex;align-items: center;
}

.leader-name img {height: 20px;margin-left: 8px;display:block;}

.leader-position {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;line-height: normal;
}

.leader-company {
    font-size: 0.875rem;
    color: var(--orange-primary);
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    text-align: center;
    position: relative;
}

.feature-icon-wrapper {
    position: relative;
    margin: 0 auto 1.5rem;
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    opacity: 0.2;
}

.ring-1 {
    animation: pulseRing 2s ease infinite;
}

.ring-2 {
    animation: pulseRing 2s ease infinite 0.5s;
}

.feature-icon {
    position: relative;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-icon img {filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(106%) contrast(104%);height: 54px;}

.feature-card:hover .feature-icon {
    /*transform: scale(1.1) rotate(5deg);*/
}

.feature-icon.green {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.feature-icon.blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.feature-icon.purple {
    background: linear-gradient(to bottom right, #8b5cf6, #ec4899);
}

.feature-icon.orange {
    background: linear-gradient(to bottom right, var(--orange-primary), #ef4444);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: .6rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--orange-primary);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
    padding: 0 0.5rem;
}

.feature-line {
    height: 4px;
    width: 4rem;
    margin: 1.5rem auto 0;
    border-radius: 50px;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-line {
    width: 6rem;
}

.feature-line.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.feature-line.blue {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.feature-line.purple {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.feature-line.orange {
    background: linear-gradient(to right, var(--orange-primary), #ef4444);
}

.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(to right, var(--gray-50), rgba(255, 237, 213, 0.3));
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
}

.trust-stat {
    text-align: center;
}

.trust-stat-number {
    font-size: 1.875rem;
    color: var(--orange-primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trust-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--gray-300);
}

/* Megamax Section */
.megamax-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    animation: meshMove 10s ease-in-out infinite;
}

.megamax-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .megamax-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.megamax-content {
    color: white;
}

.megamax-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.megamax-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

@media (min-width: 768px) {
    .megamax-title {
        font-size: 3.75rem;
    }
}

.title-white {
    background: linear-gradient(to right, white, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-orange {
    background: linear-gradient(to right, var(--orange-primary), #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.megamax-text {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: scale(1.05);
}

.achievement-icon {
	font-size: 1.5rem;
	margin-bottom: 0.2rem;
	color: var(--orange-primary);
	line-height: normal;
}

.achievement-icon img {filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(106%) contrast(104%);height: 36px;}

.achievement-text {
    font-size: .9rem;
  color: #fff;
}

.megamax-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);font-family: "Roboto",serif;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.megamax-image-wrapper {
    position: relative;
}

.rotating-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: rotate 50s linear infinite;
}

.ring-outer {
    inset: -2rem;
    border-color: rgba(245, 130, 31, 0.2);
}

.ring-inner {
    inset: -1rem;
    border-color: rgba(59, 130, 246, 0.2);
    animation: rotate 40s linear infinite reverse;
}

.megamax-image-glow {
    position: absolute;
    inset: -1.5rem;
    background: linear-gradient(to right, rgba(245, 130, 31, 0.3), rgba(255, 154, 51, 0.3));
    border-radius: 1.5rem;
    filter: blur(60px);
}

.megamax-image {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.megamax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(245, 130, 31, 0.2), transparent, rgba(59, 130, 246, 0.2));
    border-radius: 1.5rem;
}

.megamax-years {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.megamax-years .badge-number {
    font-size: 2.5rem;
    color: var(--orange-primary);
}

.megamax-years .badge-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-primary) 0%, #ff6b35 100%);
    animation: gradientShift 5s ease-in-out infinite;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-glow-1 {
    top: 2.5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.1);
    animation: rotate 20s linear infinite;
}

.cta-glow-2 {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
    animation: rotate 25s linear infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    margin-bottom: 2rem;
    animation: float 2s ease-in-out infinite;
}

.cta-title {
    font-size: 3rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 4.5rem;
    }
}

.cta-title-highlight {
    position: relative;
    display: inline-block;
}

.cta-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--orange-primary);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);font-family: "Roboto",serif;
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;font-family: "Roboto",serif;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-checkmark {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86efac;
}

.trust-checkmark img {filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(106%) contrast(104%);height: 16px;}

.cta-buttons .btn-outline img {filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(106%) contrast(104%);height: 24px;display: block;}

.cta-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800), black);
    color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245, 130, 31, 0.5), transparent);
}

.footer-glow {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(245, 130, 31, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

.footer {
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-company {
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    position: relative;
}

.footer-logo-glow {
    position: absolute;
    inset: 0;
    background: var(--orange-primary);
    filter: blur(30px);
    opacity: 0.5;
}

.rotating-plane {
    position: relative;
    font-size: 1.875rem;
    color: var(--orange-primary);
    display: inline-block;
    /*animation: rotate 20s linear infinite;*/
}

.footer-logo-text {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.newsletter {
    margin-top: 1.5rem;
}

.newsletter-title {
    color: white;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem 0 0 0.5rem;
    color: white;
    font-size: .9rem;font-family: "Roboto",serif;
}

.newsletter-input::placeholder {
    color: var(--gray-500);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--orange-primary), #ff6b35);
    color: white;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 130, 31, 0.3);
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(245, 130, 31, 0.5);
}

.footer-column {
    position: relative;
    z-index: 10;
}

.footer-column-title {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 3rem;
    height: 2px;
    background: linear-gradient(to right, var(--orange-primary), var(--orange-primary));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;line-height: normal;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 0.75rem;margin-right: 4px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	line-height: normal;
}

.contact-icon {
    color: var(--orange-primary);
    font-size: 1.125rem;
    margin-top: 0;
    transition: transform 0.3s ease;
}

.contact-icon img {filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(106%) contrast(104%);width: 18px;display: block;}

.footer-contact li:hover .contact-icon {
    transform: scale(1.1);
}

.footer-contact a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--orange-primary);
}

.social-links {
    margin-top: 2rem;
}

.social-title {
    color: white;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon img {height: 20px;filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(254deg) brightness(106%) contrast(104%);}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-700), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
    text-align: center;
}

.heart {
    color: #ef4444;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.footer-bottom-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--orange-primary), transparent);
}

.header-content {position: relative;display: flex;align-items: center;}
.btn-cta {padding: 8px 16px;background: #0d8abc;color: #fff;border: none;border-radius: 6px;cursor: pointer;}
.user-menu {position: relative;}
.user-trigger {display: flex;align-items: center;gap: 8px;cursor: pointer;}
.avatar {width: 34px;height: 34px;border-radius: 50%;}
.username {font-weight: 500;color: #fff;}
.dropdown-menu {position: absolute;right: 0;top: 48px;width: 180px;background: #fff;border-radius: 8px;box-shadow: 0 10px 25px rgba(0,0,0,0.12);overflow: hidden;z-index: 99;}
.dropdown-menu a {display: block;padding: 10px 14px;text-decoration: none;color: #333;font-size: 14px;}
.dropdown-menu a:hover {background: #f4f4f4;}
.dropdown-menu .logout {color: #e53935;}


/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .megamax-title {
        font-size: 2.5rem;
    }
}
.headerbg {background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px);box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);padding: 0;}
@media(max-width:767px){
	.footer-divider {margin: 0;}
	.footer {padding: 2rem 0 0;}
	.footer-grid {gap: 1.6rem;}
	.footer-description {line-height: 1.6;}
	
	
}