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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #80a7424d;
}

#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;
}
/* Floating Glassmorphic Header Navigation */
.header-glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.header-glass-nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.375rem;
    transition: all 0.3s ease;
    position: relative;
}

.brand-logo:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-icon {
    transform: rotate(90deg);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.logo-icon svg {
    color: #ffffff;
}

.brand-text {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 128, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

/* Dropdown */
.nav-dropdown {
    position: relative;
}

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

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    min-width: 220px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

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

.dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.dropdown-item:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.15);
    transform: translateX(5px);
}

/* Search Form */
.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.search-input {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.9375rem;
    outline: none;
    width: 200px;
    transition: width 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
    width: 260px;
}

.search-button {
    padding: 0.75rem 1.25rem;
    border: none;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.search-button:hover {
    background: linear-gradient(135deg, #00e0ff 0%, #0090ff 100%);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
}

.search-button svg {
    display: block;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger-line {
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

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

.mobile-nav-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Mobile Search */
.mobile-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.mobile-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mobile-search-button {
    padding: 1rem 1.5rem;
    border: none;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-search-button:hover {
    background: linear-gradient(135deg, #00e0ff 0%, #0090ff 100%);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    transform: translateX(10px);
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-dropdown-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
}

.mobile-dropdown-menu-new.active {
    display: flex;
}

.mobile-dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.0625rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: translateX(5px);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .nav-wrapper {
    gap: 2rem;
    }

    .search-input {
    width: 150px;
    }

    .search-input:focus {
    width: 200px;
    }
}

@media (max-width: 992px) {
    .nav-links,
    .search-form {
    display: none;
    }

    .hamburger-menu {
    display: flex;
    }

    .nav-wrapper {
    padding: 0.875rem 1.5rem;
    }

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

    .logo-icon {
    width: 36px;
    height: 36px;
    }
}

@media (max-width: 576px) {
    .nav-container {
    padding: 0 1rem;
    }

    .nav-wrapper {
    padding: 0.75rem 1.25rem;
    border-radius: 80px;
    }

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

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

    .mobile-nav-content {
    width: 95%;
    }

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

    .mobile-dropdown-item {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    }
}
/* 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 Block: Asymmetric Coral & Lime Design */
.features-block-coral {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #fff5f0 0%, #fffef0 35%, #f0fff4 70%, #fff0f8 100%);
    overflow: hidden;
}

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

/* Asymmetric Grid Layout */
.features-grid-asymmetric {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    position: relative;
}

.feature-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.feature-small-top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.feature-small-bottom {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Feature Cards */
.feature-card-coral {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(255, 107, 107, 0.08);
    overflow: visible;
}

.feature-card-coral:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(255, 107, 107, 0.15);
}

.feature-large:hover {
    box-shadow: 0 32px 64px rgba(255, 107, 107, 0.2);
}

/* Image Wrapper with Blob Shapes */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-large .feature-image-wrapper {
    height: 400px;
}

.feature-blob-shape {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.feature-large .feature-blob-shape {
    width: 320px;
    height: 320px;
}

/* Blob Shape 1 - Coral */
.blob-1 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 50%, #ffa94d 100%);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: morph-blob-1 8s ease-in-out infinite;
}

/* Blob Shape 2 - Lime Green */
.blob-2 {
    background: linear-gradient(135deg, #51cf66 0%, #8ce99a 50%, #a9e34b 100%);
    border-radius: 73% 27% 26% 74% / 55% 71% 29% 45%;
    animation: morph-blob-2 7s ease-in-out infinite;
}

/* Blob Shape 3 - Yellow/Pink */
.blob-3 {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb3c1 50%, #ff6fb5 100%);
    border-radius: 30% 70% 70% 30% / 52% 48% 52% 48%;
    animation: morph-blob-3 9s ease-in-out infinite;
}

@keyframes morph-blob-1 {
    0%, 100% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

@keyframes morph-blob-2 {
    0%, 100% { border-radius: 73% 27% 26% 74% / 55% 71% 29% 45%; }
    33% { border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%; }
    66% { border-radius: 60% 40% 30% 70% / 70% 50% 50% 30%; }
}

@keyframes morph-blob-3 {
    0%, 100% { border-radius: 30% 70% 70% 30% / 52% 48% 52% 48%; }
    20% { border-radius: 65% 35% 29% 71% / 55% 30% 70% 45%; }
    40% { border-radius: 45% 55% 60% 40% / 38% 65% 35% 62%; }
    60% { border-radius: 72% 28% 48% 52% / 63% 42% 58% 37%; }
    80% { border-radius: 35% 65% 35% 65% / 45% 55% 45% 55%; }
}

.feature-card-coral:hover .feature-blob-shape {
    transform: scale(1.1) rotate(5deg);
}

.feature-img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

/* Accent Circles */
.feature-accent-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
    transition: all 0.6s ease;
}

.circle-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -30px;
    right: -30px;
}

.circle-2 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #51cf66 0%, transparent 70%);
    bottom: -20px;
    left: -20px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #ffd93d 0%, transparent 70%);
    top: -25px;
    left: -25px;
}

.feature-card-coral:hover .feature-accent-circle {
    transform: scale(1.3);
    opacity: 0.5;
}

/* Content Box */
.feature-content-box {
    position: relative;
    z-index: 3;
}

.feature-header-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.feature-large .feature-header-text {
    font-size: 2.25rem;
}

.feature-description-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-large .feature-description-text {
    font-size: 1.25rem;
}

/* Decorative Line */
.feature-decorative-line {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.feature-large .feature-decorative-line {
    background: linear-gradient(90deg, #ff6b6b, #ffa94d);
}

.feature-small-top .feature-decorative-line {
    background: linear-gradient(90deg, #51cf66, #a9e34b);
}

.feature-small-bottom .feature-decorative-line {
    background: linear-gradient(90deg, #ffd93d, #ff6fb5);
}

.feature-card-coral:hover .feature-decorative-line {
    width: 100px;
}

/* Background Decorations */
.features-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 1;
}

.deco-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -100px;
    right: -150px;
    animation: float-decoration-1 12s ease-in-out infinite;
}

.deco-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #51cf66 0%, transparent 70%);
    bottom: -120px;
    left: -100px;
    animation: float-decoration-2 15s ease-in-out infinite;
}

.deco-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffd93d 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-decoration-3 18s ease-in-out infinite;
}

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

@keyframes float-decoration-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.15); }
}

@keyframes float-decoration-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-45%, -55%) scale(1.05); }
    66% { transform: translate(-55%, -45%) scale(1.08); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid-asymmetric {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    }

    .feature-large,
    .feature-small-top,
    .feature-small-bottom {
    grid-column: 1 / 2;
    grid-row: auto;
    }

    .feature-large .feature-image-wrapper {
    height: 320px;
    }

    .feature-image-wrapper {
    height: 240px;
    }

    .feature-large .feature-blob-shape {
    width: 280px;
    height: 280px;
    }

    .feature-blob-shape {
    width: 220px;
    height: 220px;
    }
}

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

    .features-block-coral .container {
    padding: 0 1.5rem;
    }

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

    .feature-image-wrapper {
    height: 200px;
    margin-bottom: 1.5rem;
    }

    .feature-large .feature-image-wrapper {
    height: 260px;
    }

    .feature-blob-shape {
    width: 180px;
    height: 180px;
    }

    .feature-large .feature-blob-shape {
    width: 220px;
    height: 220px;
    }

    .feature-header-text {
    font-size: 1.5rem;
    }

    .feature-large .feature-header-text {
    font-size: 1.875rem;
    }

    .feature-description-text {
    font-size: 1rem;
    }

    .feature-large .feature-description-text {
    font-size: 1.125rem;
    }

    .circle-1,
    .circle-2,
    .circle-3 {
    width: 100px;
    height: 100px;
    }

    .deco-1,
    .deco-2,
    .deco-3 {
    width: 250px;
    height: 250px;
    }
}

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

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

    .features-grid-asymmetric {
    gap: 1.5rem;
    }

    .feature-image-wrapper {
    height: 180px;
    }

    .feature-large .feature-image-wrapper {
    height: 220px;
    }

    .feature-blob-shape {
    width: 160px;
    height: 160px;
    }

    .feature-large .feature-blob-shape {
    width: 190px;
    height: 190px;
    }

    .feature-header-text {
    font-size: 1.375rem;
    }

    .feature-large .feature-header-text {
    font-size: 1.625rem;
    }

    .feature-description-text {
    font-size: 0.9375rem;
    }

    .feature-decorative-line {
    width: 50px;
    height: 3px;
    }

    .feature-card-coral:hover .feature-decorative-line {
    width: 80px;
    }
}
/* Testimonials Carousel Block - Distinctive Design */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 50%, #8b5cf6 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

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

.testimonials-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 480px;
    perspective: 1200px;
}

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

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    pointer-events: auto;
    z-index: 3;
}

.testimonial-card.prev {
    opacity: 0.4;
    transform: translateX(-80%) scale(0.85) rotateY(15deg);
    pointer-events: none;
    z-index: 2;
}

.testimonial-card.next {
    opacity: 0.4;
    transform: translateX(80%) scale(0.85) rotateY(-15deg);
    pointer-events: none;
    z-index: 2;
}

.testimonial-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.testimonial-quote-icon {
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-content {
    margin-bottom: 2.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    margin: 0;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.author-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.author-avatar svg {
    display: block;
    width: 100%;
    height: 100%;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #6366f1;
    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.05);
}

.carousel-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: #6366f1;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.carousel-btn:active:not(:disabled) {
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

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

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.pagination-dot.active {
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Fallback static layout (no JS) */
@supports not (display: flex) {
    .testimonial-card {
    position: static;
    opacity: 1;
    transform: none;
    margin-bottom: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-block {
    padding: 5rem 0;
    }

    .testimonials-carousel {
    min-height: 520px;
    }

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

    .testimonial-card.prev,
    .testimonial-card.next {
    opacity: 0;
    transform: translateX(0) scale(0.9);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-block {
    padding: 4rem 0;
    }

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

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

    .testimonials-carousel {
    min-height: 560px;
    }

    .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 25px;
    max-width: 100%;
    }

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

    .testimonial-author {
    gap: 1rem;
    }

    .author-avatar {
    width: 56px;
    height: 56px;
    }

    .author-name {
    font-size: 1.125rem;
    }

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

    .carousel-btn {
    width: 48px;
    height: 48px;
    }

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

@media (max-width: 576px) {
    .testimonials-carousel-block {
    padding: 3rem 0;
    }

    .testimonials-carousel-block .container {
    padding: 0 1rem;
    }

    .testimonials-title {
    font-size: 2rem;
    }

    .testimonials-accent-line {
    width: 80px;
    height: 4px;
    }

    .testimonials-carousel {
    min-height: 600px;
    }

    .testimonial-card {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    }

    .testimonial-quote-icon svg {
    width: 36px;
    height: 36px;
    }

    .testimonial-text {
    font-size: 1.0625rem;
    }

    .carousel-btn {
    width: 44px;
    height: 44px;
    }

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

    .pagination-dot.active {
    width: 32px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card,
    .carousel-btn,
    .pagination-dot,
    .author-avatar {
    transition: none;
    }
}

.carousel-btn:focus-visible {
    outline: 3px solid #6366f1;
    outline-offset: 4px;
}

.pagination-dot:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 3px;
}
/* Services Block - Floating Cards with Gradient Mesh */
.services-float-mesh {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffeaa7 100%);
    overflow: hidden;
}

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

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

.services-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b9d 0%, #c44569 50%, #ff6b9d 100%);
    margin: 0 auto;
    border-radius: 10px;
}

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

/* Service Card */
.service-card-float {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
}

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

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

/* Icon Container */
.service-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 157, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-float:hover .service-icon-container {
    transform: rotate(8deg) scale(1.1);
    background: rgba(255, 107, 157, 0.15);
}

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

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

/* Service Name */
.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Service Description */
.service-description {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* More Button */
.service-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid transparent;
}

.service-more-btn:hover {
    background: linear-gradient(135deg, #ff5a8d 0%, #b33559 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.service-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.3);
}

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

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

/* Background Blobs */
.services-bg-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.4;
    filter: blur(60px);
    z-index: 1;
    animation: blob-float 20s ease-in-out infinite;
}

.services-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffc3a0 100%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.services-blob-2 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -15%;
    right: -5%;
    animation-delay: 7s;
}

.services-blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 14s;
}

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

/* Tablet Responsive */
@media (max-width: 992px) {
    .services-float-mesh {
    padding: 5rem 0;
    }
    
    .services-main-title {
    font-size: 2.75rem;
    }
    
    .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    
    .service-card-float {
    padding: 2rem;
    }
    
    .services-bg-blob {
    filter: blur(50px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-float-mesh {
    padding: 4rem 0;
    }
    
    .services-container {
    padding: 0 1.5rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .services-title-accent {
    width: 80px;
    height: 5px;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .service-card-float {
    padding: 1.75rem;
    }
    
    .service-icon-container {
    width: 70px;
    height: 70px;
    }
    
    .service-svg-icon {
    width: 48px;
    height: 48px;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
    
    .services-bg-blob {
    filter: blur(40px);
    opacity: 0.3;
    }
    
    .services-blob-1 {
    width: 350px;
    height: 350px;
    }
    
    .services-blob-2 {
    width: 300px;
    height: 300px;
    }
    
    .services-blob-3 {
    width: 280px;
    height: 280px;
    }
}

@media (max-width: 576px) {
    .services-main-title {
    font-size: 1.875rem;
    }
    
    .service-card-float {
    padding: 1.5rem;
    }
    
    .service-icon-container {
    width: 64px;
    height: 64px;
    }
    
    .service-svg-icon {
    width: 42px;
    height: 42px;
    }
}
/* FAQ Section: Glassmorphic Design with Pure CSS Accordion */
.faq-section-glassy {
    padding: 7rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-glassy::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: faq-pattern-drift 60s linear infinite;
}

@keyframes faq-pattern-drift {
    0% {
    transform: translate(0, 0);
    }
    100% {
    transform: translate(40px, 40px);
    }
}

.faq-section-glassy .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.faq-header-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

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

.faq-item-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.faq-item-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.faq-checkbox-hidden {
    display: none;
}

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

.faq-question-label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question-label:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
    padding-right: 2rem;
}

.faq-icon-indicator {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item-glass:hover .faq-icon-indicator {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-plus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-icon-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-checkbox-hidden:checked ~ .faq-question-label .faq-icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-checkbox-hidden:checked ~ .faq-question-label .faq-icon-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

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

.faq-checkbox-hidden:checked ~ .faq-answer-wrapper {
    max-height: 1000px;
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer-content {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-answer-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

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

    .faq-header-wrapper {
    margin-bottom: 2.5rem;
    }

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

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

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

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

    .faq-icon-indicator {
    width: 40px;
    height: 40px;
    }

    .faq-icon-plus svg,
    .faq-icon-minus svg {
    width: 20px;
    height: 20px;
    }

    .faq-checkbox-hidden:checked ~ .faq-answer-wrapper {
    padding: 0 1.5rem 1.5rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .faq-section-glassy {
    padding: 3rem 0;
    }

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

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

    .faq-item-glass {
    border-radius: 16px;
    }
}
/* 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 - Modern asymmetric design with bold gradients */
.contact-info-block {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

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

.contact-info-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.contact-info-block .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.contact-info-block .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #10b981 100%);
    border-radius: 10px;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

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

.contact-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-card:hover {
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.12);
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:hover {
    transform: translateX(8px);
}

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

.address-item .contact-icon-wrapper {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
}

.phone-item .contact-icon-wrapper {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    color: #ffffff;
}

.email-item .contact-icon-wrapper {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
}

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

.contact-item:hover .contact-icon-wrapper::before {
    width: 100%;
    height: 100%;
}

.contact-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-text-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
}

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

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981 0%, #14b8a6 100%);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #10b981;
}

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

.contact-link:focus {
    outline: 2px solid #10b981;
    outline-offset: 4px;
    border-radius: 4px;
}

.map-column {
    position: relative;
}

.map-wrapper {
    position: sticky;
    top: 2rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s ease;
}

.map-wrapper:hover {
    box-shadow: 0 35px 90px rgba(99, 102, 241, 0.2);
    transform: translateY(-5px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 28px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0%) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-wrapper:hover .map-container iframe {
    filter: grayscale(0%) contrast(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .map-wrapper {
    position: relative;
    top: 0;
    }
    
    .map-container {
    height: 450px;
    }
    
    .contact-info-block .section-title {
    font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .contact-info-block {
    padding: 5rem 0 6rem;
    }
    
    .contact-header {
    margin-bottom: 3rem;
    }
    
    .contact-info-block .section-title {
    font-size: 2.25rem;
    }
    
    .contact-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }
    
    .contact-item {
    padding: 1.5rem 0;
    gap: 1.25rem;
    }
    
    .contact-icon-wrapper {
    width: 50px;
    height: 50px;
    }
    
    .contact-icon {
    width: 26px;
    height: 26px;
    }
    
    .contact-value {
    font-size: 1.125rem;
    }
    
    .map-container {
    height: 350px;
    border-radius: 20px;
    }
    
    .map-wrapper {
    border-radius: 20px;
    }
    
    .contact-item:hover {
    transform: translateX(4px);
    }
}

@media (max-width: 576px) {
    .contact-info-block {
    padding: 4rem 0 5rem;
    }
    
    .contact-info-block .container {
    padding: 0 1.25rem;
    }
    
    .contact-info-block .section-title {
    font-size: 1.875rem;
    }
    
    .contact-card {
    padding: 1.75rem 1.25rem;
    }
    
    .contact-item {
    flex-direction: row;
    padding: 1.25rem 0;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-label {
    font-size: 0.8125rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container {
    height: 300px;
    }
}
/* Modern Asymmetric Footer with Gradient Accents */
.footer-block-modern {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8e8;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

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

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-brand-wrapper {
    position: relative;
}

.footer-brand-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-icon {
    flex-shrink: 0;
    color: #00d4ff;
    margin-top: 2px;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.footer-contact-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #c4c4c4;
}

/* Navigation Sections */
.footer-navigation,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-nav-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00d4ff;
    border-radius: 2px;
}

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

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #c4c4c4;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #0099ff 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover,
.footer-link:focus {
    color: #00d4ff;
    transform: translateX(5px);
    outline: none;
}

.footer-link:hover::before,
.footer-link:focus::before {
    width: 100%;
}

.footer-link-text {
    transition: color 0.3s ease;
}

.footer-link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #00d4ff;
}

.footer-link:hover .footer-link-arrow,
.footer-link:focus .footer-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #8a8a8a;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Decorative Background Elements */
.footer-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.footer-bg-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    top: -250px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.footer-bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0099ff 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

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

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

    .footer-company-info {
    grid-column: 1 / -1;
    }
}

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

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

    .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }

    .footer-company-info {
    grid-column: 1;
    }

    .footer-brand-name {
    font-size: 1.875rem;
    }

    .footer-contact-text {
    font-size: 1rem;
    }

    .footer-nav-heading {
    font-size: 1rem;
    }

    .footer-link {
    font-size: 1rem;
    }

    .footer-bg-circle-1,
    .footer-bg-circle-2 {
    display: none;
    }
}

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

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

    .footer-content-grid {
    gap: 2.5rem;
    }

    .footer-brand-name {
    font-size: 1.625rem;
    }

    .footer-contact-item {
    gap: 0.75rem;
    }

    .footer-icon {
    width: 18px;
    height: 18px;
    }

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

/* Focus Styles for Accessibility */
.footer-link:focus-visible {
    outline: 2px solid #00d4ff;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .footer-bg-decoration {
    display: none;
    }
    
    .footer-block-modern {
    background: #ffffff;
    color: #000000;
    }
    
    .footer-link {
    color: #000000;
    }
}
