@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600);

body {
    font-family: "Source Sans Pro", sans-serif;
}

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #d8a7104d;
}

#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 Search */
.header-nav-split {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-split.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.1);
    border-bottom-color: rgba(15, 23, 42, 0.12);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 240px 1fr auto auto;
    align-items: center;
    gap: 3rem;
    height: 85px;
}

/* Brand Section */
.header-brand-section {
    display: flex;
    align-items: center;
}

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

.brand-logo-link:hover {
    transform: translateY(-2px);
}

.brand-icon {
    width: 44px;
    height: 44px;
    color: #8b5cf6;
    transition: color 0.3s ease;
}

.brand-logo-link:hover .brand-icon {
    color: #7c3aed;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.desktop-nav {
    justify-self: center;
}

.nav-menu-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.375rem;
    padding: 0.75rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8b5cf6;
}

.nav-link.active-page {
    color: #8b5cf6;
}

.nav-link-underline {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 2.5rem);
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .nav-link-underline,
.nav-link.active-page ~ .nav-link-underline {
    transform: translateX(-50%) scaleX(1);
}

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

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

/* Dropdown Menu */
.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.dropdown-menu-new::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top-left-radius: 2px;
}

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

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

.dropdown-item:hover {
    background: linear-gradient(135deg, #f8f4ff 0%, #fdf4ff 100%);
    color: #8b5cf6;
    transform: translateX(4px);
}

/* Search Section */
.header-search-section {
    justify-self: end;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 240px;
    height: 46px;
    padding: 0 3.25rem 0 1.25rem;
    font-size: 1rem;
    color: #0f172a;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 23px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-input:focus {
    width: 280px;
    background: #ffffff;
    border-color: #8b5cf6;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.search-button:active {
    transform: translateY(-50%) scale(0.98);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    justify-self: end;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #0f172a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

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

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

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%!;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active-page {
    background: linear-gradient(135deg, #f8f4ff 0%, #fdf4ff 100%);
    color: #8b5cf6;
}

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

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

.mobile-dropdown-menu-new {
    max-height: 0;
    overflow: hidden;
    padding-left: 1.25rem;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-open .mobile-dropdown-menu-new {
    max-height: 300px;
    padding-top: 0.5rem;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
    background: #f8fafc;
    color: #8b5cf6;
    padding-left: 1.5rem;
}

/* Mobile Search Section */
.mobile-search-section {
    padding: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-input {
    width: 100%;
    height: 48px;
    padding: 0 3.5rem 0 1.25rem;
    font-size: 1rem;
    color: #0f172a;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 24px;
    outline: none;
    transition: all 0.3s ease;
}

.mobile-search-input::placeholder {
    color: #94a3b8;
}

.mobile-search-input:focus {
    background: #ffffff;
    border-color: #8b5cf6;
}

.mobile-search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-button:active {
    transform: translateY(-50%) scale(0.95);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .header-container {
    grid-template-columns: 200px 1fr auto auto;
    gap: 2rem;
    }
    
    .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .desktop-nav,
    .header-search-section {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .header-container {
    grid-template-columns: 1fr auto;
    height: 70px;
    padding: 0 1.5rem;
    }
    
    .brand-icon {
    width: 38px;
    height: 38px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1rem;
    height: 65px;
    }
    
    .brand-icon {
    width: 34px;
    height: 34px;
    }
    
    .brand-name {
    font-size: 1.125rem;
    }
    
    .mobile-nav {
    width: 100%;
    max-width: 100%;
    }
}
/* 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 Cascade Block - Floating Card Design */
.testimonials-cascade-rvw {
    padding: 7rem 0;
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.testimonials-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials-decoration-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

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

/* Testimonial Cards */
.testimonial-card-item {
    position: absolute;
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateX(100px) scale(0.85);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.testimonial-card-item.testimonial-prev {
    opacity: 0.4;
    transform: translateX(-120px) scale(0.8);
    z-index: 1;
}

.testimonial-card-item.testimonial-next {
    opacity: 0.4;
    transform: translateX(120px) scale(0.8);
    z-index: 1;
}

.testimonial-card-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.2);
}

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

.testimonial-avatar-svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.testimonial-quote-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

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

.testimonial-text-content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.01em;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    font-size: 1.125rem;
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Navigation Controls */
.testimonials-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.testimonial-nav-btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

/* Pagination Dots */
.testimonials-pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.pagination-dot.pagination-active {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    width: 32px;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
}

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

    .testimonial-card-item {
    padding: 2.5rem;
    max-width: 600px;
    }

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

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

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

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

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

    .testimonial-card-item {
    padding: 2rem;
    border-radius: 24px;
    }

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

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

    .testimonial-author-name {
    font-size: 1.25rem;
    }

    .testimonial-avatar-wrapper {
    width: 80px;
    height: 80px;
    }

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

    .testimonials-nav-controls {
    gap: 1.5rem;
    margin-top: 2rem;
    }
}

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

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

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

    .testimonial-card-item {
    padding: 1.75rem;
    gap: 1.5rem;
    }

    .testimonial-text-content {
    font-size: 1rem;
    line-height: 1.65;
    }

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

    .star-icon {
    font-size: 1rem;
    }

    .testimonial-avatar-wrapper {
    width: 70px;
    height: 70px;
    }

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

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

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

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

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

/* Fallback for no-JS */
.no-js .testimonial-card-item {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 2rem;
}

.no-js .testimonials-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .services-showcase-block {
    padding: 4rem 0 5rem;
    }
    
    .services-main-title {
    font-size: 2rem;
    }
    
    .service-card {
    padding: 2rem 1.5rem;
    }
    
    .service-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    }
}
/* FAQ Section: Asymmetric Violet Wave Design */
.faq-section-violet-wave {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f7ff 0%, #ffffff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-violet-wave::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    z-index: 1;
}

.faq-section-violet-wave::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 65%);
    border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    z-index: 1;
}

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

/* Header Container */
.faq-header-container {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

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

.faq-decorative-blob {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* FAQ Accordion Wrapper */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* FAQ Item */
.faq-item-vw {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.faq-item-vw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item-vw:hover {
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.1);
}

.faq-item-vw.faq-active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.2);
}

.faq-item-vw.faq-active::before {
    opacity: 1;
}

/* Question Header */
.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    gap: 2rem;
    transition: all 0.3s ease;
}

.faq-question-header:hover {
    background: rgba(139, 92, 246, 0.02);
}

.faq-question-header:focus {
    outline: 3px solid rgba(139, 92, 246, 0.3);
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item-vw.faq-active .faq-question-text {
    color: #7c3aed;
}

/* Icon Toggle */
.faq-icon-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item-vw:hover .faq-icon-toggle {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.faq-item-vw.faq-active .faq-icon-toggle {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    transform: rotate(180deg);
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6b7280;
    transition: all 0.3s ease;
}

.faq-item-vw:hover .faq-icon-plus,
.faq-item-vw:hover .faq-icon-minus {
    color: #7c3aed;
}

.faq-item-vw.faq-active .faq-icon-plus,
.faq-item-vw.faq-active .faq-icon-minus {
    color: #ffffff;
}

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

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

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

/* Answer Content */
.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item-vw.faq-active .faq-answer-content {
    max-height: 800px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 2.5rem 2.5rem;
    padding-top: 0.5rem;
}

.faq-answer-inner p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-violet-wave {
    padding: 5rem 0 6rem;
    }
    
    .faq-section-violet-wave::before,
    .faq-section-violet-wave::after {
    width: 400px;
    height: 400px;
    }
    
    .faq-header-container {
    margin-bottom: 3rem;
    }
    
    .faq-main-title {
    font-size: 2.25rem;
    }
    
    .faq-accordion-wrapper {
    gap: 1rem;
    }
    
    .faq-question-header {
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
    }
    
    .faq-question-text {
    font-size: 1.125rem;
    }
    
    .faq-icon-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    }
    
    .faq-answer-inner {
    padding: 0 1.75rem 2rem;
    }
    
    .faq-answer-inner p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-violet-wave {
    padding: 4rem 0 5rem;
    }
    
    .faq-main-title {
    font-size: 1.875rem;
    }
    
    .faq-question-header {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    }
    
    .faq-question-text {
    font-size: 1rem;
    }
    
    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    }
    
    .faq-answer-inner {
    padding: 0 1.5rem 1.75rem;
    }
    
    .faq-answer-inner p {
    font-size: 0.9375rem;
    }
    
    .faq-item-vw {
    border-radius: 18px;
    }
}

/* Focus and Accessibility */
.faq-question-header:focus-visible {
    outline: 3px solid #8b5cf6;
    outline-offset: 2px;
}

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {
    .faq-item-vw,
    .faq-question-header,
    .faq-icon-toggle,
    .faq-answer-content {
    transition: none;
    }
}
/* Contact Form Section - Asymmetric Split with Floating Card Design */
.contact-form-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.contact-content-wrapper {
    display: grid;

}

/* Header Side */
.contact-header-side {
    padding: 3rem 0;
}

.contact-header-content {
    position: relative;
}

.contact-main-header {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-decoration-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffd93d 100%);
    border-radius: 10px;
    position: relative;
    animation: contact-line-pulse 2s ease-in-out infinite;
}

@keyframes contact-line-pulse {
    0%, 100% {
    transform: scaleX(1);
    opacity: 1;
    }
    50% {
    transform: scaleX(1.2);
    opacity: 0.8;
    }
}

/* Form Side */
.contact-form-side {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.contact-form-card:hover::before {
    opacity: 1;
}

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

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

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1.0625rem;
    color: #2c3e50;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.6;
}

.form-input:focus,
.form-textarea:focus {
    background: #ffffff;
    border-color: #4ecdc4;
    box-shadow: 
    0 0 0 4px rgba(78, 205, 196, 0.1),
    0 8px 20px rgba(78, 205, 196, 0.15);
    transform: translateY(-2px);
}

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

.form-textarea {
    resize: vertical;
    min-height: 140px;
    max-height: 300px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #95a5a6;
    opacity: 0.7;
}

/* Submit Button */
.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.375rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

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

.form-submit-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

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

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

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

.btn-arrow {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

/* Background Decorations */
.contact-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.contact-bg-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: contact-float-1 20s ease-in-out infinite;
}

.contact-bg-circle-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #4ecdc4 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: contact-float-2 18s ease-in-out infinite;
}

.contact-bg-blob {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffd93d 0%, transparent 70%);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: contact-blob-morph 15s ease-in-out infinite;
}

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

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

@keyframes contact-blob-morph {
    0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(-50%, -50%) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-header-side {
    text-align: center;
    padding: 2rem 0;
    }
    
    .contact-decoration-line {
    margin: 0 auto;
    }
    
    .contact-main-header {
    font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .contact-form-card {
    padding: 2.5rem;
    }
    
    .contact-form-section {
    padding: 5rem 0;
    min-height: auto;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
    padding: 4rem 0;
    }
    
    .contact-container {
    padding: 0 1.5rem;
    }
    
    .contact-form-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
    }
    
    .contact-form {
    gap: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
    }
    
    .form-submit-btn {
    padding: 1.125rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
    }
    
    .contact-main-header {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    }
    
    .btn-arrow {
    font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
    padding: 3rem 0;
    }
    
    .contact-container {
    padding: 0 1rem;
    }
    
    .contact-form-card {
    padding: 1.75rem 1.25rem;
    }
    
    .form-label {
    font-size: 0.8125rem;
    }
    
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-decoration-line {
    width: 80px;
    height: 5px;
    }
}

/* Accessibility - Focus Visible */
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-submit-btn:focus-visible {
    outline: 3px solid #4ecdc4;
    outline-offset: 3px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .contact-form-card {
    border: 2px solid #2c3e50;
    }
    
    .form-input,
    .form-textarea {
    border: 2px solid #2c3e50;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
}
/* Contact Information Block - Asymmetric Floating Map Design */
.contact-info-section {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0f9ff 100%);
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Header Styling */
.contact-header {
    margin-bottom: 4rem;
}

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

.title-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    border-radius: 3px;
    position: relative;
}

.title-accent-line::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #40e0d0;
    border-radius: 50%;
    opacity: 0.3;
}

/* Contact Details Grid */
.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    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, #ff6b9d 0%, #ffa07a 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

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

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

.phone-icon {
    background: linear-gradient(135deg, #40e0d0 0%, #56efde 100%);
    color: #ffffff;
}

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

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

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

/* Contact Content */
.contact-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 64px;
}

.contact-value {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.6;
    word-break: break-word;
}

.address-text {
    font-weight: 500;
}

.phone-link,
.email-link {
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.3s ease;
    position: relative;
}

.phone-link::after,
.email-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #40e0d0 100%);
    transition: width 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #ff6b9d;
}

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

.phone-link:focus,
.email-link:focus {
    outline: 3px solid #ff6b9d;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Map Container */
.contact-map-container {
    position: relative;
    height: 600px;
}

.map-frame-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-frame-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

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

/* Decorative Blob Behind Map */
.map-decorative-blob {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ff6b9d 0%, #40e0d0 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.08;
    z-index: -1;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% {
    transform: translate(20px, -20px) rotate(120deg);
    border-radius: 50% 60% 50% 40% / 60% 40% 60% 40%;
    }
    66% {
    transform: translate(-20px, 20px) rotate(240deg);
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    }
}

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

.decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #40e0d0 0%, transparent 70%);
    bottom: -150px;
    right: 10%;
}

.decoration-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffa07a 0%, transparent 70%);
    top: 50%;
    right: -125px;
    transform: translateY(-50%);
}

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

    .contact-map-container {
    height: 500px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
    padding: 5rem 0 6rem;
    }

    .contact-container {
    padding: 0 1.5rem;
    gap: 3rem;
    }

    .contact-main-title {
    font-size: 2.5rem;
    }

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

    .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    }

    .contact-card:hover {
    transform: translateY(-4px);
    }

    .contact-icon-wrapper {
    width: 56px;
    height: 56px;
    }

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

    .contact-value {
    font-size: 1.125rem;
    }

    .contact-map-container {
    height: 400px;
    }

    .map-frame-wrapper {
    border-radius: 24px;
    }

    .map-decorative-blob {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
    }

    .decoration-1 {
    width: 250px;
    height: 250px;
    }

    .decoration-2 {
    width: 200px;
    height: 200px;
    }

    .decoration-3 {
    width: 180px;
    height: 180px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
    font-size: 2rem;
    }

    .contact-card {
    padding: 1.5rem 1rem;
    }

    .contact-value {
    font-size: 1rem;
    }

    .contact-map-container {
    height: 350px;
    }
}
/* Footer Block: Asymmetric Split with Gradient Accent - Deep Teal & Coral */
.footer-block-asymmetric {
    position: relative;
    background: linear-gradient(135deg, #0d3b4d 0%, #1a5568 50%, #0d3b4d 100%);
    color: #e2e8f0;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

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

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

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-brand-accent {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b 0%, #feca57 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

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

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

.footer-icon {
    width: 22px;
    height: 22px;
    color: #ff6b6b;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

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

.footer-contact-link {
    font-size: 1.0625rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    transition: width 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
}

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

/* Navigation Section */
.footer-nav-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

.footer-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

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

.footer-link {
    font-size: 1.0625rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.5;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.footer-link:hover::before {
    width: 8px;
    height: 8px;
    background: #feca57;
    box-shadow: 0 0 12px rgba(254, 202, 87, 0.6);
}

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

/* Bottom Bar */
.footer-bottom {
    padding-top: 2.5rem;
}

.footer-bottom-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 107, 0.3) 50%, transparent 100%);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.01em;
}

.footer-decorative-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: footer-pulse 2s ease-in-out infinite;
}

.footer-dot:nth-child(2) {
    animation-delay: 0.3s;
    background: #feca57;
}

.footer-dot:nth-child(3) {
    animation-delay: 0.6s;
    background: #48dbfb;
}

@keyframes footer-pulse {
    0%, 100% {
    opacity: 0.4;
    transform: scale(1);
    }
    50% {
    opacity: 1;
    transform: scale(1.3);
    }
}

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

.footer-bg-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.footer-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #feca57 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
}

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

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

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

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

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

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

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

    .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    }

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

@media (max-width: 576px) {
    .footer-brand-name {
    font-size: 1.75rem;
    }

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

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

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

    .footer-link {
    padding-left: 1rem;
    }

    .footer-link:hover {
    padding-left: 1.25rem;
    }
}
