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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #4290424d;
}

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

.header-floating-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.header-floating-glass.scrolled::before {
    background: rgba(10, 10, 30, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.header-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* Brand Section */
.brand-section {
    flex-shrink: 0;
    z-index: 10;
}

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

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.3);
}

.brand-link:hover .brand-icon {
    transform: rotate(5deg);
    box-shadow: 0 6px 25px rgba(0, 128, 255, 0.5);
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    background: #00d4ff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;

}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

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

.nav-link:hover {
    color: rgba(0, 0, 0);
    transform: translateY(-2px);
}

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

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

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

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

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

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    transform: translateX(4px);
}

/* Search Section */
.search-section {
    flex-shrink: 0;
}

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

.search-input {
    width: 220px;
    padding: 0.75rem 3rem 0.75rem 1.25rem;
    font-size: 0.9375rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.search-input:focus {
    width: 280px;
    background: rgba(255, 255, 255, 0.12);
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

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

.search-button svg {
    width: 18px;
    height: 18px;
}

.search-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #00d4ff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

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

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

.nav-mobile {
    padding: 6rem 2rem 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(8px);
}

.mobile-dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

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

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu-link {
    display: block;
    padding: 1rem 1.5rem 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

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

/* Mobile Search Section */
.mobile-search-section {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.mobile-nav-overlay.active .mobile-search-section {
    opacity: 1;
    transform: translateY(0);
}

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

.mobile-search-input {
    width: 100%;
    padding: 1.25rem 4rem 1.25rem 1.5rem;
    font-size: 1.125rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

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

.mobile-search-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

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

.mobile-search-button svg {
    width: 20px;
    height: 20px;
}

.mobile-search-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
    gap: 2rem;
    }
    
    .nav-list {
    gap: 0.25rem;
    }
    
    .nav-link {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    }
    
    .search-input {
    width: 180px;
    }
    
    .search-input:focus {
    width: 220px;
    }
}

@media (max-width: 992px) {
    .nav-desktop,
    .search-section {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .header-container {
    gap: 1rem;
    }
}

@media (max-width: 576px) {
    .header-floating-glass {
    padding: 1rem 0;
    }
    
    .header-container {
    padding: 0 1.25rem;
    }
    
    .brand-icon {
    width: 38px;
    height: 38px;
    }
    
    .brand-icon svg {
    width: 20px;
    height: 20px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
    
    .nav-mobile {
    padding: 5rem 1.25rem 2rem;
    }
    
    .mobile-nav-link {
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    }
    
    .mobile-submenu-link {
    padding: 0.875rem 1.25rem 0.875rem 2rem;
    font-size: 1.0625rem;
    }
    
    .mobile-search-input {
    padding: 1rem 3.5rem 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .mobile-search-button {
    width: 40px;
    height: 40px;
    }
}
/* Hero Block: Asymmetric Split with Floating Animation - Modern Pink/Yellow/Green Theme */

.hero-split-asymmetric {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a1a 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.float-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 20, 147, 0.2);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.float-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.15);
    top: 60%;
    right: -5%;
    animation-delay: -5s;
}

.float-shape.shape-3 {
    width: 350px;
    height: 350px;
    background: rgba(0, 255, 127, 0.15);
    bottom: 10%;
    left: 40%;
    animation-delay: -10s;
}

.float-shape.shape-4 {
    width: 250px;
    height: 250px;
    background: rgba(255, 20, 147, 0.1);
    top: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    25% {
    transform: translate(30px, -30px) scale(1.1);
    }
    50% {
    transform: translate(-20px, 40px) scale(0.9);
    }
    75% {
    transform: translate(40px, 20px) scale(1.05);
    }
}

/* Header Styles */
.hero-header {
    position: relative;
    z-index: 100;
    padding: 2rem 0;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-icon:hover {
    transform: rotate(180deg) scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-checkbox {
    display: none;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-checkbox:checked ~ .hamburger-menu .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #FF1493;
}

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

.mobile-menu-checkbox:checked ~ .hamburger-menu .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #FF1493;
}

/* Navigation */
.hero-navigation {
    display: flex;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    border-color: #FFD700;
    background: rgba(255, 20, 147, 0.1);
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* Hero Content */
.hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    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;
}

/* Text Section */
.hero-text-section {
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInLeft {
    from {
    opacity: 0;
    transform: translateX(-60px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.hero-main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #FF1493 0%, #FFD700 50%, #00FF7F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    animation: titleGradient 5s ease infinite;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-line-1 {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 3rem 0;
    max-width: 600px;
    letter-spacing: 0.01em;
}

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

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #FF1493 0%, #FFD700 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.hero-cta-primary::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.6s ease, height 0.6s ease;
}

.hero-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
}

.cta-arrow {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Decorative Line */
.hero-decorative-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.line-segment {
    height: 2px;
    background: linear-gradient(90deg, #FF1493, #FFD700);
    animation: lineExpand 2s ease-in-out infinite;
}

.line-segment.segment-1 {
    width: 60px;
}

.line-segment.segment-2 {
    width: 100px;
    animation-delay: 0.5s;
}

@keyframes lineExpand {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.3); }
}

.line-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00FF7F;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

/* Visual Section */
.hero-visual-section {
    position: relative;
    height: 500px;
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@keyframes slideInRight {
    from {
    opacity: 0;
    transform: translateX(60px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: cardFloat 6s ease-in-out infinite;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF1493, #FFD700, #00FF7F);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.visual-card:hover::before {
    opacity: 0.3;
}

.visual-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
    border-color: #FF1493;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.visual-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    display: block;
    width: 64px;
    height: 64px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.visual-card.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: -2s;
}

.visual-card.card-3 {
    bottom: 10%;
    left: 25%;
    animation-delay: -4s;
}

@keyframes cardFloat {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    25% {
    transform: translateY(-15px) rotate(2deg);
    }
    50% {
    transform: translateY(-8px) rotate(-2deg);
    }
    75% {
    transform: translateY(-12px) rotate(1deg);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #FFD700);
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-visual-section {
    height: 400px;
    }
    
    .visual-card {
    padding: 1.5rem;
    }
    
    .card-icon {
    width: 48px;
    height: 48px;
    }
}

@media (max-width: 768px) {
    .hero-header {
    padding: 1.5rem 0;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .hero-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1a0a1a 0%, #0a1a1a 100%);
    padding: 6rem 2rem 2rem;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 2px solid rgba(255, 215, 0, 0.2);
    z-index: 100;
    }
    
    .mobile-menu-checkbox:checked ~ .hero-navigation {
    right: 0;
    }
    
    .nav-list {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    }
    
    .nav-link {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    }
    
    .hero-content-wrapper {
    padding: 2rem 0;
    }
    
    .hero-main-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-cta-primary {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    }
    
    .hero-visual-section {
    height: 300px;
    margin-top: 2rem;
    }
    
    .visual-card {
    padding: 1rem;
    }
    
    .card-icon {
    width: 40px;
    height: 40px;
    }
    
    .visual-card.card-1 {
    top: 0;
    left: 0;
    }
    
    .visual-card.card-2 {
    top: 35%;
    right: 0;
    }
    
    .visual-card.card-3 {
    bottom: 0;
    left: 15%;
    }
    
    .hero-scroll-indicator {
    bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
    padding: 0 1rem;
    }
    
    .hero-content-container {
    padding: 0 1rem;
    }
    
    .logo-icon {
    width: 40px;
    height: 40px;
    }
    
    .hero-navigation {
    width: 100%;
    right: -100%;
    }
    
    .hero-main-title {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-cta-primary {
    width: 100%;
    justify-content: center;
    }
    
    .hero-visual-section {
    height: 250px;
    }
    
    .float-shape {
    filter: blur(40px);
    }
}
/* Futures Block - Asymmetric Grid with Coral Gradient Theme */
.futures-block-asymmetric {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(160deg, #fff5f7 0%, #ffe8ee 50%, #ffd4e0 100%);
    overflow: hidden;
}

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

/* Header Section */
.futures-header {
    text-align: center;
    margin-bottom: 5rem;
}

.futures-header h2 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffa5bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.futures-subtitle {
    font-size: 1.375rem;
    color: #9d4466;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Feature Card Base Styles */
.future-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.future-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 165, 188, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.future-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.3);
}

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

/* Card 1 - Large Left Block (spans 2 rows) */
.future-card-1 {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

/* Card 2 - Top Right */
.future-card-2 {
    grid-column: 2;
    grid-row: 1;
}

/* Card 3 - Bottom Right */
.future-card-3 {
    grid-column: 2;
    grid-row: 2;
}

/* Image Wrapper */
.future-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: linear-gradient(135deg, #ffebf0 0%, #ffd9e3 100%);
}

.future-card-1 .future-image-wrapper {
    padding-top: 60%;
}

.future-image-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.future-card:hover .future-image-backdrop {
    transform: translate(-50%, -50%) scale(1.2);
}

.future-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.future-card:hover .future-image {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Feature Number Badge */
.future-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
    z-index: 3;
    transition: transform 0.4s ease;
}

.future-card:hover .future-number {
    transform: rotate(360deg) scale(1.1);
}

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

.future-card-1 .future-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.future-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2d1520;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.future-card-1 .future-content h3 {
    font-size: 2.25rem;
}

.future-card:hover .future-content h3 {
    color: #ff6b9d;
}

.future-content p {
    font-size: 1.125rem;
    color: #6d4556;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.future-card-1 .future-content p {
    font-size: 1.25rem;
}

/* Accent Line */
.future-accent-line {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ff8fab 50%, #ffa5bc 100%);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Decorative Background Shapes */
.futures-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 165, 188, 0.3) 0%, transparent 70%);
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 139, 171, 0.3) 0%, transparent 70%);
    top: 40%;
    right: -80px;
    animation-delay: 10s;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .futures-header h2 {
    font-size: 3.5rem;
    }
    
    .futures-grid {
    gap: 2rem;
    }
}

@media (max-width: 992px) {
    .futures-block-asymmetric {
    padding: 6rem 0;
    }
    
    .futures-header {
    margin-bottom: 4rem;
    }
    
    .futures-header h2 {
    font-size: 3rem;
    }
    
    .futures-subtitle {
    font-size: 1.25rem;
    }
    
    .futures-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    }
    
    .future-card-1,
    .future-card-2,
    .future-card-3 {
    grid-column: 1;
    grid-row: auto;
    }
    
    .future-content h3 {
    font-size: 1.75rem;
    }
    
    .future-card-1 .future-content h3 {
    font-size: 2rem;
    }
    
    .future-content p {
    font-size: 1.0625rem;
    }
    
    .future-card-1 .future-content p {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .futures-block-asymmetric {
    padding: 5rem 0;
    }
    
    .futures-container {
    padding: 0 1.5rem;
    }
    
    .futures-header {
    margin-bottom: 3rem;
    }
    
    .futures-header h2 {
    font-size: 2.5rem;
    }
    
    .futures-subtitle {
    font-size: 1.125rem;
    }
    
    .futures-grid {
    gap: 1.5rem;
    }
    
    .future-content {
    padding: 2rem;
    }
    
    .future-card-1 .future-content {
    padding: 2.5rem;
    }
    
    .future-content h3 {
    font-size: 1.5rem;
    }
    
    .future-card-1 .future-content h3 {
    font-size: 1.75rem;
    }
    
    .future-content p {
    font-size: 1rem;
    }
    
    .future-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    top: 1rem;
    right: 1rem;
    }
    
    .bg-shape {
    opacity: 0.25;
    }
    
    .shape-1 {
    width: 300px;
    height: 300px;
    }
    
    .shape-2 {
    width: 200px;
    height: 200px;
    }
    
    .shape-3 {
    width: 180px;
    height: 180px;
    }
}

@media (max-width: 576px) {
    .futures-block-asymmetric {
    padding: 4rem 0;
    }
    
    .futures-header h2 {
    font-size: 2rem;
    }
    
    .futures-subtitle {
    font-size: 1rem;
    }
    
    .future-content {
    padding: 1.5rem;
    }
    
    .future-card-1 .future-content {
    padding: 2rem;
    }
    
    .future-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    }
    
    .future-card-1 .future-content h3 {
    font-size: 1.625rem;
    }
    
    .future-content p {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    }
    
    .future-number {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
    }
    
    .future-card:hover {
    transform: translateY(-8px);
    }
}
/* Testimonials Carousel Block */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-carousel-block::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 35%;
    height: 55%;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 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-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
}

/* Testimonial Card */
.testimonial-card {
    min-width: 100%;
    padding: 3.5rem 2.5rem;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.85;
    transform: scale(0.95);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.18);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    border-radius: 30px 30px 0 0;
}

/* Avatar */
.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
    transform: translateY(0px);
    }
    50% {
    transform: translateY(-10px);
    }
}

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.25));
}

/* Content */
.testimonial-content {
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    color: #667eea;
    opacity: 0.3;
}

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

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

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

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    color: #fbbf24;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #667eea;
}

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

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

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-block {
    padding: 5rem 0;
    }
    
    .testimonials-header h2 {
    font-size: 2.5rem;
    }
    
    .testimonial-card {
    padding: 3rem 2rem;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-block {
    padding: 4rem 0;
    }
    
    .testimonials-carousel-wrapper {
    padding: 0 50px;
    }
    
    .testimonial-card {
    padding: 2.5rem 1.5rem;
    }
    
    .testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    }
    
    .testimonial-name {
    font-size: 1.25rem;
    }
    
    .carousel-nav {
    width: 44px;
    height: 44px;
    }
    
    .carousel-nav svg {
    width: 20px;
    height: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-block .container {
    padding: 0 1rem;
    }
    
    .testimonials-carousel-wrapper {
    padding: 0 40px;
    }
    
    .testimonial-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
    }
    
    .testimonial-avatar {
    width: 70px;
    height: 70px;
    }
    
    .quote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    }
    
    .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .testimonial-name {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    }
    
    .testimonial-stars svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-nav {
    width: 40px;
    height: 40px;
    }
    
    .carousel-nav svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-pagination {
    margin-top: 2rem;
    gap: 0.75rem;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .pagination-dot.active {
    width: 28px;
    }
}

/* Fallback for no-JS - show all cards stacked */
.no-js .testimonials-carousel-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 Vibrant Gradients */
.services-block-dg47 {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #fef3e2 0%, #fce4ec 50%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.services-block-dg47::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-block-dg47::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-block-dg47 .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffa726 100%);
    border-radius: 10px;
}

.decoration-dot {
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

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

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card.card-1::before {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8e53 100%);
}

.service-card.card-2::before {
    background: linear-gradient(90deg, #56ab2f 0%, #a8e063 100%);
}

.service-card.card-3::before {
    background: linear-gradient(90deg, #2196f3 0%, #00bcd4 100%);
}

.service-card.card-4::before {
    background: linear-gradient(90deg, #9c27b0 0%, #e91e63 100%);
}

.service-card.card-5::before {
    background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
}

.service-card.card-6::before {
    background: linear-gradient(90deg, #f44336 0%, #ff5722 100%);
}

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

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

.service-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.card-1 .service-icon-container {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 142, 83, 0.15) 100%);
    color: #ff6b6b;
}

.card-2 .service-icon-container {
    background: linear-gradient(135deg, rgba(86, 171, 47, 0.15) 0%, rgba(168, 224, 99, 0.15) 100%);
    color: #56ab2f;
}

.card-3 .service-icon-container {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(0, 188, 212, 0.15) 100%);
    color: #2196f3;
}

.card-4 .service-icon-container {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(233, 30, 99, 0.15) 100%);
    color: #9c27b0;
}

.card-5 .service-icon-container {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    color: #ff9800;
}

.card-6 .service-icon-container {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(255, 87, 34, 0.15) 100%);
    color: #f44336;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

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

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-right: 28px;
}

.card-1 .service-link {
    color: #ff6b6b;
}

.card-2 .service-link {
    color: #56ab2f;
}

.card-3 .service-link {
    color: #2196f3;
}

.card-4 .service-link {
    color: #9c27b0;
}

.card-5 .service-link {
    color: #ff9800;
}

.card-6 .service-link {
    color: #f44336;
}

.service-link::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    line-height: 1;
}

.service-link:hover {
    padding-right: 32px;
    letter-spacing: 0.02em;
}

.service-link:hover::after {
    right: -4px;
}

.service-link:focus {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 4px;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .services-block-dg47 {
    padding: 4rem 0;
    }
    
    .services-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .service-card {
    padding: 2rem 1.75rem;
    }
    
    .service-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    }
    
    .service-icon {
    width: 42px;
    height: 42px;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .decoration-line {
    width: 45px;
    }
}

@media (max-width: 576px) {
    .services-block-dg47 {
    padding: 3rem 0;
    }
    
    .services-header-wrap {
    margin-bottom: 2.5rem;
    }
    
    .service-card {
    padding: 1.75rem 1.5rem;
    }
    
    .service-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    }
    
    .service-icon {
    width: 38px;
    height: 38px;
    }
    
    .title-decoration {
    gap: 8px;
    }
    
    .decoration-line {
    width: 35px;
    height: 2px;
    }
    
    .decoration-dot {
    width: 8px;
    height: 8px;
    }
}
/* FAQ Section: Modern Static Display with Gradient Accents */
.faq-section-vx9 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0fdf4 100%);
    overflow: hidden;
}

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

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

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

.faq-decorative-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 50%, #06b6d4 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* FAQ Grid Container */
.faq-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Card Item */
.faq-card-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
}

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

/* Question Wrapper */
.faq-question-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-icon-circle {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.4s ease;
}

.faq-card-item:hover .faq-icon-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
}

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

.faq-question-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Answer Content */
.faq-answer-content {
    padding-left: 4.5rem;
}

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

/* Decorative Background Blobs */
.faq-bg-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.faq-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7c3aed, transparent);
    top: -10%;
    right: -10%;
    animation: faq-float-1 20s ease-in-out infinite;
}

.faq-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899, transparent);
    bottom: 10%;
    left: -5%;
    animation: faq-float-2 18s ease-in-out infinite;
}

.faq-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #06b6d4, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: faq-float-3 22s ease-in-out infinite;
}

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

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

@keyframes faq-float-3 {
    0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    }
    50% {
    transform: translate(-50%, -50%) scale(1.2);
    }
}

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

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

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

    .faq-decorative-line {
    width: 80px;
    height: 4px;
    }

    .faq-grid-container {
    gap: 1.5rem;
    }

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

    .faq-question-wrapper {
    gap: 1rem;
    margin-bottom: 1.25rem;
    }

    .faq-icon-circle {
    width: 48px;
    height: 48px;
    }

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

    .faq-answer-content {
    padding-left: 0;
    }

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

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

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

    .faq-card-item {
    padding: 1.5rem 1.25rem;
    }

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

    .faq-icon-circle {
    width: 44px;
    height: 44px;
    }
}
/* 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: Asymmetric Split with Coral & Turquoise Gradient */
.contact-info-block-xyz {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #fff5f7 0%, #e0f7fa 50%, #f3e5f5 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .contact-info-block-xyz {
    padding: 4rem 0 5rem;
    }
    
    .contact-main-header {
    font-size: 2rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .header-accent-line::after {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 6px rgba(255, 217, 61, 0.2);
    }
    
    .contact-card {
    padding: 1.75rem 1.25rem;
    gap: 1rem;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-detail-text {
    font-size: 1rem;
    }
    
    .map-wrapper {
    height: 320px;
    border-radius: 20px;
    }
}
/* 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;
    }
}
