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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #90767f4d;
}

#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 Wave Block: Asymmetric Pink-Orange Gradient Design */
.hero-wave-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(165deg, #ff0a78 0%, #ff6b35 35%, #ffa07a 70%, #ffcdb2 100%);
}

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: grayscale(100%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 10, 120, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%);
}

/* Floating Background Shapes */
.hero-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    animation: heroFloat 20s ease-in-out infinite;
}

.float-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.float-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.float-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.float-shape.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: -8%;
    animation-delay: 15s;
    animation-duration: 28s;
}

@keyframes heroFloat {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    }
    25% {
    transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
    transform: translate(-20px, 40px) rotate(180deg);
    }
    75% {
    transform: translate(40px, 20px) rotate(270deg);
    }
}

/* Header Navigation */
.hero-header-nav {
    position: relative;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.hero-logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-logo-icon {
    width: 50px;
    height: 50px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-icon:hover {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.5));
}

/* Hamburger Menu */
.hero-menu-checkbox {
    display: none;
}

.hero-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
    position: relative;
}

.hero-ham-line {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-menu-checkbox:checked ~ .hero-hamburger .hero-ham-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ffffff;
}

.hero-menu-checkbox:checked ~ .hero-hamburger .hero-ham-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hero-menu-checkbox:checked ~ .hero-hamburger .hero-ham-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ffffff;
}

/* Navigation Menu */
.hero-nav-menu {
    display: flex;
    align-items: center;
}

.hero-nav-backdrop {
    display: none;
}

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

.hero-nav-item {
    position: relative;
}

.hero-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero-nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-nav-link:hover::before {
    width: 80%;
}

.hero-nav-link:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Badge Pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    width: fit-content;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: heroPulseGlow 3s ease-in-out infinite;
}

@keyframes heroPulseGlow {
    0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.hero-badge-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

/* Main Title */
.hero-main-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroSlideUp {
    from {
    opacity: 0;
    transform: translateY(40px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* Title Decoration */
.hero-title-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: heroFadeIn 1.2s ease 0.3s both;
}

@keyframes heroFadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
}

.hero-deco-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.hero-deco-star {
    width: 32px;
    height: 32px;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    animation: heroRotateStar 10s linear infinite;
}

@keyframes heroRotateStar {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 600px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.hero-btn-primary {
    background: #ffffff;
    color: #ff0a78;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #fff5f8;
}

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

.hero-btn-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-trust-item {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-trust-item:hover {
    transform: translateY(-6px) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-trust-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

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

.hero-floating-card {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroCardFloat 6s ease-in-out infinite;
}

.hero-floating-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-floating-card:hover::before {
    opacity: 1;
}

.hero-card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 45%;
    right: 15%;
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

.hero-card-3 {
    bottom: 5%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero-floating-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-floating-card:hover .hero-card-glow {
    opacity: 1;
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-floating-card:hover .hero-card-icon {
    transform: scale(1.15) rotate(10deg);
}

/* Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    color: #ffffff;
    opacity: 0.15;
}

.hero-wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-visual-column {
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
    }
    
    .hero-main-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .hero-floating-card {
    width: 150px;
    height: 150px;
    }
    
    .hero-card-2 {
    width: 160px;
    height: 160px;
    }
}

@media (max-width: 768px) {
    .hero-hamburger {
    display: flex;
    }
    
    .hero-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(165deg, #ff0a78 0%, #ff6b35 100%);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
    z-index: 105;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu {
    right: 0;
    }
    
    .hero-nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 100;
    backdrop-filter: blur(4px);
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-backdrop {
    opacity: 1;
    visibility: visible;
    }
    
    .hero-nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    }
    
    .hero-nav-item {
    opacity: 0;
    transform: translateX(40px);
    animation: heroSlideInMenu 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(1) {
    animation-delay: 0.1s;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(2) {
    animation-delay: 0.2s;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(3) {
    animation-delay: 0.3s;
    }
    
    @keyframes heroSlideInMenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    .hero-nav-link {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    }
    
    .hero-nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    }
    
    .hero-nav-link::before {
    display: none;
    }
    
    .hero-content-wrapper {
    padding: 2rem 0 4rem;
    }
    
    .hero-text-column {
    text-align: center;
    align-items: center;
    }
    
    .hero-subtitle {
    max-width: 100%;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-trust-badges {
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .hero-floating-card {
    width: 120px;
    height: 120px;
    }
    
    .hero-card-2 {
    width: 140px;
    height: 140px;
    }
    
    .hero-card-icon {
    width: 60px;
    height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-nav-container {
    padding: 0 1rem;
    }
    
    .hero-content-container {
    padding: 0 1rem;
    }
    
    .hero-main-title {
    font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-badges {
    gap: 1rem;
    }
    
    .hero-trust-item {
    width: 48px;
    height: 48px;
    }
    
    .hero-trust-icon {
    width: 28px;
    height: 28px;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .hero-floating-card {
    width: 100px;
    height: 100px;
    }
    
    .hero-card-2 {
    width: 120px;
    height: 120px;
    }
    
    .hero-card-icon {
    width: 50px;
    height: 50px;
    }
    
    .float-shape {
    width: 150px !important;
    height: 150px !important;
    }
}
/* Features Chess Grid - Organic Shapes with Vibrant Colors */
.features-chess-grid {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 50%, #fff0e6 100%);
    position: relative;
    overflow: hidden;
}

.features-chess-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 8s ease-in-out infinite;
}

.features-chess-grid::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 10s ease-in-out infinite reverse;
}

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

.features-chess-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Chess pattern - alternating positions */
.feature-card-1 {
    transform: translateY(0);
    border-color: rgba(255, 107, 129, 0.3);
}

.feature-card-1:hover {
    border-color: #ff6b81;
    transform: translateY(-12px) scale(1.02);
}

.feature-card-2 {
    transform: translateY(40px);
    border-color: rgba(126, 214, 223, 0.3);
}

.feature-card-2:hover {
    border-color: #7ed6df;
    transform: translateY(28px) scale(1.02);
}

.feature-card-3 {
    transform: translateY(0);
    border-color: rgba(255, 193, 7, 0.3);
}

.feature-card-3:hover {
    border-color: #ffc107;
    transform: translateY(-12px) scale(1.02);
}

/* Organic blob backgrounds */
.feature-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
    opacity: 0.08;
    transition: all 0.6s ease;
    z-index: 1;
}

.blob-1 {
    background: #ff6b81;
    border-radius: 42% 58% 70% 30% / 45% 65% 35% 55%;
    animation: morph-blob-1 10s ease-in-out infinite;
}

.blob-2 {
    background: #7ed6df;
    border-radius: 58% 42% 30% 70% / 55% 35% 65% 45%;
    animation: morph-blob-2 12s ease-in-out infinite;
}

.blob-3 {
    background: #ffc107;
    border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
    animation: morph-blob-3 11s ease-in-out infinite;
}

@keyframes morph-blob-1 {
    0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 65% 35% 55%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 65% 35% 50% 50% / 40% 60% 40% 60%;
    transform: rotate(120deg) scale(1.1);
    }
    66% {
    border-radius: 50% 50% 35% 65% / 55% 45% 55% 45%;
    transform: rotate(240deg) scale(0.95);
    }
}

@keyframes morph-blob-2 {
    0%, 100% {
    border-radius: 58% 42% 30% 70% / 55% 35% 65% 45%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 45% 55% 60% 40% / 50% 50% 50% 50%;
    transform: rotate(135deg) scale(1.08);
    }
    66% {
    border-radius: 35% 65% 55% 45% / 45% 55% 45% 55%;
    transform: rotate(270deg) scale(0.97);
    }
}

@keyframes morph-blob-3 {
    0%, 100% {
    border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%;
    transform: rotate(110deg) scale(1.05);
    }
    66% {
    border-radius: 48% 52% 40% 60% / 52% 48% 52% 48%;
    transform: rotate(220deg) scale(0.98);
    }
}

.feature-card:hover .feature-blob {
    opacity: 0.15;
    transform: scale(1.2) rotate(45deg);
}

/* Feature image styling */
.feature-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card-1 .feature-image-wrapper {
    background: linear-gradient(135deg, #ff6b81 0%, #ff8fab 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 129, 0.25);
}

.feature-card-2 .feature-image-wrapper {
    background: linear-gradient(135deg, #7ed6df 0%, #a8e6ed 100%);
    box-shadow: 0 8px 24px rgba(126, 214, 223, 0.25);
}

.feature-card-3 .feature-image-wrapper {
    background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.25);
}

.feature-card:hover .feature-image-wrapper {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: all 0.4s ease;
}

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

/* Feature content */
.feature-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3436;
    line-height: 1.3;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.feature-card-1 .feature-title {
    color: #ff6b81;
}

.feature-card-2 .feature-title {
    color: #0fb9b1;
}

.feature-card-3 .feature-title {
    color: #f39c12;
}

.feature-card:hover .feature-title {
    transform: translateY(-3px);
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #636e72;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #2d3436;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-chess-grid {
    padding: 6rem 0;
    }

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

    .feature-card-1,
    .feature-card-2,
    .feature-card-3 {
    transform: translateY(0);
    }

    .feature-card-1:hover,
    .feature-card-3:hover {
    transform: translateY(-12px) scale(1.02);
    }

    .feature-card-2:hover {
    transform: translateY(-12px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .features-chess-grid {
    padding: 5rem 0;
    }

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

    .feature-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    }

    .feature-blob {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
    }

    .feature-image-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    }

    .feature-image {
    padding: 1.25rem;
    }

    .feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
    }

    .feature-description {
    font-size: 1rem;
    line-height: 1.65;
    }
}

@media (max-width: 576px) {
    .features-chess-grid {
    padding: 4rem 0;
    }

    .features-chess-grid .container {
    padding: 0 1rem;
    }

    .features-grid {
    gap: 1.5rem;
    }

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

    .feature-image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    }

    .feature-title {
    font-size: 1.375rem;
    }

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Block: Modern Carousel Design */
.testimonials-block-xy7 {
    padding: 7rem 0;
    background: linear-gradient(165deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-block-xy7::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-block-xy7 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

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

.testimonials-main-title {
    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;
    position: relative;
    display: inline-block;
}

.testimonials-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    border-radius: 10px;
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 4rem;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

/* Testimonial Card */
.testimonial-card-item {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 15px;
}

.testimonial-content-wrap {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-content-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card-item:hover .testimonial-content-wrap {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.15);
}

.testimonial-card-item:hover .testimonial-content-wrap::before {
    opacity: 1;
}

/* Avatar */
.avatar-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    position: relative;
}

.avatar-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card-item:hover .avatar-svg {
    transform: scale(1.08) rotate(3deg);
}

/* Text Area */
.testimonial-text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-icon-wrap {
    width: 40px;
    height: 40px;
    color: #667eea;
    opacity: 0.3;
}

.quote-icon {
    width: 100%;
    height: 100%;
}

.review-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    font-weight: 400;
    position: relative;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

.reviewer-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.01em;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #667eea;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    left: -28px;
}

.carousel-next {
    right: -28px;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn:focus {
    outline: 3px solid rgba(102, 126, 234, 0.4);
    outline-offset: 3px;
}

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 3rem;
}

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

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

.pagination-dot.active {
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.pagination-dot:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-block-xy7 {
    padding: 5rem 0;
    }
    
    .testimonials-main-title {
    font-size: 2.75rem;
    }
    
    .testimonial-content-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    }
    
    .avatar-wrapper {
    width: 90px;
    height: 90px;
    }
    
    .reviewer-info {
    align-items: center;
    }
    
    .carousel-prev {
    left: -18px;
    }
    
    .carousel-next {
    right: -18px;
    }
    
    .carousel-nav-btn {
    width: 48px;
    height: 48px;
    }
}

@media (max-width: 768px) {
    .testimonials-block-xy7 {
    padding: 4rem 0;
    }
    
    .testimonials-header-wrap {
    margin-bottom: 3rem;
    }
    
    .testimonials-main-title {
    font-size: 2.25rem;
    }
    
    .testimonial-content-wrap {
    padding: 2rem;
    border-radius: 25px;
    }
    
    .review-text {
    font-size: 1rem;
    line-height: 1.7;
    }
    
    .reviewer-name {
    font-size: 1.125rem;
    }
    
    .avatar-wrapper {
    width: 80px;
    height: 80px;
    }
    
    .carousel-nav-btn {
    width: 44px;
    height: 44px;
    margin-left: 20px;
    margin-right: 20px;
    }
    
    .carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    }
    
    .carousel-prev {
    left: 10px;
    }
    
    .carousel-next {
    right: 10px;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .pagination-dot.active {
    width: 32px;
    }
    
    .carousel-pagination {
    margin-top: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-block-xy7 {
    padding: 3rem 0;
    }
    
    .testimonials-main-title {
    font-size: 1.875rem;
    }
    
    .testimonial-content-wrap {
    padding: 1.75rem;
    gap: 1.5rem;
    }
    
    .review-text {
    font-size: 0.9375rem;
    }
    
    .avatar-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .quote-icon-wrap {
    width: 32px;
    height: 32px;
    }
    
    .star-icon {
    width: 18px;
    height: 18px;
    }
    
    .testimonial-card-item {
    padding: 0 10px;
    }

    .carousel-nav-btn {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Fallback for no JavaScript */
.no-js .testimonials-track {
    flex-direction: column;
    gap: 2rem;
}

.no-js .testimonial-card-item {
    min-width: 100%;
}

.no-js .carousel-nav-btn,
.no-js .carousel-pagination {
    display: none;
}
/* Services Block: Floating Card Grid with Gradient Accents */
.services-floating-grid {
    padding: 7rem 0 8rem;
    background: linear-gradient(160deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.services-floating-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-floating-grid::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.services-header-zone {
    text-align: center;
    margin-bottom: 5rem;
}

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b2ff7 50%, #ff6b9d 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-float {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-card-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b2ff7 50%, #ff6b9d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(123, 47, 247, 0.2);
}

.service-card-float:hover::before {
    opacity: 1;
}

.service-card-float:nth-child(odd) {
    transform: rotate(-1deg);
}

.service-card-float:nth-child(even) {
    transform: rotate(1deg);
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.service-card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(123, 47, 247, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-float:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
}

.service-icon-svg {
    width: 56px;
    height: 56px;
    transition: transform 0.3s ease;
}

.service-card-float:hover .service-icon-svg {
    transform: scale(1.15);
}

.service-content-block {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-title-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-description-text {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.service-action-zone {
    margin-top: auto;
}

.service-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #7b2ff7 0%, #00d4ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.25);
    position: relative;
    overflow: hidden;
}

.service-more-btn::before {
    content: '';
    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;
}

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

.service-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(123, 47, 247, 0.35);
}

.service-more-btn:focus {
    outline: 3px solid rgba(123, 47, 247, 0.4);
    outline-offset: 2px;
}

.service-more-btn span {
    position: relative;
    z-index: 1;
}

.btn-arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .services-floating-grid {
    padding: 5rem 0 6rem;
    }
    
    .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    
    .services-header-zone {
    margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .services-floating-grid {
    padding: 4rem 0 5rem;
    }
    
    .services-container-wrapper {
    padding: 0 1.5rem;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .services-header-zone {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    }
    
    .title-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .service-card-float:nth-child(odd),
    .service-card-float:nth-child(even) {
    transform: rotate(0deg);
    }
    
    .service-card-float:hover {
    transform: translateY(-8px) scale(1.01);
    }
    
    .service-card-inner {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-icon-svg {
    width: 48px;
    height: 48px;
    }
    
    .service-title-text {
    font-size: 1.375rem;
    }
    
    .service-description-text {
    font-size: 1rem;
    }
    
    .service-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services-floating-grid {
    padding: 3rem 0 4rem;
    }
    
    .services-container-wrapper {
    padding: 0 1rem;
    }
    
    .services-main-title {
    font-size: 2rem;
    }
    
    .service-card-inner {
    padding: 1.75rem 1.25rem;
    }
    
    .service-title-text {
    font-size: 1.25rem;
    }
    
    .service-more-btn {
    width: 100%;
    justify-content: center;
    }
}
/* 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: Geometric Split Design with Gradient Accent */
.contact-form-section-zx9 {
    padding: 0;
    margin: 0;
    background: linear-gradient(165deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-form-section-zx9::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow-zx9 8s ease-in-out infinite;
}

@keyframes pulse-glow-zx9 {
    0%, 100% {
    transform: scale(1);
    opacity: 0.3;
    }
    50% {
    transform: scale(1.1);
    opacity: 0.5;
    }
}

.contact-container-zx9 {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.contact-content-wrapper-zx9 {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 
                0 0 80px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Visual Panel with Geometric Shapes */
.contact-visual-panel-zx9 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.geometric-shape-1-zx9 {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
    animation: float-shape-1-zx9 6s ease-in-out infinite;
}

@keyframes float-shape-1-zx9 {
    0%, 100% {
    transform: rotate(45deg) translateY(0);
    }
    50% {
    transform: rotate(55deg) translateY(-20px);
    }
}

.geometric-shape-2-zx9 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transform: rotate(25deg);
    animation: float-shape-2-zx9 7s ease-in-out infinite;
}

@keyframes float-shape-2-zx9 {
    0%, 100% {
    transform: rotate(25deg) translateX(0);
    }
    50% {
    transform: rotate(35deg) translateX(15px);
    }
}

.geometric-shape-3-zx9 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.floating-circle-zx9 {
    position: absolute;
    top: 60%;
    left: 25%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
    animation: float-circle-zx9 5s ease-in-out infinite;
}

@keyframes float-circle-zx9 {
    0%, 100% {
    transform: translateY(0) scale(1);
    }
    50% {
    transform: translateY(-30px) scale(1.1);
    }
}

/* Form Panel */
.contact-form-panel-zx9 {
    padding: 5rem 4rem;
    background: rgba(15, 12, 41, 0.6);
    backdrop-filter: blur(10px);
}

.contact-heading-zx9 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-heading-zx9::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    border-radius: 2px;
}

/* Form Styling */
.contact-form-zx9 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group-zx9 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label-zx9 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input-zx9,
.form-textarea-zx9 {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1.0625rem;
    font-family: inherit;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-input-zx9::placeholder,
.form-textarea-zx9::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-zx9:focus,
.form-textarea-zx9:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f093fb;
    box-shadow: 0 0 0 4px rgba(240, 147, 251, 0.15),
                0 8px 24px rgba(240, 147, 251, 0.2);
    transform: translateY(-2px);
}

.form-input-zx9:hover,
.form-textarea-zx9:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.form-textarea-zx9 {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

/* Submit Button */
.form-submit-btn-zx9 {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    align-self: flex-start;
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

.form-submit-btn-zx9::before {
    content: '';
    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.6s ease;
}

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

.form-submit-btn-zx9:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.45);
}

.form-submit-btn-zx9:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-text-zx9 {
    position: relative;
    z-index: 2;
}

.btn-arrow-zx9 {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-content-wrapper-zx9 {
    grid-template-columns: 42% 58%;
    }
    
    .contact-form-panel-zx9 {
    padding: 4rem 3rem;
    }
}

@media (max-width: 992px) {
    .contact-content-wrapper-zx9 {
    grid-template-columns: 1fr;
    }
    
    .contact-visual-panel-zx9 {
    padding: 4rem 2rem;
    min-height: 300px;
    }
    
    .contact-form-panel-zx9 {
    padding: 3.5rem 2.5rem;
    }
    
    .contact-heading-zx9 {
    font-size: 2.5rem;
    }
    
    .geometric-shape-1-zx9 {
    width: 140px;
    height: 140px;
    }
    
    .geometric-shape-3-zx9 {
    width: 220px;
    height: 220px;
    }
}

@media (max-width: 768px) {
    .contact-form-section-zx9 {
    min-height: auto;
    padding: 3rem 0;
    }
    
    .contact-container-zx9 {
    padding: 2rem 1.5rem;
    }
    
    .contact-content-wrapper-zx9 {
    border-radius: 0 30px 0 30px;
    }
    
    .contact-form-panel-zx9 {
    padding: 2.5rem 2rem;
    }
    
    .contact-heading-zx9 {
    font-size: 2rem;
    margin-bottom: 2rem;
    }
    
    .form-input-zx9,
    .form-textarea-zx9 {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .form-submit-btn-zx9 {
    width: 100%;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    }
    
    .contact-visual-panel-zx9 {
    display: none;
    }
}

@media (max-width: 576px) {
    .contact-heading-zx9 {
    font-size: 1.75rem;
    }
    
    .form-label-zx9 {
    font-size: 0.875rem;
    }
    
    .form-group-zx9 {
    gap: 0.5rem;
    }
    
    .contact-form-zx9 {
    gap: 1.5rem;
    }
}
/* 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;
    }
}
