@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: #796f5c4d;
}

#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 Diagonal Design - Complete Standalone Styles */

.header-asymmetric-diagonal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0f172a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-asymmetric-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.header-asymmetric-diagonal.header-scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

/* Brand Section */
.brand-section {
    position: relative;
    z-index: 10;
}

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

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

.logo-icon {
    width: 42px;
    height: 42px;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-icon {
    color: #f59e0b;
    transform: rotate(180deg);
}

.brand-name {
    font-size: 1.625rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #fbbf24;
}

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

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

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

.dropdown-trigger {
    position: relative;
}

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

.dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
    color: #fbbf24;
}

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.dropdown-menu-new::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-left: 1px solid rgba(251, 191, 36, 0.1);
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(4px);
}

/* Search Form */
.header-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 200px;
    padding: 0.625rem 2.75rem 0.625rem 1.125rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    width: 280px;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.search-input::placeholder {
    color: #64748b;
}

.search-button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

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

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #fbbf24;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

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

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-close:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.mobile-nav-menu {
    list-style: none;
    margin: 5rem 0 2.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.mobile-nav-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(6px);
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
}

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

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.mobile-dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-link:hover {
    background: rgba(251, 191, 36, 0.05);
    color: #fbbf24;
    border-left-color: #fbbf24;
    transform: translateX(4px);
}

/* Mobile Search */
.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.mobile-search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    outline: none;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.mobile-search-input::placeholder {
    color: #64748b;
}

.mobile-search-button {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .desktop-menu,
    .header-search-form {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .main-navigation {
    gap: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
    padding: 0 1.25rem;
    min-height: 75px;
    }
    
    .brand-name {
    font-size: 1.375rem;
    }
    
    .logo-icon {
    width: 36px;
    height: 36px;
    }
    
    .mobile-menu-content {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    }
    
    .mobile-nav-menu {
    margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1rem;
    min-height: 70px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
    
    .logo-icon {
    width: 32px;
    height: 32px;
    }
    
    .mobile-nav-link {
    font-size: 1.0625rem;
    padding: 0.875rem 1rem;
    }
}
/* 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 Floating Cards with Gradient Mesh */
.features-wave-mesh {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #fff5f7 0%, #ffe8f0 25%, #f0f9ff 50%, #e0f2fe 75%, #dbeafe 100%);
    overflow: hidden;
}

/* Animated Mesh Gradient Background */
.mesh-gradient-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(251, 113, 133, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(3%, -3%) rotate(1deg); }
    66% { transform: translate(-3%, 3%) rotate(-1deg); }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 15s ease-in-out infinite;
    z-index: 2;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fb7185, transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #a78bfa, transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #60a5fa, transparent);
    bottom: 15%;
    left: 50%;
    animation-delay: 10s;
}

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

/* Container */
.features-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

/* Asymmetric Grid Layout */
.features-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Feature Cards Base Styles */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(251, 113, 133, 0.15),
                0 8px 20px rgba(147, 51, 234, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #fb7185, #a78bfa, #60a5fa);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(251, 113, 133, 0.25),
                0 15px 35px rgba(147, 51, 234, 0.2);
}

/* Large Feature Card */
.feature-large {
    grid-column: 1 / 8;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.9) 100%);
}

/* Medium Feature Card */
.feature-medium {
    grid-column: 8 / 13;
    transform: translateY(4rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 232, 255, 0.9) 100%);
}

/* Compact Feature Card */
.feature-compact {
    grid-column: 3 / 10;
    transform: translateY(-2rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.9) 100%);
}

/* Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fce7f3, #e0e7ff, #dbeafe);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.3), transparent);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card:hover .image-glow {
    opacity: 1;
}

.feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.feature-card:hover .feature-img {
    transform: scale(1.1) rotate(2deg);
}

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

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fb7185, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    transform: translateX(5px);
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    font-weight: 400;
}

/* Accent Line */
.feature-accent-line {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb7185, #a78bfa, #60a5fa);
    border-radius: 2px;
    margin-top: 1.5rem;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-accent-line {
    width: 80px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid-asymmetric {
    gap: 2.5rem;
    }
    
    .feature-large {
    grid-column: 1 / 7;
    }
    
    .feature-medium {
    grid-column: 7 / 13;
    transform: translateY(2rem);
    }
    
    .feature-compact {
    grid-column: 2 / 12;
    }
}

@media (max-width: 992px) {
    .features-wave-mesh {
    padding: 5rem 0 6rem;
    }
    
    .features-grid-asymmetric {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .feature-large,
    .feature-medium,
    .feature-compact {
    grid-column: 1 / -1;
    transform: translateY(0);
    }
    
    .feature-image-wrapper {
    height: 200px;
    }
    
    .feature-title {
    font-size: 1.75rem;
    }
    
    .floating-orb {
    display: none;
    }
}

@media (max-width: 768px) {
    .features-wave-mesh {
    padding: 4rem 0 5rem;
    }
    
    .features-container {
    padding: 0 1.5rem;
    }
    
    .feature-card {
    padding: 2rem;
    border-radius: 20px;
    }
    
    .feature-image-wrapper {
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    }
    
    .feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    }
    
    .feature-description {
    font-size: 1rem;
    line-height: 1.6;
    }
    
    .features-grid-asymmetric {
    gap: 2rem;
    }
}

@media (max-width: 576px) {
    .features-wave-mesh {
    padding: 3rem 0 4rem;
    }
    
    .feature-card {
    padding: 1.5rem;
    }
    
    .feature-image-wrapper {
    height: 160px;
    }
    
    .feature-title {
    font-size: 1.375rem;
    }
    
    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Carousel Block - Vibrant Gradient Design */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(165deg, #ffecd2 0%, #fcb69f 50%, #ff9a9e 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-carousel-block::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.6;
    transform: scale(0.95);
}

.testimonial-card.active-card {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

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

.testimonial-content {
    position: relative;
    width: 100%;
}

.quote-icon {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

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

.testimonial-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    position: relative;
}

.testimonial-name::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

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

.carousel-nav:hover {
    background: #667eea;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    transform: translateY(-50%) scale(1.1);
}

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

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

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

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

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 55, 72, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

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

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

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

    .testimonial-card {
    padding: 2.5rem;
    }

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

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

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

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

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

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

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

    .testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    }

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

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

    .carousel-nav {
    width: 40px;
    height: 40px;
    }

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

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

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

    .carousel-pagination {
    margin-top: 2rem;
    }
}

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

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

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

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

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

    .testimonial-name {
    font-size: 1rem;
    }

    .carousel-nav {
    width: 36px;
    height: 36px;
    margin-left: 10px;
    margin-right: 10px;
    }

    .carousel-prev {
    left: 5px;
    }

    .carousel-next {
    right: 5px;
    }

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

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

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

.no-js .testimonial-card {
    min-width: 100%;
    opacity: 1;
    transform: scale(1);
}

.no-js .carousel-nav,
.no-js .carousel-pagination {
    display: none;
}
/* Services Block: Diagonal Grid with Floating Cards Design */
.services-diagonal-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

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

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

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

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.services-grid-diagonal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    perspective: 1000px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 50%, rgba(255, 0, 128, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2), 0 0 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
}

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

.service-card-1 {
    transform: rotate(-1deg);
}

.service-card-2 {
    transform: rotate(1deg);
}

.service-card-3 {
    transform: rotate(-0.5deg);
}

.service-card-4 {
    transform: rotate(0.8deg);
}

.service-card-5 {
    transform: rotate(-1.2deg);
}

.service-card-6 {
    transform: rotate(0.6deg);
}

.service-card:hover.service-card-1,
.service-card:hover.service-card-2,
.service-card:hover.service-card-3,
.service-card:hover.service-card-4,
.service-card:hover.service-card-5,
.service-card:hover.service-card-6 {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

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

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.5);
}

.service-svg-icon {
    width: 44px;
    height: 44px;
    color: #00ff88;
    transition: all 0.4s ease;
}

.service-card:hover .service-svg-icon {
    color: #00d4ff;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #00ff88;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    min-height: 4.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.service-btn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.service-btn:focus {
    outline: 2px solid #00ff88;
    outline-offset: 3px;
}

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

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

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

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

    .services-header-wrap {
    margin-bottom: 3.5rem;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
    transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .services-diagonal-grid {
    padding: 4rem 0 5rem;
    }

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

    .services-grid-diagonal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }

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

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

    .service-card {
    padding: 2rem 1.5rem 1.75rem;
    }

    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    }

    .service-svg-icon {
    width: 38px;
    height: 38px;
    }

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

    .service-description {
    font-size: 1rem;
    min-height: auto;
    margin-bottom: 1.5rem;
    }

    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services-diagonal-grid {
    padding: 3rem 0 4rem;
    }

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

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

    .service-card {
    padding: 1.75rem 1.25rem 1.5rem;
    }

    .service-icon-wrapper {
    width: 64px;
    height: 64px;
    }

    .service-svg-icon {
    width: 34px;
    height: 34px;
    }

    .service-title {
    font-size: 1.25rem;
    }

    .service-description {
    font-size: 0.9375rem;
    }
}
/* 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 - Modern Gradient Card Design */
.contact-form-block-zx8q {
    position: relative;
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-form-wrapper-zx8q {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-title-zx8q {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-underline-zx8q {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

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

.form-group-zx8q {
    position: relative;
    width: 100%;
}

.form-label-zx8q {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.625rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.form-input-zx8q,
.form-textarea-zx8q {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1.0625rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-input-zx8q::placeholder,
.form-textarea-zx8q::placeholder {
    color: #a0aec0;
    opacity: 1;
}

.form-input-zx8q:focus,
.form-textarea-zx8q:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 8px 20px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-input-zx8q:hover,
.form-textarea-zx8q:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-submit-zx8q {
    width: 100%;
    padding: 1.375rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
}

.form-submit-zx8q::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-zx8q:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.45);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

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

.form-submit-zx8q:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

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

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

.decorative-shapes-zx8q {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape-circle-zx8q {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    animation: float-zx8q 8s ease-in-out infinite;
}

.shape-1-zx8q {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2-zx8q {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation-delay: 2s;
}

.shape-blob-zx8q {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 65%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph-zx8q 12s ease-in-out infinite;
}

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

@keyframes morph-zx8q {
    0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
    border-radius: 60% 40% 50% 70% / 60% 30% 70% 40%;
    }
    50% {
    border-radius: 50% 60% 40% 60% / 50% 70% 30% 60%;
    }
    75% {
    border-radius: 70% 50% 60% 40% / 40% 60% 50% 70%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-block-zx8q {
    padding: 4rem 1rem;
    min-height: auto;
    }
    
    .contact-form-wrapper-zx8q {
    padding: 2.5rem 1.75rem;
    border-radius: 24px;
    }
    
    .form-title-zx8q {
    font-size: 2.25rem;
    }
    
    .form-header-zx8q {
    margin-bottom: 2rem;
    }
    
    .contact-form-zx8q {
    gap: 1.5rem;
    }
    
    .form-input-zx8q,
    .form-textarea-zx8q {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .form-submit-zx8q {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    }
    
    .shape-1-zx8q {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -60px;
    }
    
    .shape-2-zx8q {
    width: 220px;
    height: 220px;
    bottom: -50px;
    left: -50px;
    }
    
    .shape-blob-zx8q {
    width: 350px;
    height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper-zx8q {
    padding: 2rem 1.5rem;
    }
    
    .form-title-zx8q {
    font-size: 1.875rem;
    }
    
    .title-underline-zx8q {
    width: 60px;
    height: 4px;
    }
    
    .form-textarea-zx8q {
    min-height: 140px;
    }
}

/* Focus visible for accessibility */
.form-input-zx8q:focus-visible,
.form-textarea-zx8q:focus-visible,
.form-submit-zx8q:focus-visible {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}
/* Contact Information Block - Organic Shapes with Terracotta & Sage Palette */

.contact-info-block-zx9 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f7f4f1 0%, #faf8f6 50%, #f2ede8 100%);
    overflow: hidden;
}

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

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

/* Contact Details Panel */
.contact-details-panel {
    position: relative;
}

.contact-header-zone {
    margin-bottom: 3.5rem;
}

.contact-main-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #2d3436;
    line-height: 1.15;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.title-accent-line {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #e07a5f 0%, #f4a261 100%);
    border-radius: 3px;
}

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

/* Contact Item Cards */
.contact-item-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(45, 52, 54, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.03) 0%, rgba(129, 178, 154, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(224, 122, 95, 0.15);
}

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

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

.address-bubble {
    background: linear-gradient(135deg, #e07a5f 0%, #f4a261 100%);
    color: #ffffff;
}

.phone-bubble {
    background: linear-gradient(135deg, #81b29a 0%, #95d5b2 100%);
    color: #ffffff;
}

.email-bubble {
    background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
    color: #ffffff;
}

.contact-item-card:hover .contact-icon-bubble {
    border-radius: 40% 50% 40% 50%;
    transform: rotate(10deg) scale(1.05);
}

.contact-svg-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

/* Text Zone */
.contact-text-zone {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3436;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

.contact-link {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #e07a5f;
}

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

/* Map Panel */
.contact-map-panel {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.map-container-frame {
    position: sticky;
    top: 2rem;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(45, 52, 54, 0.12);
    background: #e0e0e0;
}

.map-inner-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

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

.map-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(224, 122, 95, 0.05) 0%, transparent 30%, transparent 70%, rgba(129, 178, 154, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

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

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e07a5f 0%, #f4a261 100%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #81b29a 0%, #95d5b2 100%);
    bottom: -120px;
    left: -80px;
    animation-delay: 7s;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes blob-float {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    }
    25% {
    transform: translate(20px, -30px) rotate(5deg);
    border-radius: 60% 40% 30% 70% / 60% 50% 60% 40%;
    }
    50% {
    transform: translate(-20px, 20px) rotate(-5deg);
    border-radius: 30% 70% 60% 40% / 40% 60% 50% 60%;
    }
    75% {
    transform: translate(30px, 10px) rotate(3deg);
    border-radius: 70% 30% 40% 60% / 50% 40% 60% 50%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-block-zx9 {
    padding: 5rem 0;
    }
    
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-main-title {
    font-size: 2.5rem;
    }
    
    .contact-map-panel {
    min-height: 450px;
    }
    
    .map-container-frame {
    position: relative;
    top: 0;
    height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-info-block-zx9 {
    padding: 4rem 0;
    }
    
    .contact-container-wrap {
    padding: 0 1.5rem;
    }
    
    .contact-content-grid {
    gap: 2.5rem;
    }
    
    .contact-main-title {
    font-size: 2rem;
    }
    
    .contact-header-zone {
    margin-bottom: 2.5rem;
    }
    
    .contact-items-stack {
    gap: 1.5rem;
    }
    
    .contact-item-card {
    padding: 1.5rem;
    gap: 1.25rem;
    flex-direction: row;
    }
    
    .contact-icon-bubble {
    width: 56px;
    height: 56px;
    }
    
    .contact-svg-icon {
    width: 28px;
    height: 28px;
    }
    
    .contact-value {
    font-size: 1.125rem;
    }
    
    .contact-map-panel {
    min-height: 380px;
    }
    
    .map-container-frame {
    height: 380px;
    border-radius: 24px;
    }
    
    .contact-bg-blob {
    opacity: 0.25;
    }
    
    .blob-1 {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -80px;
    }
    
    .blob-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
    }
    
    .blob-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .contact-main-title {
    font-size: 1.75rem;
    }
    
    .contact-item-card {
    padding: 1.25rem;
    gap: 1rem;
    }
    
    .contact-icon-bubble {
    width: 48px;
    height: 48px;
    }
    
    .contact-svg-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-label {
    font-size: 0.8rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container-frame {
    height: 320px;
    border-radius: 20px;
    }
}
/* 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;
    }
}
