@import url(//fonts.googleapis.com/css?family=Roboto:300,400,500);

body {
    font-family: "Roboto", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

i.fa {
    margin-right: 5px;
}

header {
    background-color: #95cc314d;
}

#about {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .features-img {
        width: 300px;
    }
}

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Header: Asymmetric Split Navigation with Floating Card Design */
.main-header-cosmic {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(10, 10, 20, 0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header-cosmic.scrolled {
background: rgba(10, 10, 20, 0.95);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
border-bottom-color: rgba(138, 43, 226, 0.3);
}

.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
min-height: 85px;
}

/* Brand Section with Animated Orb */
.brand-wrapper {
position: relative;
z-index: 10;
}

.brand-link {
display: flex;
align-items: center;
gap: 0.875rem;
text-decoration: none;
transition: all 0.3s ease;
}

.brand-link:hover {
transform: translateX(4px);
}

.brand-orb {
width: 42px;
height: 42px;
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
border-radius: 50%;
position: relative;
overflow: hidden;
box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.brand-orb::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
animation: shimmer 3s infinite;
}

@keyframes shimmer {
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand-text {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.02em;
}

/* Desktop Navigation - Floating Card Style */
.nav-desktop {
display: none;
}

.nav-list {
display: flex;
align-items: center;
gap: 0.5rem;
list-style: none;
margin: 0;
padding: 0;
}

.nav-item {
position: relative;
}

.nav-link {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.25rem;
color: #e0e0ff;
text-decoration: none;
font-size: 1rem;
font-weight: 500;
background: transparent;
border: none;
cursor: pointer;
position: relative;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 12px;
}

.nav-link:hover {
color: #ffffff;
background: rgba(138, 43, 226, 0.15);
}

.link-text {
position: relative;
z-index: 1;
}

.link-underline {
position: absolute;
bottom: 8px;
left: 1.25rem;
right: 1.25rem;
height: 2px;
background: linear-gradient(90deg, #8a2be2 0%, #ff1493 100%);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .link-underline {
transform: scaleX(1);
transform-origin: left;
}

/* CTA Link Special Styling */
.nav-cta {
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
color: #ffffff;
border-radius: 50px;
padding: 0.75rem 1.75rem;
position: relative;
overflow: hidden;
}

.nav-cta:hover {
background: linear-gradient(135deg, #9a3bf2 0%, #ff2fa3 100%);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.nav-cta .link-underline {
display: none;
}

.cta-glow {
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.5s ease;
}

.nav-cta:hover .cta-glow {
left: 100%;
}

/* Dropdown Styling */
.dropdown-arrow {
transition: transform 0.3s ease;
}

.dropdown-trigger.active .dropdown-arrow {
transform: rotate(180deg);
}

.dropdown-menu-new {
position: absolute;
top: calc(100% + 8px);
left: 50%;
transform: translateX(-50%) translateY(-10px);
background: rgba(20, 20, 35, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(138, 43, 226, 0.3);
border-radius: 16px;
min-width: 220px;
opacity: 0;
visibility: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dropdown-menu-new.active {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
padding: 0.75rem;
}

.dropdown-link {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.875rem 1rem;
color: #e0e0ff;
text-decoration: none;
font-size: 0.9375rem;
border-radius: 10px;
transition: all 0.2s ease;
}

.dropdown-link:hover {
background: rgba(138, 43, 226, 0.2);
color: #ffffff;
transform: translateX(4px);
}

.dropdown-icon {
font-size: 1.125rem;
color: #8a2be2;
transition: transform 0.2s ease;
}

.dropdown-link:hover .dropdown-icon {
transform: translateX(4px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 44px;
height: 44px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 1001;
transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
background: rgba(138, 43, 226, 0.15);
border-radius: 10px;
}

.hamburger-line {
width: 26px;
height: 2px;
background: #ffffff;
border-radius: 2px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}

.hamburger-line:not(:last-child) {
margin-bottom: 6px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
opacity: 0;
transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(10, 10, 20, 0.98);
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-mobile {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 6rem 2rem 2rem;
position: relative;
}

.mobile-nav-list {
list-style: none;
margin: 0;
padding: 0;
width: 100%;
max-width: 500px;
}

.mobile-nav-item {
opacity: 0;
transform: translateX(-30px);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-item {
opacity: 1;
transform: translateX(0);
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link {
display: flex;
align-items: center;
gap: 1.25rem;
padding: 1.25rem 1.5rem;
color: #e0e0ff;
text-decoration: none;
font-size: 1.5rem;
font-weight: 600;
background: transparent;
border: none;
width: 100%;
text-align: left;
cursor: pointer;
border-radius: 16px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.mobile-nav-link::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(180deg, #8a2be2 0%, #ff1493 100%);
transform: scaleY(0);
transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
background: rgba(138, 43, 226, 0.1);
color: #ffffff;
padding-left: 2rem;
}

.mobile-nav-link:hover::before {
transform: scaleY(1);
}

.mobile-link-number {
font-size: 1rem;
color: #8a2be2;
font-weight: 700;
min-width: 32px;
}

.mobile-link-text {
flex: 1;
}

/* Mobile Dropdown Arrow */
.mobile-dropdown-arrow {
transition: transform 0.3s ease;
margin-left: auto;
}

.mobile-dropdown-trigger.active .mobile-dropdown-arrow {
transform: rotate(180deg);
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu-new {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding-left: 3rem;
}

.mobile-dropdown-menu-new.active {
max-height: 300px;
}

.mobile-dropdown-link {
display: block;
padding: 0.875rem 1rem;
color: #b0b0d0;
text-decoration: none;
font-size: 1.125rem;
font-weight: 500;
border-radius: 10px;
transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
background: rgba(138, 43, 226, 0.15);
color: #ffffff;
padding-left: 1.5rem;
}

/* Mobile CTA Styling */
.mobile-nav-cta {
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
color: #ffffff;
margin-top: 1rem;
border-radius: 50px;
}

.mobile-nav-cta:hover {
background: linear-gradient(135deg, #9a3bf2 0%, #ff2fa3 100%);
box-shadow: 0 10px 40px rgba(138, 43, 226, 0.5);
}

/* Mobile Navigation Decoration */
.mobile-nav-decoration {
position: fixed;
bottom: 2rem;
right: 2rem;
pointer-events: none;
}

.decoration-circle {
width: 200px;
height: 200px;
border-radius: 50%;
background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
filter: blur(40px);
}

.decoration-line {
position: absolute;
top: 50%;
left: 50%;
width: 300px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
transform: translate(-50%, -50%) rotate(-45deg);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
overflow: hidden;
}

/* Desktop Navigation Display */
@media (min-width: 992px) {
.nav-desktop {
    display: block;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-nav-overlay {
    display: none;
}
}

/* Tablet Responsive */
@media (max-width: 991px) and (min-width: 768px) {
.header-container {
    padding: 0 1.5rem;
}

.mobile-nav-link {
    font-size: 1.75rem;
}
}

/* Mobile Responsive */
@media (max-width: 767px) {
.header-container {
    padding: 0 1.25rem;
    min-height: 70px;
}

.brand-orb {
    width: 36px;
    height: 36px;
}

.brand-text {
    font-size: 1.25rem;
}

.mobile-nav-link {
    font-size: 1.25rem;
    padding: 1rem 1rem;
    gap: 1rem;
}

.mobile-link-number {
    font-size: 0.875rem;
    min-width: 28px;
}

.mobile-dropdown-menu-new {
    padding-left: 2.5rem;
}

.mobile-dropdown-link {
    font-size: 1rem;
    padding: 0.75rem 0.75rem;
}

.decoration-circle {
    width: 150px;
    height: 150px;
}

.decoration-line {
    width: 200px;
}
}

/* Small Mobile */
@media (max-width: 480px) {
.header-container {
    padding: 0 1rem;
}

.brand-text {
    font-size: 1.125rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    padding: 0.875rem 0.875rem;
}
}
/* Hero Asymmetric Split Design - Unique ID: hero-asym-split-2x9 */
.hero-asym-split-2x9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* Background Layer */
.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(236, 72, 153, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Animated Shapes */
.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    33% {
    transform: translate(50px, -50px) scale(1.1);
    }
    66% {
    transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Content Container */
.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: center;
}

/* Text Column */
.hero-text-column {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.badge-icon {
    color: #6366f1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
    opacity: 1;
    transform: scale(1);
    }
    50% {
    opacity: 0.7;
    transform: scale(1.1);
    }
}

.hero-main-heading {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: #cbd5e1;
    font-weight: 400;
    max-width: 600px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: transparent;
}

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

.trust-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* Visual Column */
.hero-visual-column {
    position: relative;
    height: 600px;
}

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: floatCard1 6s ease-in-out infinite;
}

.hero-card-2 {
    top: 180px;
    right: 0;
    width: 260px;
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 0;
    left: 60px;
    width: 270px;
    animation: floatCard3 8s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floatCard1 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes floatCard2 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-25px) rotate(-2deg);
    }
}

@keyframes floatCard3 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-15px) rotate(1deg);
    }
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.card-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.hero-decorative-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.2);
    z-index: -1;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from {
    transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
    transform: translate(-50%, -50%) rotate(360deg);
    }
}



/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-text-column {
    padding-right: 0;
    text-align: center;
    }
    
    .hero-badge {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-trust-indicators {
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 500px;
    margin: 0 auto;
    max-width: 500px;
    }
    
    .hero-card-1 {
    width: 240px;
    }
    
    .hero-card-2 {
    width: 220px;
    top: 150px;
    }
    
    .hero-card-3 {
    width: 230px;
    left: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content-container {
    padding: 6rem 1.5rem 4rem;
    }
    
    .hero-main-heading {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    }
    
    .trust-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    }
    
    .hero-visual-column {
    height: 400px;
    }
    
    .hero-floating-card {
    padding: 1.25rem;
    }
    
    .hero-card-1 {
    width: 200px;
    top: 0;
    left: 0;
    }
    
    .hero-card-2 {
    width: 180px;
    top: 120px;
    right: 0;
    }
    
    .hero-card-3 {
    width: 190px;
    bottom: 0;
    left: 20px;
    }
    
    .card-title {
    font-size: 1.125rem;
    }
    
    .card-description {
    font-size: 0.875rem;
    }
    
    .card-icon-wrapper {
    width: 52px;
    height: 52px;
    }
    
    .hero-decorative-circle {
    width: 350px;
    height: 350px;
    }
    
    .shape-1 {
    width: 300px;
    height: 300px;
    }
    
    .shape-2 {
    width: 250px;
    height: 250px;
    }
    
    .shape-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-main-heading {
    font-size: 2rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items:center;
}
    
    .hero-btn {
    width: 80%;
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .hero-card-1 {
    width: 160px;
    }
    
    .hero-card-2 {
    width: 150px;
    top: 100px;
    }
    
    .hero-card-3 {
    width: 155px;
    left: 10px;
    }

}
/* Futures Block - Diagonal Split Grid with Gradient Accents */
.futures-block-zx89 {
    position: relative;
    padding: 8rem 0 10rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.futures-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.futures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Future Cards */
.future-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.future-card-1 {
    transform: translateY(3rem);
}

.future-card-2 {
    transform: translateY(0);
}

.future-card-3 {
    transform: translateY(3rem);
}

.future-card:hover {
    transform: translateY(-1rem) !important;
}

.future-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.future-card:hover .future-card-inner {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Image Wrapper */
.future-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.future-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
}

.future-image img,
.future-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.future-card:hover .future-image img,
.future-card:hover .future-image svg {
    transform: scale(1.08);
}

/* Image Accent Backgrounds */
.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.future-card:hover .image-accent {
    opacity: 0.25;
    transform: scale(1.05);
}

.accent-coral {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #f06292 100%);
}

.accent-lime {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 50%, #06d6a0 100%);
}

.accent-cyan {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #7b68ee 100%);
}

/* Content */
.future-content {
    position: relative;
    z-index: 2;
}

.future-header {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.future-card-1:hover .future-header {
    color: #ff6b6b;
}

.future-card-2:hover .future-header {
    color: #a8e063;
}

.future-card-3:hover .future-header {
    color: #00d4ff;
}

.future-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Background Decorations */
.futures-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.decoration-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #ff6b6b;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: #a8e063;
    top: 30%;
    right: -10%;
    animation-delay: 7s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: #00d4ff;
    bottom: -15%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes blob-float {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    33% {
    transform: translate(30px, -30px) scale(1.05);
    }
    66% {
    transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .futures-grid {
    gap: 2.5rem;
    }
    
    .future-card-inner {
    padding: 2rem;
    }
}

@media (max-width: 992px) {
    .futures-block-zx89 {
    padding: 6rem 0 7rem;
    }
    
    .futures-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .future-card-1,
    .future-card-2,
    .future-card-3 {
    transform: translateY(0) !important;
    }
    
    .future-image-wrapper {
    height: 200px;
    }
    
    .future-header {
    font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .futures-block-zx89 {
    padding: 5rem 0 6rem;
    }
    
    .futures-container {
    padding: 0 1.5rem;
    }
    
    .future-card-inner {
    padding: 1.75rem;
    }
    
    .future-image-wrapper {
    height: 180px;
    margin-bottom: 1.5rem;
    }
    
    .future-header {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    }
    
    .future-text {
    font-size: 1rem;
    }
    
    .decoration-blob {
    filter: blur(60px);
    }
    
    .blob-1,
    .blob-2,
    .blob-3 {
    width: 300px;
    height: 300px;
    }
}

@media (max-width: 576px) {
    .futures-grid {
    gap: 2rem;
    }
    
    .future-card-inner {
    padding: 1.5rem;
    border-radius: 20px;
    }
    
    .future-image-wrapper {
    height: 160px;
    border-radius: 15px;
    }
    
    .future-header {
    font-size: 1.25rem;
    }
    
    .future-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}
/* Testimonials Section - Carousel Style with Gradient Avatars */
.testimonials-section-zx9k {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-zx9k::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section-zx9k::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-header-zx9k {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-title-zx9k {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-carousel-wrapper-zx9k {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-carousel-zx9k {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card-zx9k {
    position: absolute;
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.testimonial-card-zx9k.testimonial-active-zx9k {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    z-index: 2;
}

.testimonial-card-zx9k:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    transform: scale(1.02) translateY(-5px);
}

.testimonial-avatar-wrapper-zx9k {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.testimonial-avatar-zx9k {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transition: all 0.4s ease;
}

.testimonial-card-zx9k:hover .testimonial-avatar-zx9k {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

.testimonial-content-zx9k {
    text-align: center;
    position: relative;
}

.testimonial-quote-icon-zx9k {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.testimonial-text-zx9k {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 2rem 0;
    font-weight: 400;
    font-style: italic;
}

.testimonial-name-zx9k {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.01em;
}

.testimonials-navigation-zx9k {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.testimonial-nav-btn-zx9k {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-nav-btn-zx9k:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.testimonial-nav-btn-zx9k:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.testimonials-pagination-zx9k {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.pagination-dot-zx9k {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.pagination-dot-zx9k:hover {
    background: #a0aec0;
    transform: scale(1.2);
}

.pagination-dot-zx9k.pagination-dot-active-zx9k {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 32px;
    border-radius: 6px;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-title-zx9k {
    font-size: 2.75rem;
    }

    .testimonial-card-zx9k {
    padding: 2.5rem 2rem;
    }

    .testimonial-text-zx9k {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section-zx9k {
    padding: 5rem 0;
    }

    .testimonials-title-zx9k {
    font-size: 2.25rem;
    }

    .testimonials-header-zx9k {
    margin-bottom: 3rem;
    }

    .testimonials-carousel-zx9k {
    min-height: 500px;
    }

    .testimonial-card-zx9k {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }

    .testimonial-avatar-zx9k {
    width: 75px;
    height: 75px;
    }

    .testimonial-text-zx9k {
    font-size: 1.0625rem;
    line-height: 1.7;
    }

    .testimonial-name-zx9k {
    font-size: 1.1875rem;
    }

    .testimonial-nav-btn-zx9k {
    width: 44px;
    height: 44px;
    }

    .testimonials-navigation-zx9k {
    gap: 1.5rem;
    margin-top: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section-zx9k {
    padding: 4rem 0;
    }

    .testimonials-title-zx9k {
    font-size: 1.875rem;
    }

    .testimonials-carousel-wrapper-zx9k {
    padding: 0 0.5rem;
    }

    .testimonials-carousel-zx9k {
    min-height: 550px;
    }

    .testimonial-card-zx9k {
    padding: 1.75rem 1.25rem;
    }

    .testimonial-avatar-zx9k {
    width: 65px;
    height: 65px;
    }

    .testimonial-text-zx9k {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

    .testimonial-name-zx9k {
    font-size: 1.0625rem;
    }

    .testimonials-navigation-zx9k {
    gap: 1rem;
    margin-top: 2rem;
    }

    .testimonial-nav-btn-zx9k {
    width: 40px;
    height: 40px;
    }

    .pagination-dot-zx9k {
    width: 10px;
    height: 10px;
    }

    .pagination-dot-zx9k.pagination-dot-active-zx9k {
    width: 26px;
    }
}

/* Fallback for no-js */
.no-js .testimonial-card-zx9k {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: all;
    margin-bottom: 2rem;
}

.no-js .testimonials-carousel-zx9k {
    min-height: auto;
    display: block;
}

.no-js .testimonials-navigation-zx9k {
    display: none;
}
/* Services Showcase Block - Floating Card Grid Design */
.services-showcase-block {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #fef3c7 0%, #fce7f3 35%, #ddd6fe 70%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.services-showcase-block::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-showcase-block::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-showcase-block .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Header Section */
.services-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.services-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 50%, #6b7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4 0%, #ec4899 50%, #8b5cf6 100%);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}

.services-title-accent::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

/* Services Grid */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

/* Service Card Base */
.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
}

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

/* Unique Card Variations */
.service-card-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

.service-card-2 {
    background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 100%);
}

.service-card-3 {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.service-card-4 {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.service-card-5 {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.service-card-6 {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

/* Icon Wrapper */
.service-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 0 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Service Title */
.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Service Description */
.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 2rem 0;
    min-height: 80px;
}

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.service-btn:hover::before {
    width: 300px;
    height: 300px;
}

.service-btn:focus {
    outline: 3px solid rgba(6, 182, 212, 0.4);
    outline-offset: 3px;
}

.service-btn::after {
    content: '→';
    margin-left: 0.5rem;
    transition: margin-left 0.3s ease;
}

.service-btn:hover::after {
    margin-left: 0.875rem;
}

/* Specific Button Color Variations */
.service-card-1 .service-btn {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.service-card-2 .service-btn {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.service-card-3 .service-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.service-card-4 .service-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.service-card-5 .service-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-card-6 .service-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    
    .services-main-title {
    font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-showcase-block {
    padding: 5rem 0 6rem;
    }
    
    .services-header-wrapper {
    margin-bottom: 3.5rem;
    }
    
    .services-main-title {
    font-size: 2.5rem;
    }
    
    .services-grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
    
    .service-card {
    padding: 2.5rem 2rem;
    }
    
    .service-title {
    font-size: 1.5rem;
    }
    
    .service-description {
    font-size: 1rem;
    min-height: auto;
    }
    
    .service-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-showcase-block {
    padding: 4rem 0 5rem;
    }
    
    .services-main-title {
    font-size: 2rem;
    }
    
    .service-card {
    padding: 2rem 1.5rem;
    }
    
    .service-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    }
}
/* FAQ Section: Pure CSS Accordion with Vibrant Gradient Cards */
.faq-section-vt82 {
    padding: 7rem 0;
    background: linear-gradient(165deg, #f0f4ff 0%, #fef3f8 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-vt82::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-vt82::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 168, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-vt82 .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.faq-header-wrap {
    text-align: center;
    margin-bottom: 4.5rem;
}

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-accordion-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.faq-item-card:hover {
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.3);
}

.faq-checkbox {
    display: none;
}

.faq-question-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
    gap: 1.5rem;
}

.faq-question-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1 0%, #ec4899 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-checkbox:checked + .faq-question-label::before {
    transform: scaleY(1);
}

.faq-question-label:hover {
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.05) 0%, rgba(249, 168, 212, 0.05) 100%);
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-checkbox:checked + .faq-question-label .faq-question-text {
    color: #6366f1;
}

.faq-icon-toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f4ff 0%, #fef3f8 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-icon-toggle svg {
    position: absolute;
    color: #6366f1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-checkbox:checked + .faq-question-label .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-checkbox:checked + .faq-question-label .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-checkbox:checked + .faq-question-label .faq-icon-toggle {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
}

.faq-checkbox:checked + .faq-question-label .faq-icon-toggle svg {
    color: #ffffff;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-checkbox:checked ~ .faq-answer-wrapper {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-checkbox:checked ~ .faq-answer-wrapper .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

/* Focus States for Accessibility */
.faq-checkbox:focus + .faq-question-label {
    outline: 3px solid rgba(99, 102, 241, 0.4);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-vt82 {
    padding: 5rem 0;
    }

    .faq-main-title {
    font-size: 2.25rem;
    }

    .faq-header-wrap {
    margin-bottom: 3rem;
    }

    .faq-accordion-grid {
    gap: 1rem;
    }

    .faq-item-card {
    border-radius: 18px;
    }

    .faq-question-label {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
    }

    .faq-question-text {
    font-size: 1.125rem;
    }

    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    }

    .faq-icon-toggle svg {
    width: 20px;
    height: 20px;
    }

    .faq-answer-content {
    padding: 0 1.25rem 1.5rem 1.25rem;
    }

    .faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-vt82 {
    padding: 4rem 0;
    }

    .faq-main-title {
    font-size: 1.875rem;
    }

    .faq-question-label {
    padding: 1rem 1rem;
    }

    .faq-question-text {
    font-size: 1rem;
    }

    .faq-answer-content p {
    font-size: 0.9375rem;
    }
}
/* Contact Form Block - Modern Floating Design */
.contact-form-block-kx9 {
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-block-kx9::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-block-kx9::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-block-kx9 .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.form-wrapper-inner {
    background: #ffffff;
    border-radius: 32px;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-wrapper-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 32px 32px 0 0;
}

.form-header-area {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-contact {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group-item {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-label-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.01em;
    padding-left: 0.25rem;
}

.form-input-control,
.form-textarea-control {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input-control::placeholder,
.form-textarea-control::placeholder {
    color: #94a3b8;
}

.form-input-control:hover,
.form-textarea-control:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.form-input-control:focus,
.form-textarea-control:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

.form-input-control:active,
.form-textarea-control:active {
    transform: translateY(0);
}

.form-textarea-control {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.375rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 4px 8px rgba(99, 102, 241, 0.15);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35), 0 6px 12px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25), 0 2px 6px rgba(99, 102, 241, 0.15);
}

.form-submit-btn:focus {
    outline: none;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.btn-arrow-icon {
    display: inline-block;
    font-size: 1.375rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit-btn:hover .btn-arrow-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-block-kx9 {
    padding: 5rem 0;
    }
    
    .form-wrapper-inner {
    padding: 3rem 2rem;
    border-radius: 24px;
    }
    
    .form-header-area {
    margin-bottom: 2.5rem;
    }
    
    .section-title-contact {
    font-size: 2rem;
    }
    
    .contact-form-main {
    gap: 1.5rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 12px;
    }
    
    .form-submit-btn {
    padding: 1.25rem 1.75rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-block-kx9 {
    padding: 4rem 0;
    }
    
    .form-wrapper-inner {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-header-area {
    margin-bottom: 2rem;
    }
    
    .contact-form-main {
    gap: 1.25rem;
    }
    
    .form-label-text {
    font-size: 0.875rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    }
    
    .form-submit-btn {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    gap: 0.625rem;
    }
    
    .btn-arrow-icon {
    font-size: 1.25rem;
    }
}
/* Contact Information Block: Asymmetric Split with Coral & Turquoise Gradient */
.contact-info-block-xyz {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #fff5f7 0%, #e0f7fa 50%, #f3e5f5 100%);
    overflow: hidden;
}

.contact-info-block-xyz::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-block-xyz::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(0, 188, 212, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-main-header {
    font-size: 3.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.header-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b81 0%, #00bcd4 100%);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.header-accent-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ffd93d;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 217, 61, 0.2);
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: start;
}

.contact-details-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b81 0%, #00bcd4 100%);
    transform: translateX(-6px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    transform: translateX(0);
}

.contact-card-address {
    background: linear-gradient(135deg, #fff9f9 0%, #ffffff 100%);
}

.contact-card-phone {
    background: linear-gradient(135deg, #f0fdff 0%, #ffffff 100%);
}

.contact-card-email {
    background: linear-gradient(135deg, #fef9ff 0%, #ffffff 100%);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.icon-address {
    background: linear-gradient(135deg, #ff6b81 0%, #ff8fa3 100%);
    color: #ffffff;
}

.icon-phone {
    background: linear-gradient(135deg, #00bcd4 0%, #26c6da 100%);
    color: #ffffff;
}

.icon-email {
    background: linear-gradient(135deg, #ce93d8 0%, #e1bee7 100%);
    color: #ffffff;
}

.contact-card:hover .contact-icon-wrapper {
    transform: rotate(-8deg) scale(1.05);
}

.contact-icon {
    width: 32px;
    height: 32px;
}

.contact-card-content {
    flex: 1;
    padding-top: 0.5rem;
}

.contact-detail-text {
    font-size: 1.25rem;
    color: #2c3e50;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.contact-phone-link {
    color: #00897b;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00bcd4;
    transition: width 0.3s ease;
}

.contact-phone-link:hover {
    color: #00bcd4;
}

.contact-phone-link:hover::after {
    width: 100%;
}

.contact-map-column {
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 4px solid #ffffff;
}

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

.map-decorative-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}

.map-corner-tl {
    top: -4px;
    left: -4px;
    border-top: 6px solid #ff6b81;
    border-left: 6px solid #ff6b81;
    border-top-left-radius: 32px;
}

.map-corner-br {
    bottom: -4px;
    right: -4px;
    border-bottom: 6px solid #00bcd4;
    border-right: 6px solid #00bcd4;
    border-bottom-right-radius: 32px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-main-header {
    font-size: 3rem;
    }
    
    .map-wrapper {
    height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-info-block-xyz {
    padding: 5rem 0 6rem;
    }
    
    .contact-container {
    padding: 0 1.5rem;
    }
    
    .contact-header-wrapper {
    margin-bottom: 3.5rem;
    }
    
    .contact-main-header {
    font-size: 2.5rem;
    }
    
    .contact-card {
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-radius: 20px;
    }
    
    .contact-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    }
    
    .contact-icon {
    width: 28px;
    height: 28px;
    }
    
    .contact-detail-text {
    font-size: 1.125rem;
    }
    
    .map-wrapper {
    height: 380px;
    border-radius: 24px;
    }
    
    .map-decorative-corner {
    width: 60px;
    height: 60px;
    }
}

@media (max-width: 576px) {
    .contact-info-block-xyz {
    padding: 4rem 0 5rem;
    }
    
    .contact-main-header {
    font-size: 2rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .header-accent-line::after {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 6px rgba(255, 217, 61, 0.2);
    }
    
    .contact-card {
    padding: 1.75rem 1.25rem;
    gap: 1rem;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-detail-text {
    font-size: 1rem;
    }
    
    .map-wrapper {
    height: 320px;
    border-radius: 20px;
    }
}
/* Modern Minimalist Footer with Gradient Accent */
.footer-block-modern {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Company Info Section */
.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-icon {
    flex-shrink: 0;
    color: #667eea;
    margin-top: 0.125rem;
}

.footer-address {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.footer-phone {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-phone::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.footer-phone:hover {
    color: #667eea;
}

.footer-phone:hover::after {
    width: 100%;
}

.footer-phone:focus {
    outline: 2px solid #667eea;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Navigation Section */
.footer-navigation {
    display: flex;
    justify-content: flex-end;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 200px));
    gap: 3rem;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-nav-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #667eea;
    margin: 0;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link {
    font-size: 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #667eea;
    padding-left: 1.5rem;
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Footer Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #cbd5e0 50%, transparent 100%);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Decorative Gradient Accent */
.footer-gradient-accent {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-container,
.footer-bottom {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    }

    .footer-navigation {
    justify-content: flex-start;
    }

    .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-block-modern {
    padding: 4rem 0 2rem;
    }

    .footer-container {
    padding: 0 1.5rem;
    gap: 2.5rem;
    }

    .footer-brand {
    font-size: 1.75rem;
    }

    .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

    .footer-gradient-accent {
    width: 300px;
    height: 300px;
    top: -5%;
    right: -15%;
    }

    .footer-bottom {
    margin-top: 2rem;
    padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer-block-modern {
    padding: 3rem 0 1.5rem;
    }

    .footer-container {
    padding: 0 1rem;
    }

    .footer-brand {
    font-size: 1.5rem;
    }

    .footer-contact-item {
    flex-direction: column;
    gap: 0.5rem;
    }

    .footer-address,
    .footer-phone,
    .footer-link {
    font-size: 0.9375rem;
    }

    .footer-nav-title {
    font-size: 0.8125rem;
    }

    .footer-copyright {
    font-size: 0.8125rem;
    }
}
