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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #2294c04d;
}

#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 Split Design - NO CSS Variables */
.header-block-asymm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.header-block-asymm.scrolled {
    background: rgba(10, 10, 26, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-block-asymm.header-hidden {
    transform: translateY(-100%);
}

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

/* Brand Section with Asymmetric Design */
.brand-wrapper {
    position: relative;
    z-index: 10;
}

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

.brand-logo:hover {
    transform: translateX(5px);
}

.logo-icon {
    width: 42px;
    height: 42px;
    transition: all 0.4s ease;
}

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

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Main Navigation - Floating Design */
.main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e7ff;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link-accent {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.nav-link-accent:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #8b3fff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* Dropdown Styles */
.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

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

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

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

.dropdown-item {
    margin: 0.25rem 0;
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #e0e7ff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(123, 47, 247, 0.15) 100%);
    color: #00d4ff;
    transform: translateX(5px);
}

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

.hamburger-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
}

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

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

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

.mobile-nav-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.5s ease forwards;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) {
    animation-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(6) {
    animation-delay: 0.35s;
}

@keyframes slideInLeft {
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

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

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(123, 47, 247, 0.15) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.mobile-nav-link-accent {
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.mobile-nav-link-accent:hover {
    background: linear-gradient(135deg, #00e5ff 0%, #8b3fff 100%);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Mobile Dropdown */
.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

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

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.mobile-dropdown-item {
    margin: 0.5rem 0;
}

.mobile-dropdown-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #a5b4fc;
    text-decoration: none;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

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

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .main-navigation {
    display: none;
    }

    .hamburger-menu {
    display: flex;
    }

    .header-container {
    height: 75px;
    }

    .brand-text {
    font-size: 1.5rem;
    }

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

@media (max-width: 576px) {
    .header-container {
    padding: 0 1.5rem;
    height: 70px;
    }

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

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

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

    .mobile-dropdown-link {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    }

    .mobile-navigation {
    padding: 100px 1.5rem 2rem;
    }
}
/* Hero Block: Asymmetric Split Design - Complete Standalone Styles */

.hero-block-asymmetric {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b4e 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header Navigation */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.nav-links-desktop {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: #00d4ff;
}

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

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #c94ffd);
    transition: left 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-nav-link:hover {
    transform: translateX(10px);
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 10;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Text Section */
.hero-text-section {
    position: relative;
    z-index: 20;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(77, 124, 254, 0.2);
    border: 1px solid rgba(77, 124, 254, 0.5);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-badge svg {
    width: 24px;
    height: 24px;
    color: #00d4ff;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-decoration {
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #b8b8d4;
    margin-bottom: 3rem;
    max-width: 580px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c94ffd 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c94ffd 0%, #4d7cfe 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b9d, #c94ffd, #4d7cfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9375rem;
    color: #b8b8d4;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Visual Section */
.hero-visual-section {
    position: relative;
    height: 600px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    animation: morphShape 8s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3) 0%, rgba(77, 124, 254, 0.3) 100%);
}

.geometric-decoration {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
    animation: rotate360 20s linear infinite;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
    animation: rotate360 15s linear infinite reverse;
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-1 {
    top: 10%;
    left: -5%;
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation: floatCard2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 15%;
    left: 5%;
    animation: floatCard3 5s ease-in-out infinite;
}

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

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

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

.card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.card-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

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

.bg-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: -250px;
    right: -100px;
    animation: pulse1 8s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4d7cfe 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: pulse2 10s ease-in-out infinite;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #c94ffd 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: pulse3 12s ease-in-out infinite;
}

@keyframes pulse1 {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.25; }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

@keyframes pulse3 {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.bg-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    radial-gradient(at 20% 30%, rgba(255, 107, 157, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(77, 124, 254, 0.1) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(201, 79, 253, 0.1) 0px, transparent 50%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
    font-size: 3.5rem;
    }
    
    .hero-grid {
    gap: 3rem;
    }
    
    .hero-image-container {
    width: 400px;
    height: 400px;
    }
}

@media (max-width: 992px) {
    .nav-links-desktop {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .hero-title {
    font-size: 3rem;
    }
    
    .hero-description {
    font-size: 1.25rem;
    }
    
    .hero-visual-section {
    height: 500px;
    order: -1;
    }
    
    .hero-image-container {
    width: 350px;
    height: 350px;
    }
    
    .floating-card {
    padding: 1rem;
    }
    
    .card-text {
    font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
    padding: 6rem 0 3rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-title {
    font-size: 2.5rem;
    }
    
    .hero-description {
    font-size: 1.125rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    }
    
    .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    }
    
    .stat-divider {
    display: none;
    }
    
    .hero-visual-section {
    height: 400px;
    }
    
    .hero-image-container {
    width: 300px;
    height: 300px;
    }
    
    .floating-card {
    display: none;
    }
    
    .mobile-menu {
    max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
    font-size: 2rem;
    }
    
    .floating-badge {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    }
    
    .hero-description {
    font-size: 1rem;
    }
    
    .stat-number {
    font-size: 2rem;
    }
    
    .stat-label {
    font-size: 0.875rem;
    }
    
    .btn-primary,
    .btn-secondary {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    }
}

/* Menu Open State */
body.menu-open {
    overflow: hidden;
}
.post-image img {
    max-width: 100%;
}
/* Contact Form Block - Modern Gradient Card Design */
.contact-form-block-zx8q {
    position: relative;
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .contact-main-title {
    font-size: 1.75rem;
    }
    
    .contact-item-card {
    padding: 1.25rem;
    gap: 1rem;
    }
    
    .contact-icon-bubble {
    width: 48px;
    height: 48px;
    }
    
    .contact-svg-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-label {
    font-size: 0.8rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container-frame {
    height: 320px;
    border-radius: 20px;
    }
}
/* Modern Footer Block - Split Grid with Gradient Accents */
.footer-block-modern {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(165deg, #1a1a2e 0%, #0f0f1e 50%, #16213e 100%);
    color: #e4e4e7;
    overflow: hidden;
}

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

/* Top Grid Layout */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #a1a1aa;
}

.footer-icon {
    flex-shrink: 0;
    color: #00d4ff;
}

.footer-phone-link {
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-phone-link:hover {
    color: #00d4ff;
}

.footer-phone-link:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Navigation Column */
.footer-nav-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.footer-nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    color: #e4e4e7;
    transition: all 0.3s ease;
}

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

.footer-link-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-nav-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

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

.footer-nav-link:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 5px;
    border-radius: 4px;
}

/* Legal Column */
.footer-legal-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.footer-legal-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    color: #a1a1aa;
    transition: all 0.3s ease;
    padding-left: 1.5rem;
}

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

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

.footer-legal-link:hover::before {
    opacity: 1;
}

.footer-legal-link:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Decorative Divider */
.footer-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 3rem 0 2rem;
}

.footer-divider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3f3f46 20%, #3f3f46 80%, transparent 100%);
}

.footer-divider-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00d4ff 50%, transparent 100%);
    filter: blur(3px);
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #71717a;
}

.footer-year {
    font-weight: 500;
}

.footer-brand-small {
    font-weight: 600;
    color: #a1a1aa;
}

/* Background Decorative Blobs */
.footer-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.footer-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.footer-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.footer-blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00ff88 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
}

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

    .footer-brand-column {
    grid-column: 1 / -1;
    }
}

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

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

    .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    }

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

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

    .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    }

    .footer-copyright {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    }
}

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

    .footer-top-grid {
    gap: 2rem;
    }

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

    .footer-info-item {
    font-size: 0.9375rem;
    }

    .footer-nav-link {
    font-size: 0.9375rem;
    }

    .footer-legal-link {
    font-size: 0.875rem;
    }

    .footer-divider {
    margin: 2rem 0 1.5rem;
    }
}
