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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #95b3624d;
}

#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 Block - Modern Floating Design */
.contact-form-block-kx9 {
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.contact-form-block-kx9::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-block-kx9 .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.form-wrapper-inner {
    background: #ffffff;
    border-radius: 32px;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-wrapper-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 32px 32px 0 0;
}

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

.section-title-contact {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

.form-label-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.01em;
    padding-left: 0.25rem;
}

.form-input-control,
.form-textarea-control {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input-control::placeholder,
.form-textarea-control::placeholder {
    color: #94a3b8;
}

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

.form-input-control:focus,
.form-textarea-control:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

.form-input-control:active,
.form-textarea-control:active {
    transform: translateY(0);
}

.form-textarea-control {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.375rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 4px 8px rgba(99, 102, 241, 0.15);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.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.2), transparent);
    transition: left 0.5s ease;
}

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35), 0 6px 12px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25), 0 2px 6px rgba(99, 102, 241, 0.15);
}

.form-submit-btn:focus {
    outline: none;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.btn-arrow-icon {
    display: inline-block;
    font-size: 1.375rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-block-kx9 {
    padding: 5rem 0;
    }
    
    .form-wrapper-inner {
    padding: 3rem 2rem;
    border-radius: 24px;
    }
    
    .form-header-area {
    margin-bottom: 2.5rem;
    }
    
    .section-title-contact {
    font-size: 2rem;
    }
    
    .contact-form-main {
    gap: 1.5rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 12px;
    }
    
    .form-submit-btn {
    padding: 1.25rem 1.75rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-block-kx9 {
    padding: 4rem 0;
    }
    
    .form-wrapper-inner {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-header-area {
    margin-bottom: 2rem;
    }
    
    .contact-form-main {
    gap: 1.25rem;
    }
    
    .form-label-text {
    font-size: 0.875rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    }
    
    .form-submit-btn {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    gap: 0.625rem;
    }
    
    .btn-arrow-icon {
    font-size: 1.25rem;
    }
}
/* 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;
    }
}
/* Footer Wave Minimal - Unique Design with Gradient Accent */
.footer-wave-minimal {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding-top: 0;
    overflow: hidden;
}

.footer-wave-divider {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 4rem;
    color: #667eea;
    transform: translateY(1px);
}

.footer-wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-content-wrapper {
    position: relative;
    padding: 0 0 3rem 0;
}

.footer-wave-minimal .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-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: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transition: all 0.4s ease;
}

.footer-brand-icon:hover {
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

.footer-brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.02em;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #667eea;
}

.footer-phone-link {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.footer-phone-link:hover {
    color: #667eea;
}

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

/* Navigation Columns */
.footer-column-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

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

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

.footer-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #e8ecf1;
    border-radius: 6px;
    color: #667eea;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #667eea;
    transform: translateX(4px);
}

.footer-nav-link:hover .footer-link-arrow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 2px solid #e8ecf1;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-copyright {
    margin: 0;
    color: #718096;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.footer-bottom-decoration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-decoration-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: footer-pulse 2s ease-in-out infinite;
}

.footer-decoration-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-decoration-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes footer-pulse {
    0%, 100% {
    opacity: 0.4;
    transform: scale(1);
    }
    50% {
    opacity: 1;
    transform: scale(1.2);
    }
}

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

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

@media (max-width: 768px) {
    .footer-wave-divider {
    height: 80px;
    margin-bottom: 3rem;
    }

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

    .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    }

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

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

    .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    }

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

@media (max-width: 576px) {
    .footer-wave-minimal .container {
    padding: 0 1rem;
    }

    .footer-grid {
    gap: 2rem;
    }

    .footer-brand-icon {
    width: 48px;
    height: 48px;
    }

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

    .footer-column-title {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    }

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