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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #fbcff54d;
}

#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 Glass Navigation - Floating Modern Design */
.header-glass-nav {
    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-glass-nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #0f172a;
    border-radius: 50%;
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Styles */
.dropdown-trigger {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

.dropdown-trigger.active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
}

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

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

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-wrapper {
    padding: 1rem 1.5rem;
    }
    
    .hamburger-btn {
    display: flex;
    }
    
    .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
    transform: translateX(0);
    }
    
/*    .mobile-overlay {
    display: block;
    }*/
    
    .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
    padding: 1.25rem 1rem;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    }
    
    .nav-link::before {
    display: none;
    }
    
    .dropdown-menu-new {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease, max-height 0.4s ease;
    }
    
    .dropdown-trigger.active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 0.5rem 0;
    }
    
    .dropdown-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    }
    
    .dropdown-link:hover {
    transform: translateX(10px);
    }
}

@media (max-width: 576px) {
    .nav-container {
    padding: 0 1rem;
    }
    
    .nav-wrapper {
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    }
    
    .logo-circle {
    width: 36px;
    height: 36px;
    }
    
    .logo-circle::before {
    width: 18px;
    height: 18px;
    }
    
    .brand-text {
    font-size: 1.25rem;
    }
    
    .nav-menu {
    width: 280px;
    padding: 5rem 1.5rem 2rem;
    }
    
    .nav-link {
    font-size: 1rem;
    padding: 1rem 0.75rem;
    }
}

/* Active state for current page */
.nav-link.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Ensure header doesn't overlap content */
body {
    padding-top: 100px;
}

@media (max-width: 992px) {
    body {
    padding-top: 90px;
    }
}
/* Hero Quantum - Unique Diagonal Layout */
.hero-quantum {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a0b2e 50%, #16213e 100%);
    display: flex;
    flex-direction: column;
}

/* Animated Background Layers */
.quantum-bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.layer-1 {
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 60%, rgba(247, 37, 133, 0.12) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Orbiting Decorations */
.orbit-container {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    transform: translate(0, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 212, 255, 0.3);
    animation: rotate 30s linear infinite;
}

.ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(247, 37, 133, 0.2);
    animation: rotate 40s linear infinite reverse;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.dot-1 {
    background: #00d4ff;
    animation: orbit1 20s linear infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.dot-2 {
    background: #f72585;
    animation: orbit2 25s linear infinite;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.8);
}

.dot-3 {
    background: #ffd60a;
    animation: orbit3 30s linear infinite;
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.8);
}

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

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

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

@keyframes orbit3 {
    from { transform: translate(-50%, -50%) rotate(120deg) translateX(180px) rotate(-120deg); }
    to { transform: translate(-50%, -50%) rotate(480deg) translateX(180px) rotate(-480deg); }
}

/* Header Navigation */
.quantum-header {
    position: relative;
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-mark {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.logo-mark:hover {
    transform: rotate(180deg) scale(1.1);
}

.main-nav {
    display: flex;
    gap: 3rem;
}

.nav-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

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

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

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

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-checkbox:checked ~ .menu-trigger .bar-top {
    transform: translateY(9px) rotate(45deg);
    background: #00d4ff;
}

.menu-checkbox:checked ~ .menu-trigger .bar-mid {
    opacity: 0;
    transform: scaleX(0);
}

.menu-checkbox:checked ~ .menu-trigger .bar-bot {
    transform: translateY(-9px) rotate(-45deg);
    background: #00d4ff;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(165deg, #0f0f1e 0%, #1a0b2e 100%);
    backdrop-filter: blur(20px);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.menu-checkbox:checked ~ .mobile-drawer {
    right: 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateX(50px);
    opacity: 0;
}

.menu-checkbox:checked ~ .mobile-drawer .drawer-link {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.drawer-link:hover {
    color: #00d4ff;
    padding-left: 1rem;
    border-color: #00d4ff;
}

/* Hero Stage */
.hero-stage {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.stage-left {
    padding-right: 2rem;
}

.content-pod {
    max-width: 600px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

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

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

.pill-text {
    color: #00d4ff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mega-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-fragment {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7b2ff7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.desc-block {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.action-cluster {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-quantum {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7, #f72585);
    background-size: 200% 200%;
    animation: gradient-flow 4s ease infinite;
    z-index: -1;
    transition: transform 0.4s ease;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-quantum:hover .btn-bg {
    transform: scale(1.1);
}

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

.btn-icon {
    transition: transform 0.4s ease;
}

.btn-quantum:hover .btn-icon {
    transform: translateX(5px);
}

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

/* Visual Composite */
.stage-right {
    position: relative;
}

.visual-composite {
    position: relative;
    width: 100%;
    height: 600px;
}

.main-visual {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.3));
}

.shape-group-1 { animation: float-shape 6s ease-in-out infinite; }
.shape-group-2 { animation: float-shape 7s ease-in-out infinite 1s; }
.shape-group-3 { animation: float-shape 8s ease-in-out infinite 2s; }
.shape-group-4 { animation: float-shape 5s ease-in-out infinite 0.5s; }

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

/* Metric Cards */
.metric-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float-card 4s ease-in-out infinite;
}

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

.mc-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.mc-2 {
    top: 50%;
    right: -8%;
    animation-delay: 1s;
}

.mc-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.mc-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mc-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.mc-value {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-stage {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
    }
    
    .stage-left {
    padding-right: 0;
    text-align: center;
    }
    
    .content-pod {
    max-width: 100%;
    }
    
    .status-pill {
    margin-left: auto;
    margin-right: auto;
    }
    
    .action-cluster {
    justify-content: center;
    }
    
    .orbit-container {
    display: none;
    }
    
    .main-nav {
    display: none;
    }
    
    .menu-trigger {
    display: flex;
    }
    
    .visual-composite {
    height: 400px;
    }
    
    .mc-1 {
    left: 0;
    }
    
    .mc-2 {
    right: 0;
    }
    
    .mc-3 {
    left: 0;
    }
}

@media (max-width: 768px) {
    .mega-title {
    font-size: 2.5rem;
    }
    
    .lead-text {
    font-size: 1.125rem;
    }
    
    .btn-quantum {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .metric-card {
    padding: 1rem;
    gap: 0.75rem;
    }
    
    .mc-value {
    font-size: 1rem;
    }
    
    .visual-composite {
    height: 300px;
    }
}

@media (max-width: 576px) {
    .header-inner {
    padding: 0 1rem;
    }
    
    .logo-mark svg {
    width: 40px;
    height: 40px;
    }
    
    .hero-stage {
    padding: 2rem 1rem;
    }
    
    .mega-title {
    font-size: 2rem;
    }
    
    .metric-card {
    position: static;
    margin-bottom: 1rem;
    }
    
    .visual-composite {
    height: 250px;
    }
}
/* Features Block: Diagonal Split with Neon Accents */
.features-diagonal-neon {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

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

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

/* Feature Card Styling */
.feature-card {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.8);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

/* Image Glow Effect */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card:hover .image-glow {
    opacity: 0.7;
}

.glow-lime {
    background: radial-gradient(circle, #c0ff00 0%, transparent 70%);
}

.glow-pink {
    background: radial-gradient(circle, #ff006e 0%, transparent 70%);
}

.glow-cyan {
    background: radial-gradient(circle, #00f5ff 0%, transparent 70%);
}

/* Feature Content */
.feature-content {
    padding: 2.5rem 2rem 2rem;
    position: relative;
    z-index: 3;
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.card-accent-lime .feature-number {
    background: linear-gradient(135deg, #c0ff00 0%, #7fff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-accent-pink .feature-number {
    background: linear-gradient(135deg, #ff006e 0%, #ff4d8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-accent-cyan .feature-number {
    background: linear-gradient(135deg, #00f5ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.feature-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* Accent Line */
.feature-accent-line {
    height: 4px;
    width: 0;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-accent-line {
    width: 80px;
}

.line-lime {
    background: linear-gradient(90deg, #c0ff00 0%, #7fff00 100%);
    box-shadow: 0 0 20px rgba(192, 255, 0, 0.5);
}

.line-pink {
    background: linear-gradient(90deg, #ff006e 0%, #ff4d8f 100%);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.line-cyan {
    background: linear-gradient(90deg, #00f5ff 0%, #00d4ff 100%);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* Decorative Blobs */
.deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    animation: float-blob 20s ease-in-out infinite;
}

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

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff006e 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: -10s;
}

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

/* Decorative Grid Pattern */
.deco-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    }

    .feature-card:nth-child(3) {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

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

    .feature-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
    }

    .feature-image-wrapper {
    height: 220px;
    }

    .feature-content {
    padding: 2rem 1.5rem 1.5rem;
    }

    .feature-number {
    font-size: 2.5rem;
    }

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

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

    .blob-1,
    .blob-2 {
    width: 300px;
    height: 300px;
    }
}

@media (max-width: 480px) {
    .features-diagonal-neon {
    padding: 4rem 0;
    }

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

    .feature-image-wrapper {
    height: 180px;
    }

    .feature-content {
    padding: 1.5rem 1.25rem;
    }

    .feature-number {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    }

    .feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    }

    .feature-description {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    }

    .feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    }
}

/* Focus States for Accessibility */
.feature-card:focus-within {
    outline: 3px solid rgba(192, 255, 0, 0.5);
    outline-offset: 4px;
}
/* Testimonials Carousel Block */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-block::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-block::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 35%;
    height: 55%;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
}

/* Testimonial Card */
.testimonial-card {
    min-width: 100%;
    padding: 3.5rem 2.5rem;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.85;
    transform: scale(0.95);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.18);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    border-radius: 30px 30px 0 0;
}

/* Avatar */
.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.25));
}

/* Content */
.testimonial-content {
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    color: #667eea;
    opacity: 0.3;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 2rem;
    font-weight: 400;
    font-style: italic;
}

.testimonial-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    color: #fbbf24;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #667eea;
}

.carousel-nav:hover {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.carousel-nav:focus {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 2px;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* Pagination */
.carousel-pagination {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot:hover {
    background: #a0aec0;
    transform: scale(1.2);
}

.pagination-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 32px;
    border-radius: 6px;
}

.pagination-dot:focus {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-block {
    padding: 5rem 0;
    }
    
    .testimonials-header h2 {
    font-size: 2.5rem;
    }
    
    .testimonial-card {
    padding: 3rem 2rem;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-block {
    padding: 4rem 0;
    }
    
    .testimonials-carousel-wrapper {
    padding: 0 50px;
    }
    
    .testimonial-card {
    padding: 2.5rem 1.5rem;
    }
    
    .testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    }
    
    .testimonial-name {
    font-size: 1.25rem;
    }
    
    .carousel-nav {
    width: 44px;
    height: 44px;
    }
    
    .carousel-nav svg {
    width: 20px;
    height: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-block .container {
    padding: 0 1rem;
    }
    
    .testimonials-carousel-wrapper {
    padding: 0 40px;
    }
    
    .testimonial-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
    }
    
    .testimonial-avatar {
    width: 70px;
    height: 70px;
    }
    
    .quote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    }
    
    .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .testimonial-name {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    }
    
    .testimonial-stars svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-nav {
    width: 40px;
    height: 40px;
    }
    
    .carousel-nav svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-pagination {
    margin-top: 2rem;
    gap: 0.75rem;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .pagination-dot.active {
    width: 28px;
    }
}

/* Fallback for no-JS - show all cards stacked */
.no-js .testimonials-carousel-track {
    flex-direction: column;
    gap: 2rem;
}

.no-js .testimonial-card {
    min-width: 100%;
    opacity: 1;
    transform: scale(1);
}

.no-js .carousel-nav,
.no-js .carousel-pagination {
    display: none;
}
/* Services Block - Floating Cards with Gradient Mesh */
.services-float-mesh {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffeaa7 100%);
    overflow: hidden;
}

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

.services-header-wrap {
    text-align: center;
    margin-bottom: 5rem;
}

.services-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b9d 0%, #c44569 50%, #ff6b9d 100%);
    margin: 0 auto;
    border-radius: 10px;
}

/* Grid Layout */
.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Service Card */
.service-card-float {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
}

.service-card-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d 0%, #c44569 50%, #4facfe 100%);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-float:hover::before {
    opacity: 1;
}

/* Icon Container */
.service-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 157, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-float:hover .service-icon-container {
    transform: rotate(8deg) scale(1.1);
    background: rgba(255, 107, 157, 0.15);
}

.service-svg-icon {
    width: 56px;
    height: 56px;
    transition: transform 0.3s ease;
}

.service-card-float:hover .service-svg-icon {
    transform: scale(1.15);
}

/* Service Name */
.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Service Description */
.service-description {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* More Button */
.service-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid transparent;
}

.service-more-btn:hover {
    background: linear-gradient(135deg, #ff5a8d 0%, #b33559 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.service-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.3);
}

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

.service-more-btn:hover .btn-arrow {
    transform: translateX(4px);
}

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

.services-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffc3a0 100%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.services-blob-2 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -15%;
    right: -5%;
    animation-delay: 7s;
}

.services-blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 14s;
}

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

/* Tablet Responsive */
@media (max-width: 992px) {
    .services-float-mesh {
    padding: 5rem 0;
    }
    
    .services-main-title {
    font-size: 2.75rem;
    }
    
    .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    
    .service-card-float {
    padding: 2rem;
    }
    
    .services-bg-blob {
    filter: blur(50px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-float-mesh {
    padding: 4rem 0;
    }
    
    .services-container {
    padding: 0 1.5rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .services-title-accent {
    width: 80px;
    height: 5px;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .service-card-float {
    padding: 1.75rem;
    }
    
    .service-icon-container {
    width: 70px;
    height: 70px;
    }
    
    .service-svg-icon {
    width: 48px;
    height: 48px;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
    
    .services-bg-blob {
    filter: blur(40px);
    opacity: 0.3;
    }
    
    .services-blob-1 {
    width: 350px;
    height: 350px;
    }
    
    .services-blob-2 {
    width: 300px;
    height: 300px;
    }
    
    .services-blob-3 {
    width: 280px;
    height: 280px;
    }
}

@media (max-width: 576px) {
    .services-main-title {
    font-size: 1.875rem;
    }
    
    .service-card-float {
    padding: 1.5rem;
    }
    
    .service-icon-container {
    width: 64px;
    height: 64px;
    }
    
    .service-svg-icon {
    width: 42px;
    height: 42px;
    }
}
/* FAQ Section: Glassmorphic Design with Pure CSS Accordion */
.faq-section-glassy {
    padding: 7rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-glassy::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: faq-pattern-drift 60s linear infinite;
}

@keyframes faq-pattern-drift {
    0% {
    transform: translate(0, 0);
    }
    100% {
    transform: translate(40px, 40px);
    }
}

.faq-section-glassy .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.faq-header-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.faq-item-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.faq-checkbox-hidden {
    display: none;
}

.faq-question-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question-label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question-label:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
    padding-right: 2rem;
}

.faq-icon-indicator {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item-glass:hover .faq-icon-indicator {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-plus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-icon-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-checkbox-hidden:checked ~ .faq-question-label .faq-icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-checkbox-hidden:checked ~ .faq-question-label .faq-icon-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-checkbox-hidden:checked ~ .faq-answer-wrapper {
    max-height: 1000px;
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer-content {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-answer-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-glassy {
    padding: 4rem 0;
    }

    .faq-header-wrapper {
    margin-bottom: 2.5rem;
    }

    .faq-main-title {
    font-size: 2rem;
    }

    .faq-accordion-container {
    gap: 1rem;
    }

    .faq-question-label {
    padding: 1.5rem 1.5rem;
    }

    .faq-question-text {
    font-size: 1.125rem;
    padding-right: 1rem;
    }

    .faq-icon-indicator {
    width: 40px;
    height: 40px;
    }

    .faq-icon-plus svg,
    .faq-icon-minus svg {
    width: 20px;
    height: 20px;
    }

    .faq-checkbox-hidden:checked ~ .faq-answer-wrapper {
    padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .faq-section-glassy {
    padding: 3rem 0;
    }

    .faq-question-label {
    padding: 1.25rem 1.25rem;
    }

    .faq-question-text {
    font-size: 1rem;
    }

    .faq-item-glass {
    border-radius: 16px;
    }
}
/* Contact Form Block: Geometric Split Design with Gradient Accent */
.contact-form-section-zx9 {
    padding: 0;
    margin: 0;
    background: linear-gradient(165deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-form-section-zx9::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow-zx9 8s ease-in-out infinite;
}

@keyframes pulse-glow-zx9 {
    0%, 100% {
    transform: scale(1);
    opacity: 0.3;
    }
    50% {
    transform: scale(1.1);
    opacity: 0.5;
    }
}

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

.contact-content-wrapper-zx9 {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 
                0 0 80px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Visual Panel with Geometric Shapes */
.contact-visual-panel-zx9 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.geometric-shape-1-zx9 {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
    animation: float-shape-1-zx9 6s ease-in-out infinite;
}

@keyframes float-shape-1-zx9 {
    0%, 100% {
    transform: rotate(45deg) translateY(0);
    }
    50% {
    transform: rotate(55deg) translateY(-20px);
    }
}

.geometric-shape-2-zx9 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transform: rotate(25deg);
    animation: float-shape-2-zx9 7s ease-in-out infinite;
}

@keyframes float-shape-2-zx9 {
    0%, 100% {
    transform: rotate(25deg) translateX(0);
    }
    50% {
    transform: rotate(35deg) translateX(15px);
    }
}

.geometric-shape-3-zx9 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.floating-circle-zx9 {
    position: absolute;
    top: 60%;
    left: 25%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
    animation: float-circle-zx9 5s ease-in-out infinite;
}

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

/* Form Panel */
.contact-form-panel-zx9 {
    padding: 5rem 4rem;
    background: rgba(15, 12, 41, 0.6);
    backdrop-filter: blur(10px);
}

.contact-heading-zx9 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-heading-zx9::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    border-radius: 2px;
}

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

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

.form-label-zx9 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input-zx9,
.form-textarea-zx9 {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1.0625rem;
    font-family: inherit;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-input-zx9::placeholder,
.form-textarea-zx9::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-zx9:focus,
.form-textarea-zx9:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f093fb;
    box-shadow: 0 0 0 4px rgba(240, 147, 251, 0.15),
                0 8px 24px rgba(240, 147, 251, 0.2);
    transform: translateY(-2px);
}

.form-input-zx9:hover,
.form-textarea-zx9:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

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

/* Submit Button */
.form-submit-btn-zx9 {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    align-self: flex-start;
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

.form-submit-btn-zx9::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-zx9:hover::before {
    left: 100%;
}

.form-submit-btn-zx9:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.45);
}

.form-submit-btn-zx9:active {
    transform: translateY(-2px) scale(0.98);
}

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-content-wrapper-zx9 {
    grid-template-columns: 42% 58%;
    }
    
    .contact-form-panel-zx9 {
    padding: 4rem 3rem;
    }
}

@media (max-width: 992px) {
    .contact-content-wrapper-zx9 {
    grid-template-columns: 1fr;
    }
    
    .contact-visual-panel-zx9 {
    padding: 4rem 2rem;
    min-height: 300px;
    }
    
    .contact-form-panel-zx9 {
    padding: 3.5rem 2.5rem;
    }
    
    .contact-heading-zx9 {
    font-size: 2.5rem;
    }
    
    .geometric-shape-1-zx9 {
    width: 140px;
    height: 140px;
    }
    
    .geometric-shape-3-zx9 {
    width: 220px;
    height: 220px;
    }
}

@media (max-width: 768px) {
    .contact-form-section-zx9 {
    min-height: auto;
    padding: 3rem 0;
    }
    
    .contact-container-zx9 {
    padding: 2rem 1.5rem;
    }
    
    .contact-content-wrapper-zx9 {
    border-radius: 0 30px 0 30px;
    }
    
    .contact-form-panel-zx9 {
    padding: 2.5rem 2rem;
    }
    
    .contact-heading-zx9 {
    font-size: 2rem;
    margin-bottom: 2rem;
    }
    
    .form-input-zx9,
    .form-textarea-zx9 {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .form-submit-btn-zx9 {
    width: 100%;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    }
    
    .contact-visual-panel-zx9 {
    display: none;
    }
}

@media (max-width: 576px) {
    .contact-heading-zx9 {
    font-size: 1.75rem;
    }
    
    .form-label-zx9 {
    font-size: 0.875rem;
    }
    
    .form-group-zx9 {
    gap: 0.5rem;
    }
    
    .contact-form-zx9 {
    gap: 1.5rem;
    }
}
/* Contact Information Block: Asymmetric Split with Floating Cards Design */
.contact-info-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

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

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.contact-content-wrapper {
    width: 100%;
}

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

.contact-main-header {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

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

.contact-layout-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: start;
}

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

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1 0%, #ec4899 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(30, 41, 59, 0.15);
}

.contact-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.contact-address-card {
    border-left: 4px solid #6366f1;
}

.contact-phone-card {
    border-left: 4px solid #8b5cf6;
}

.contact-email-card {
    border-left: 4px solid #ec4899;
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #f0f1ff 0%, #e0e7ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-address-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.contact-phone-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.contact-email-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

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

.contact-icon {
    width: 28px;
    height: 28px;
    color: #6366f1;
}

.contact-phone-card .contact-icon {
    color: #8b5cf6;
}

.contact-email-card .contact-icon {
    color: #ec4899;
}

.contact-info-content {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
}

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

.contact-link:hover {
    color: #6366f1;
}

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

.contact-map-column {
    position: sticky;
    top: 2rem;
}

.contact-map-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

.contact-map-container {
    border-radius: 18px;
    overflow: hidden;
    height: 500px;
    position: relative;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-map-column {
    position: static;
    }
    
    .contact-main-header {
    font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
    padding: 5rem 0;
    }
    
    .contact-main-header {
    font-size: 2.25rem;
    }
    
    .contact-header-area {
    margin-bottom: 3rem;
    }
    
    .contact-card {
    padding: 1.5rem;
    gap: 1.25rem;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    }
    
    .contact-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .contact-map-container {
    height: 400px;
    }
    
    .contact-card:hover {
    transform: translateX(4px);
    }
}

@media (max-width: 576px) {
    .contact-info-section {
    padding: 4rem 0;
    }
    
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    }
    
    .contact-map-wrapper {
    padding: 0.75rem;
    }
    
    .contact-map-container {
    height: 320px;
    }
    
    .contact-details-column {
    gap: 1.5rem;
    }
}
/* 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;
    }
}
