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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #bcd1064d;
}

#about {
    font-size: 1.2rem;
}

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

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Header Block: Asymmetric Split Design - NO CSS Variables */
.header-block-asymm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

.nav-item {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hamburger-menu {
    display: flex;
    }

    .header-container {
    height: 75px;
    }

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

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

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

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

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

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

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

    .mobile-navigation {
    padding: 100px 1.5rem 2rem;
    }
}
/* Hero Wave Block: Asymmetric Pink-Orange Gradient Design */
.hero-wave-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(165deg, #ff0a78 0%, #ff6b35 35%, #ffa07a 70%, #ffcdb2 100%);
}

/* Background Layer */
.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;
    opacity: 0.08;
    filter: grayscale(100%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 10, 120, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%);
}

/* Floating Background Shapes */
.hero-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    animation: heroFloat 20s ease-in-out infinite;
}

.float-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.float-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.float-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.float-shape.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: -8%;
    animation-delay: 15s;
    animation-duration: 28s;
}

@keyframes heroFloat {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    }
    25% {
    transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
    transform: translate(-20px, 40px) rotate(180deg);
    }
    75% {
    transform: translate(40px, 20px) rotate(270deg);
    }
}

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

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

.hero-logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-logo-icon {
    width: 50px;
    height: 50px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-icon:hover {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.5));
}

/* Hamburger Menu */
.hero-menu-checkbox {
    display: none;
}

.hero-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
    position: relative;
}

.hero-ham-line {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-menu-checkbox:checked ~ .hero-hamburger .hero-ham-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ffffff;
}

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

.hero-menu-checkbox:checked ~ .hero-hamburger .hero-ham-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ffffff;
}

/* Navigation Menu */
.hero-nav-menu {
    display: flex;
    align-items: center;
}

.hero-nav-backdrop {
    display: none;
}

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

.hero-nav-item {
    position: relative;
}

.hero-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero-nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

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

.hero-nav-link:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

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

.hero-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Badge Pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    width: fit-content;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: heroPulseGlow 3s ease-in-out infinite;
}

@keyframes heroPulseGlow {
    0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.hero-badge-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

/* Main Title */
.hero-main-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Title Decoration */
.hero-title-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: heroFadeIn 1.2s ease 0.3s both;
}

@keyframes heroFadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
}

.hero-deco-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.hero-deco-star {
    width: 32px;
    height: 32px;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    animation: heroRotateStar 10s linear infinite;
}

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

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 600px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.hero-btn-primary {
    background: #ffffff;
    color: #ff0a78;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #fff5f8;
}

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

.hero-btn-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary:hover .hero-btn-arrow {
    transform: translateX(6px);
}

.hero-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-trust-item {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-trust-item:hover {
    transform: translateY(-6px) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-trust-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

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

.hero-floating-card {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroCardFloat 6s ease-in-out infinite;
}

.hero-floating-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-floating-card:hover::before {
    opacity: 1;
}

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

.hero-card-2 {
    top: 45%;
    right: 15%;
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

.hero-card-3 {
    bottom: 5%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero-floating-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-floating-card:hover .hero-card-glow {
    opacity: 1;
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-floating-card:hover .hero-card-icon {
    transform: scale(1.15) rotate(10deg);
}

/* Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    color: #ffffff;
    opacity: 0.15;
}

.hero-wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-visual-column {
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
    }
    
    .hero-main-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .hero-floating-card {
    width: 150px;
    height: 150px;
    }
    
    .hero-card-2 {
    width: 160px;
    height: 160px;
    }
}

@media (max-width: 768px) {
    .hero-hamburger {
    display: flex;
    }
    
    .hero-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(165deg, #ff0a78 0%, #ff6b35 100%);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
    z-index: 105;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu {
    right: 0;
    }
    
    .hero-nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 100;
    backdrop-filter: blur(4px);
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-backdrop {
    opacity: 1;
    visibility: visible;
    }
    
    .hero-nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    }
    
    .hero-nav-item {
    opacity: 0;
    transform: translateX(40px);
    animation: heroSlideInMenu 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(1) {
    animation-delay: 0.1s;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(2) {
    animation-delay: 0.2s;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(3) {
    animation-delay: 0.3s;
    }
    
    @keyframes heroSlideInMenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    .hero-nav-link {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    }
    
    .hero-nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    }
    
    .hero-nav-link::before {
    display: none;
    }
    
    .hero-content-wrapper {
    padding: 2rem 0 4rem;
    }
    
    .hero-text-column {
    text-align: center;
    align-items: center;
    }
    
    .hero-subtitle {
    max-width: 100%;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-trust-badges {
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .hero-floating-card {
    width: 120px;
    height: 120px;
    }
    
    .hero-card-2 {
    width: 140px;
    height: 140px;
    }
    
    .hero-card-icon {
    width: 60px;
    height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-nav-container {
    padding: 0 1rem;
    }
    
    .hero-content-container {
    padding: 0 1rem;
    }
    
    .hero-main-title {
    font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-badges {
    gap: 1rem;
    }
    
    .hero-trust-item {
    width: 48px;
    height: 48px;
    }
    
    .hero-trust-icon {
    width: 28px;
    height: 28px;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .hero-floating-card {
    width: 100px;
    height: 100px;
    }
    
    .hero-card-2 {
    width: 120px;
    height: 120px;
    }
    
    .hero-card-icon {
    width: 50px;
    height: 50px;
    }
    
    .float-shape {
    width: 150px !important;
    height: 150px !important;
    }
}
.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 Labels */
.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;
    justify-content: center;
}

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

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

.contact-header-area {
    position: relative;
    text-align: center;
    padding: 3rem 0;
}

.decorative-blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.15;
    z-index: -1;
    animation: morphBlob 8s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    top: -50px;
    left: -100px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ffa07a 0%, #ff7f50 100%);
    bottom: -50px;
    right: -80px;
    animation-delay: -4s;
}

@keyframes morphBlob {
    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.95);
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg) scale(1.05);
    }
}

.contact-main-header {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.form-group-floating {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-input-field {
    width: 100%;
    padding: 1.25rem 0.75rem 0.75rem;
    font-size: 1.125rem;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.5rem;
}

.floating-label {
    position: absolute;
    left: 0.75rem;
    top: 1.25rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.form-input-field:focus ~ .floating-label,
.form-input-field:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    font-size: 0.875rem;
    color: #ffa07a;
    font-weight: 600;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input-field:focus ~ .input-underline {
    width: 100%;
}

.form-input-field:focus {
    border-bottom-color: transparent;
}

.form-input-field::placeholder {
    color: transparent;
}

.textarea-group .floating-label {
    top: 1.5rem;
}

.form-textarea:focus ~ .floating-label,
.form-textarea:not(:placeholder-shown) ~ .floating-label {
    top: 0.25rem;
}

.submit-button-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.submit-button-modern {
    position: relative;
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa07a 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.submit-button-modern::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;
}

.submit-button-modern:hover::before {
    left: 100%;
}

.submit-button-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
    background: linear-gradient(135deg, #ff7fa8 0%, #ffb08a 100%);
}

.submit-button-modern:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.5);
}

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

.button-icon {
    position: relative;
    z-index: 1;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button-modern:hover .button-icon {
    transform: translateX(5px) rotate(15deg);
}

.background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffa07a 0%, transparent 70%);
    bottom: 15%;
    left: 10%;
    animation: float 12s ease-in-out infinite reverse;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
    transform: translateY(0) translateX(0);
    }
    33% {
    transform: translateY(-30px) translateX(20px);
    }
    66% {
    transform: translateY(20px) translateX(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
    }
    50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.12;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-main-header {
    font-size: 3.5rem;
    }
    
    .contact-form-modern {
    padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
    padding: 5rem 0;
    min-height: auto;
    }
    
    .contact-container {
    padding: 0 1.5rem;
    }
    
    .contact-content-wrapper {
    gap: 2rem;
    }
    
    .contact-header-area {
    padding: 2rem 0;
    }
    
    .contact-main-header {
    font-size: 2.5rem;
    }
    
    .contact-form-modern {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-input-field {
    font-size: 1rem;
    padding: 1rem 0.5rem 0.5rem;
    }
    
    .floating-label {
    font-size: 1rem;
    top: 1rem;
    }
    
    .form-input-field:focus ~ .floating-label,
    .form-input-field:not(:placeholder-shown) ~ .floating-label {
    font-size: 0.8125rem;
    }
    
    .submit-button-modern {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    }
    
    .blob-1,
    .blob-2 {
    width: 200px;
    height: 200px;
    }
    
    .circle-decoration {
    display: none;
    }
}

@media (max-width: 480px) {
    .contact-main-header {
    font-size: 2rem;
    }
    
    .contact-form-modern {
    padding: 2rem 1rem;
    }
    
    .form-group-floating {
    margin-bottom: 2rem;
    }
}
/* 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;
    }
}
