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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #94b1244d;
}

#about {
    font-size: 1.2rem;
}

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

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Header Block: Asymmetric Floating Glassmorphism Navigation */
.header-floating-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

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

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

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

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

}

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

.nav-item {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .header-floating-glass {
    padding: 1rem 0;
    }
    
    .header-container {
    padding: 0 1.25rem;
    }
    
    .brand-icon {
    width: 38px;
    height: 38px;
    }
    
    .brand-icon svg {
    width: 20px;
    height: 20px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
    
    .nav-mobile {
    padding: 5rem 1.25rem 2rem;
    }
    
    .mobile-nav-link {
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    }
    
    .mobile-submenu-link {
    padding: 0.875rem 1.25rem 0.875rem 2rem;
    font-size: 1.0625rem;
    }
    
    .mobile-search-input {
    padding: 1rem 3.5rem 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .mobile-search-button {
    width: 40px;
    height: 40px;
    }
}
/* Hero Block: Geometric Split Design */
.hero-block-geometric {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0e27;
}

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    opacity: 0.95;
}

/* Geometric Shapes */
.hero-geometric-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morph 20s ease-in-out infinite;
}

.hero-geometric-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-geometric-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -100px;
    left: -100px;
    animation-delay: 7s;
}

.hero-geometric-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes morph {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
    }
    25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: rotate(90deg) scale(1.1);
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(180deg) scale(0.9);
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg) scale(1.05);
    }
}

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

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

.hero-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-logo svg {
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
}

/* Mobile Menu Toggle */
.menu-toggle-input {
    display: none;
}

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

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

.menu-toggle-input:checked ~ .menu-toggle-label .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle-input:checked ~ .menu-toggle-label .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation */
.hero-nav {
    position: relative;
}

.nav-backdrop {
    display: none;
}

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

.nav-item {
    position: relative;
}

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

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    transition: width 0.4s ease;
}

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

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

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

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

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

/* Text Column */
.hero-text-column {
    position: relative;
}

.hero-text-inner {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-badge svg {
    animation: rotate 3s linear infinite;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.title-line {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 3rem 0;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7b2ff7, #00d4ff);
    transition: left 0.4s ease;
}

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

.hero-btn-primary span,
.hero-btn-primary svg {
    position: relative;
    z-index: 1;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

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

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

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

/* Floating Cards */
.hero-floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
}

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

.floating-card.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 3s;
}

.floating-card.card-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-20px) rotate(2deg);
    }
}

.card-pulse {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Decoration Elements */
.hero-decoration-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border: 2px dashed rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 30s linear infinite;
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-decoration-dots {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(0, 212, 255, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
}

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

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.5));
}

.scroll-dot {
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% {
    transform: translateY(0);
    opacity: 1;
    }
    50% {
    transform: translateY(20px);
    opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .hero-visual-column {
    height: 400px;
    order: -1;
    }
    
    .hero-title {
    font-size: 3rem;
    }
    
    .hero-subtitle {
    font-size: 1.25rem;
    }
    
    .floating-card {
    padding: 1.5rem;
    }
    
    .hero-decoration-circle {
    width: 350px;
    height: 350px;
    }
}

@media (max-width: 768px) {
    .menu-toggle-label {
    display: flex;
    }
    
    .hero-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 320px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99;
    }
    
    .menu-toggle-input:checked ~ .hero-nav {
    transform: translateX(0);
    }
    
    .nav-backdrop {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-list {
    position: relative;
    flex-direction: column;
    gap: 0;
    padding: 6rem 2rem 2rem;
    height: 100%;
    align-items: flex-start;
    }
    
    .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInNav 0.4s ease forwards;
    }
    
    .menu-toggle-input:checked ~ .hero-nav .nav-item:nth-child(1) {
    animation-delay: 0.1s;
    }
    
    @keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    .nav-link {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    }
    
    .hero-btn {
    width: 100%;
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .floating-card {
    padding: 1rem;
    }
    
    .floating-card svg {
    width: 36px;
    height: 36px;
    }
    
    .hero-geometric-shape.shape-1 {
    width: 400px;
    height: 400px;
    }
    
    .hero-geometric-shape.shape-2 {
    width: 300px;
    height: 300px;
    }
    
    .hero-geometric-shape.shape-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-header-container {
    padding: 0 1.5rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-title {
    font-size: 2rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-badge {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    }
    
    .feature-mini-item {
    font-size: 0.9375rem;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
}
.post-preview > a {
    color: #212529;
}
.post-preview > a:focus,
.post-preview > a:hover {
    text-decoration: none;
    color: #0085a1;
}
.post-preview > a > .post-title {
    font-size: 1.875rem;
    margin-top: 1.875rem;
    margin-bottom: 0.625rem;
}
.post-preview > a > .post-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.625rem;
}
.post-preview > .post-meta {
    font-size: 1.125rem;
    font-style: italic;
    margin-top: 0;
    color: #6c757d;
}
.post-preview > .post-meta > a {
    text-decoration: none;
}
@media (min-width: 992px) {
    .post-preview > a > .post-title {
        font-size: 2.25rem;
    }
}
/* Contact Form Section - Asymmetric Split with Floating Card Design */
.contact-form-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.contact-content-wrapper {
    display: grid;

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
}
/* Contact Information Block: Geometric Split Design with Floating Cards */

.contact-info-block-x7k2 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

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

.contact-inner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Header Section */
.contact-header-zone {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.title-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

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

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
}

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

.card-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

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

.contact-icon-svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.card-content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.contact-label-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.contact-link-hover {
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.contact-link-hover:hover {
    color: #06b6d4;
}

/* Map Column */
.contact-map-column {
    position: relative;
}

.map-frame-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.map-overlay-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 24px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

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

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

/* Decorative Background Elements */
.bg-decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.circle-top-right {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.circle-bottom-left {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

/* Desktop Layout: Two Columns */
@media (min-width: 992px) {
    .contact-inner-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 3rem;
    }
    
    .contact-header-zone {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    }
    
    .contact-details-column {
    grid-column: 1;
    grid-row: 2;
    }
    
    .contact-map-column {
    grid-column: 2;
    grid-row: 2;
    }
    
    .map-frame-container {
    min-height: 100%;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .contact-main-title {
    font-size: 2.75rem;
    }
    
    .map-frame-container {
    min-height: 450px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-info-block-x7k2 {
    padding: 5rem 0;
    }
    
    .contact-container-wrapper {
    padding: 0 1.25rem;
    }
    
    .contact-main-title {
    font-size: 2rem;
    letter-spacing: -0.01em;
    }
    
    .title-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .contact-inner-grid {
    gap: 2rem;
    }
    
    .contact-details-column {
    gap: 1.5rem;
    }
    
    .contact-card-item {
    padding: 1.5rem;
    gap: 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    }
    
    .card-icon-wrapper {
    width: 56px;
    height: 56px;
    }
    
    .contact-icon-svg {
    width: 28px;
    height: 28px;
    }
    
    .contact-value-text {
    font-size: 1.125rem;
    }
    
    .map-frame-container {
    min-height: 400px;
    border-radius: 16px;
    }
    
    .map-overlay-border {
    border-radius: 16px;
    }
    
    .circle-top-right {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    }
    
    .circle-bottom-left {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
    font-size: 1.75rem;
    }
    
    .contact-card-item {
    padding: 1.25rem;
    }
    
    .card-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-icon-svg {
    width: 24px;
    height: 24px;
    }
    
    .contact-value-text {
    font-size: 1rem;
    }
    
    .map-frame-container {
    min-height: 350px;
    }
}
/* Modern Split Footer - Unique Design: Gradient Accent with Floating Elements */
.footer-modern-split {
    position: relative;
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8eaf6;
    padding: 5rem 0 2rem;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

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

/* Company Information Block */
.footer-company-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.footer-brand-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 100%);
    border-radius: 2px;
    position: relative;
}

.footer-brand-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    animation: accentSlide 2s ease-in-out infinite;
}

@keyframes accentSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(150%); }
}

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

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

.footer-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #e94560;
    margin-top: 2px;
}

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

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

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

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

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

/* Navigation Blocks */
.footer-nav-block,
.footer-legal-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-nav-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e94560;
}

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

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

.footer-link-dot {
    width: 6px;
    height: 6px;
    background: #e94560;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.footer-nav-link:hover .footer-link-dot {
    background: #f39c12;
    transform: scale(1.4);
}

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

/* Decorative Divider */
.footer-divider-wrapper {
    position: relative;
    height: 1px;
    margin: 3rem 0 2.5rem;
}

.footer-divider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-divider-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 50%, transparent 100%);
    animation: dividerSlide 4s ease-in-out infinite;
}

@keyframes dividerSlide {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(150%); opacity: 0.6; }
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #8492a6;
    margin: 0;
    line-height: 1.6;
}

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

.footer-bg-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e94560 0%, transparent 70%);
    top: -250px;
    right: -150px;
    animation: floatCircle1 15s ease-in-out infinite;
}

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

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

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

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

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

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

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

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

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

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

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

    .footer-contact-item {
    flex-direction: row;
    align-items: flex-start;
    }

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

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

    .footer-bg-circle-1 {
    width: 350px;
    height: 350px;
    top: -175px;
    right: -100px;
    }

    .footer-bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
    }

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

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

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

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

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

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

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

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

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