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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #8f6bd74d;
}

#about {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .features-img {
        width: 300px;
    }
}

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Header: Asymmetric Split Navigation with Floating Search */
.header-nav-split {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .header-container {
    padding: 0 1rem;
    height: 65px;
    }
    
    .brand-icon {
    width: 34px;
    height: 34px;
    }
    
    .brand-name {
    font-size: 1.125rem;
    }
    
    .mobile-nav {
    width: 100%;
    max-width: 100%;
    }
}
/* Hero 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);
    }
}
/* Features Chess Grid - Organic Shapes with Vibrant Colors */
.features-chess-grid {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 50%, #fff0e6 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .feature-image {
    padding: 1.25rem;
    }

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

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

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

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

    .features-grid {
    gap: 1.5rem;
    }

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

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

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

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Section - Modern Carousel Design - ID: zx9k */
.testimonials-section-zx9k {
    padding: 7rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-section-zx9k::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section-zx9k .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

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

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

.testimonials-carousel-wrapper-zx9k {
    position: relative;
    padding: 0 60px;
}

.testimonials-swiper-zx9k {
    padding-bottom: 60px;
}

.testimonial-card-zx9k {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card-zx9k::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF6B9D 0%, #4ECDC4 50%, #FFB84D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card-zx9k:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

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

.testimonial-content-zx9k {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-icon-zx9k {
    color: #764ba2;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-text-zx9k {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author-zx9k {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.author-avatar-zx9k {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.author-avatar-zx9k svg {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info-zx9k {
    flex-grow: 1;
}

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

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

.star-zx9k {
    color: #FFB84D;
    font-size: 1.125rem;
}

/* Navigation Buttons */
.testimonials-prev-zx9k,
.testimonials-next-zx9k {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #764ba2;
}

.testimonials-prev-zx9k {
    left: 0;
}

.testimonials-next-zx9k {
    right: 0;
}

.testimonials-prev-zx9k:hover,
.testimonials-next-zx9k:hover {
    background: #764ba2;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(118, 75, 162, 0.3);
}

.testimonials-prev-zx9k.swiper-button-disabled,
.testimonials-next-zx9k.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Pagination */
.testimonials-pagination-zx9k {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet-active {
    opacity: 1;
    width: 36px;
    border-radius: 6px;
    background: #ffffff;
}

/* Static fallback layout (no JS) */
.testimonials-static-zx9k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-title-zx9k {
    font-size: 2.75rem;
    }
    
    .testimonials-carousel-wrapper-zx9k {
    padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .testimonials-section-zx9k {
    padding: 5rem 0;
    }
    
    .testimonials-title-zx9k {
    font-size: 2.25rem;
    }
    
    .testimonials-header-zx9k {
    margin-bottom: 3rem;
    }
    
    .testimonials-carousel-wrapper-zx9k {
    padding: 0 40px;
    }
    
    .testimonial-card-zx9k {
    padding: 2rem;
    }
    
    .testimonial-text-zx9k {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .author-name-zx9k {
    font-size: 1.125rem;
    }
    
    .testimonials-prev-zx9k,
    .testimonials-next-zx9k {
    width: 44px;
    height: 44px;
    }
    
    .testimonials-static-zx9k {
    grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .testimonials-section-zx9k {
    padding: 4rem 0;
    }
    
    .testimonials-title-zx9k {
    font-size: 1.875rem;
    }
    
    .testimonials-carousel-wrapper-zx9k {
    padding: 0;
    }
    
    .testimonial-card-zx9k {
    padding: 1.5rem;
    }
    
    .testimonials-prev-zx9k,
    .testimonials-next-zx9k {
    display: none;
    }
    
    .author-avatar-zx9k svg {
    width: 56px;
    height: 56px;
    }
    
    .quote-icon-zx9k {
    margin-bottom: 1rem;
    }
    
    .quote-icon-zx9k svg {
    width: 40px;
    height: 40px;
    }
}

/* Accessibility - Focus States */
.testimonials-prev-zx9k:focus,
.testimonials-next-zx9k:focus {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* Animation Enhancement */
@media (prefers-reduced-motion: no-preference) {
    .testimonial-card-zx9k {
    animation: fadeInUp 0.6s ease-out backwards;
    }
    
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
}
/* 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: Geometric gradient cards with asymmetric masonry layout */
.faq-section-geometric {
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f0ff 0%, #e8f5ff 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-geometric::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-geometric::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-geometric .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.faq-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

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

.faq-decorative-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.faq-decorative-line::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #7c3aed;
    border-radius: 50%;
}

.faq-decorative-line::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ec4899;
    border-radius: 50%;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.faq-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #f472b6 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
}

.faq-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.faq-card:hover::after {
    opacity: 0.7;
}

.faq-card-1 {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
}

.faq-card-2 {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
}

.faq-card-3 {
    background: linear-gradient(135deg, #f472b6 0%, #fbcfe8 100%);
}

.faq-card-4 {
    background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
}

.faq-card-5 {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
}

.faq-card-inner {
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem;
}

.faq-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.08;
    color: #1f2937;
    user-select: none;
    pointer-events: none;
}

.faq-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 2rem;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border-radius: 50%;
}

.faq-answer-content {
    display: block;
    overflow: visible;
    padding-left: 2rem;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .faq-section-geometric {
    padding: 6rem 0 7rem;
    }
    
    .faq-main-title {
    font-size: 3rem;
    }
    
    .faq-grid-container {
    gap: 2rem;
    }
    
    .faq-card-inner {
    padding: 2.5rem 2rem;
    }
    
    .faq-question {
    font-size: 1.375rem;
    }
    
    .faq-answer {
    font-size: 1.0625rem;
    }
}

@media (max-width: 768px) {
    .faq-section-geometric {
    padding: 5rem 0 6rem;
    }
    
    .faq-main-title {
    font-size: 2.5rem;
    }
    
    .faq-header-wrapper {
    margin-bottom: 3.5rem;
    }
    
    .faq-grid-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .faq-card-5 {
    grid-column: auto;
    }
    
    .faq-card-inner {
    padding: 2rem 1.75rem;
    }
    
    .faq-number {
    font-size: 4rem;
    top: 1rem;
    right: 1.5rem;
    }
    
    .faq-question {
    font-size: 1.25rem;
    padding-left: 1.5rem;
    }
    
    .faq-question::before {
    width: 0.875rem;
    height: 0.875rem;
    top: 0.3rem;
    }
    
    .faq-answer-content {
    padding-left: 1.5rem;
    }
    
    .faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-geometric {
    padding: 4rem 0 5rem;
    }
    
    .faq-section-geometric .container {
    padding: 0 1rem;
    }
    
    .faq-main-title {
    font-size: 2rem;
    }
    
    .faq-decorative-line {
    width: 80px;
    height: 5px;
    }
    
    .faq-decorative-line::before,
    .faq-decorative-line::after {
    width: 16px;
    height: 16px;
    }
    
    .faq-decorative-line::before {
    left: -24px;
    }
    
    .faq-decorative-line::after {
    right: -24px;
    }
    
    .faq-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .faq-grid-container {
    gap: 1.5rem;
    }
    
    .faq-card {
    border-radius: 20px;
    }
    
    .faq-card::after {
    border-radius: 20px;
    padding: 2px;
    }
    
    .faq-card-inner {
    padding: 1.75rem 1.5rem;
    }
    
    .faq-number {
    font-size: 3.5rem;
    top: 0.75rem;
    right: 1.25rem;
    }
    
    .faq-question {
    font-size: 1.125rem;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    }
    
    .faq-question::before {
    width: 0.75rem;
    height: 0.75rem;
    top: 0.25rem;
    }
    
    .faq-answer-content {
    padding-left: 1.25rem;
    }
    
    .faq-answer {
    font-size: 0.9375rem;
    }
}
/* 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 - Modern asymmetric design with bold gradients */
.contact-info-block {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.map-column {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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