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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #15be464d;
}

#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 Block: Asymmetric Split with Floating Elements - Pink/Coral/Cyan Theme */
.hero-block-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0a0a;
}

/* Background System */
.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.15;
    filter: grayscale(40%) contrast(1.2);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
    rgba(255, 107, 157, 0.95) 0%, 
    rgba(196, 69, 105, 0.92) 35%,
    rgba(238, 90, 111, 0.88) 65%,
    rgba(72, 219, 251, 0.9) 100%);
    mix-blend-mode: multiply;
}

.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape-blob {
    position: absolute;
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    filter: blur(60px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.shape-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #feca57 0%, #ee5a6f 100%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #48dbfb 0%, #0abde3 100%);
    bottom: -5%;
    left: -8%;
    animation-delay: 7s;
}

.shape-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff6b9d 0%, #c44569 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes blobFloat {
    0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
    transform: translate(30px, -30px) scale(1.1) rotate(120deg);
    }
    66% {
    transform: translate(-20px, 20px) scale(0.9) rotate(240deg);
    }
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.nav-logo:hover {
    transform: rotate(90deg) scale(1.1);
    color: #feca57;
}

.nav-logo svg {
    filter: drop-shadow(0 4px 12px rgba(254, 202, 87, 0.3));
}

/* Hamburger Menu */
.nav-toggle-checkbox {
    display: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 102;
    padding: 10px;
}

.hamburger-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(254, 202, 87, 0.3);
}

.nav-toggle-checkbox:checked ~ .nav-hamburger .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #feca57;
}

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

.nav-toggle-checkbox:checked ~ .nav-hamburger .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #feca57;
}

.nav-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 98;
}

.nav-toggle-checkbox:checked ~ .nav-menu-overlay {
    opacity: 1;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

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

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

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

.nav-cta {
    background: linear-gradient(135deg, #feca57 0%, #ee5a6f 100%);
    color: #0a0a0a;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(254, 202, 87, 0.35);
    border: 2px solid transparent;
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(254, 202, 87, 0.5);
    background: linear-gradient(135deg, #ee5a6f 0%, #feca57 100%);
    color: #ffffff;
}

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

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

.hero-content-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: center;
}

.hero-text-column {
    position: relative;
}

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

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: heroTitleFade 1s ease-out;
}

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

.hero-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #feca57 0%, #ee5a6f 50%, #48dbfb 100%);
    border-radius: 3px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(254, 202, 87, 0.4);
    animation: accentSlide 1s ease-out 0.2s backwards;
}

@keyframes accentSlide {
    from {
    width: 0;
    opacity: 0;
    }
    to {
    width: 120px;
    opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 3rem 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    animation: heroSubtitleFade 1s ease-out 0.3s backwards;
}

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

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: heroCTAFade 1s ease-out 0.5s backwards;
}

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

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

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #feca57 0%, #ee5a6f 100%);
    color: #0a0a0a;
    box-shadow: 0 12px 32px rgba(254, 202, 87, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(254, 202, 87, 0.6);
}

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

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

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

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

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.floating-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(254, 202, 87, 0.4);
    border-color: rgba(254, 202, 87, 0.4);
}

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

.floating-card-2 {
    top: 40%;
    right: 10%;
    animation: floatAnimation2 7s ease-in-out infinite 1s;
}

.floating-card-3 {
    bottom: 15%;
    left: 15%;
    animation: floatAnimation3 8s ease-in-out infinite 2s;
}

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

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

@keyframes floatAnimation3 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-18px) rotate(3deg);
    }
}

.hero-circle-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border: 3px solid rgba(254, 202, 87, 0.2);
    border-radius: 50%;
    animation: pulseCircle 4s ease-in-out infinite;
    z-index: -1;
}

.hero-circle-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 2px solid rgba(72, 219, 251, 0.2);
    border-radius: 50%;
    animation: pulseCircle 4s ease-in-out infinite 1s;
}

@keyframes pulseCircle {
    0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
    }
    50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
    }
}

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

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(254, 202, 87, 0.6) 100%);
    border-radius: 2px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #feca57;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(254, 202, 87, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-visual-column {
    height: 400px;
    order: -1;
    }
    
    .hero-text-inner {
    max-width: 100%;
    }
}

@media (max-width: 992px) {
    .nav-hamburger {
    display: flex;
    }
    
    .nav-menu-overlay {
    display: block;
    }
    
    .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(196, 69, 105, 0.95) 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6rem 2rem 2rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99;
    overflow-y: auto;
    }
    
    .nav-toggle-checkbox:checked ~ .nav-menu {
    right: 0;
    }
    
    .nav-link {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    }
    
    .nav-link::before {
    left: 0;
    transform: translateX(0) scaleX(0);
    width: 4px;
    height: 100%;
    bottom: 0;
    border-radius: 0 4px 4px 0;
    }
    
    .nav-link:hover::before {
    transform: translateX(0) scaleX(1);
    }
    
    .nav-cta {
    margin-top: 1rem;
    border-radius: 12px;
    border-bottom: none;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .floating-card {
    padding: 1.5rem;
    }
    
    .floating-card svg {
    width: 60px;
    height: 60px;
    }
    
    .hero-circle-accent {
    width: 350px;
    height: 350px;
    }
    
    .hero-circle-accent::before {
    width: 250px;
    height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
    padding: 2rem 0 4rem;
    }
    
    .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
    }
    
    .hero-title-accent {
    width: 80px;
    height: 5px;
    margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-cta-group {
    gap: 1rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .floating-card {
    padding: 1rem;
    }
    
    .floating-card svg {
    width: 50px;
    height: 50px;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
    
    .scroll-line {
    height: 40px;
    }
    
    .shape-blob-1,
    .shape-blob-2,
    .shape-blob-3 {
    width: 300px;
    height: 300px;
    }
}

@media (max-width: 576px) {
    .nav-container {
    padding: 0 1.5rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-content-grid {
    gap: 2rem;
    }
    
    .hero-title {
    font-size: 2.25rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    }
    
    .hero-visual-column {
    height: 250px;
    }
    
    .floating-card-1,
    .floating-card-2,
    .floating-card-3 {
    padding: 0.75rem;
    }
    
    .floating-card svg {
    width: 40px;
    height: 40px;
    }
    
    .hero-circle-accent {
    width: 250px;
    height: 250px;
    }
    
    .hero-circle-accent::before {
    width: 180px;
    height: 180px;
    }
}
/* Futures Block: Asymmetric Diagonal Grid with Neon Accents */
.futures-quantum-47x {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.futures-background-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.futures-background-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: skewY(-2deg);
}

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

.futures-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* Feature Cards Base */
.future-card {
    position: relative;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.future-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.future-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.future-card:hover .future-card-inner::before {
    opacity: 1;
}

/* Card Variants */
.future-card-prime {
    transform: translateY(-20px);
}

.future-card-secondary {
    transform: translateY(0);
}

.future-card-tertiary {
    transform: translateY(-10px);
}

.future-card:hover {
    transform: translateY(-30px) scale(1.02);
}

.future-card-secondary:hover {
    transform: translateY(-10px) scale(1.02);
}

.future-card-tertiary:hover {
    transform: translateY(-20px) scale(1.02);
}

/* Image Container */
.future-image-container {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
}

.future-image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.future-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.future-card:hover .future-image {
    transform: scale(1.1);
}

.future-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.future-card:hover .future-image-overlay {
    opacity: 0.3;
}

/* Accent Blob */
.future-accent-blob {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.future-card-prime .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
}

.future-card-secondary .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.4) 0%, transparent 70%);
}

.future-card-tertiary .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
}

.future-card:hover .future-accent-blob {
    opacity: 1;
    transform: scale(1.5);
}

/* Content Zone */
.future-content-zone {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.future-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.future-card-prime:hover .future-heading {
    color: #00ff88;
}

.future-card-secondary:hover .future-heading {
    color: #ff0080;
}

.future-card-tertiary:hover .future-heading {
    color: #00d4ff;
}

/* Divider */
.future-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88 0%, #ff0080 50%, #00d4ff 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.future-card:hover .future-divider {
    width: 100px;
}

.future-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: color 0.3s ease;
}

.future-card:hover .future-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 992px) {
    .futures-quantum-47x {
    padding: 6rem 0;
    }

    .futures-content-grid {
    gap: 2.5rem;
    }

    .future-card-prime,
    .future-card-secondary,
    .future-card-tertiary {
    transform: translateY(0);
    }

    .future-heading {
    font-size: 1.5rem;
    }

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

@media (max-width: 768px) {
    .futures-quantum-47x {
    padding: 4rem 0;
    }

    .futures-container-wrap {
    padding: 0 1.5rem;
    }

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

    .future-content-zone {
    padding: 2rem;
    gap: 1rem;
    }

    .future-heading {
    font-size: 1.375rem;
    }

    .future-description {
    font-size: 1rem;
    line-height: 1.6;
    }

    .future-image-container {
    padding-top: 60%;
    }

    .future-accent-blob {
    width: 80px;
    height: 80px;
    }
}

@media (max-width: 576px) {
    .futures-quantum-47x {
    padding: 3rem 0;
    }

    .futures-container-wrap {
    padding: 0 1rem;
    }

    .future-content-zone {
    padding: 1.5rem;
    }

    .future-heading {
    font-size: 1.25rem;
    }

    .future-description {
    font-size: 0.9375rem;
    }

    .future-card:hover {
    transform: translateY(-10px) scale(1.01);
    }
}
/* Testimonials Carousel Block - Distinctive Design */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 50%, #8b5cf6 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 480px;
    perspective: 1200px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100%) scale(0.85) rotateY(-15deg);
    pointer-events: none;
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    pointer-events: auto;
    z-index: 3;
}

.testimonial-card.prev {
    opacity: 0.4;
    transform: translateX(-80%) scale(0.85) rotateY(15deg);
    pointer-events: none;
    z-index: 2;
}

.testimonial-card.next {
    opacity: 0.4;
    transform: translateX(80%) scale(0.85) rotateY(-15deg);
    pointer-events: none;
    z-index: 2;
}

.testimonial-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.testimonial-quote-icon {
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-content {
    margin-bottom: 2.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    margin: 0;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.author-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.author-avatar svg {
    display: block;
    width: 100%;
    height: 100%;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: #6366f1;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.carousel-btn:active:not(:disabled) {
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.pagination-dot.active {
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Fallback static layout (no JS) */
@supports not (display: flex) {
    .testimonial-card {
    position: static;
    opacity: 1;
    transform: none;
    margin-bottom: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-block {
    padding: 5rem 0;
    }

    .testimonials-carousel {
    min-height: 520px;
    }

    .testimonial-card {
    padding: 2.5rem 2rem;
    }

    .testimonial-card.prev,
    .testimonial-card.next {
    opacity: 0;
    transform: translateX(0) scale(0.9);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-block {
    padding: 4rem 0;
    }

    .testimonials-header {
    margin-bottom: 3rem;
    }

    .testimonials-title {
    font-size: 2.25rem;
    }

    .testimonials-carousel {
    min-height: 560px;
    }

    .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 25px;
    max-width: 100%;
    }

    .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    }

    .testimonial-author {
    gap: 1rem;
    }

    .author-avatar {
    width: 56px;
    height: 56px;
    }

    .author-name {
    font-size: 1.125rem;
    }

    .carousel-navigation {
    gap: 1.5rem;
    margin-top: 2.5rem;
    }

    .carousel-btn {
    width: 48px;
    height: 48px;
    }

    .carousel-btn svg {
    width: 20px;
    height: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-block {
    padding: 3rem 0;
    }

    .testimonials-carousel-block .container {
    padding: 0 1rem;
    }

    .testimonials-title {
    font-size: 2rem;
    }

    .testimonials-accent-line {
    width: 80px;
    height: 4px;
    }

    .testimonials-carousel {
    min-height: 600px;
    }

    .testimonial-card {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    }

    .testimonial-quote-icon svg {
    width: 36px;
    height: 36px;
    }

    .testimonial-text {
    font-size: 1.0625rem;
    }

    .carousel-btn {
    width: 44px;
    height: 44px;
    }

    .pagination-dot {
    width: 10px;
    height: 10px;
    }

    .pagination-dot.active {
    width: 32px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card,
    .carousel-btn,
    .pagination-dot,
    .author-avatar {
    transition: none;
    }
}

.carousel-btn:focus-visible {
    outline: 3px solid #6366f1;
    outline-offset: 4px;
}

.pagination-dot:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 3px;
}
/* Services Block: Floating Card Grid with Gradient Accents */
.services-floating-grid {
    padding: 7rem 0 8rem;
    background: linear-gradient(160deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.services-floating-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-floating-grid::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b2ff7 50%, #ff6b9d 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);
}

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

.service-card-float {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

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

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(123, 47, 247, 0.2);
}

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

.service-card-float:nth-child(odd) {
    transform: rotate(-1deg);
}

.service-card-float:nth-child(even) {
    transform: rotate(1deg);
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.service-card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(123, 47, 247, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-float:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
}

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

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

.service-content-block {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-title-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-description-text {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.service-action-zone {
    margin-top: auto;
}

.service-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #7b2ff7 0%, #00d4ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.25);
    position: relative;
    overflow: hidden;
}

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

.service-more-btn:hover::before {
    left: 100%;
}

.service-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(123, 47, 247, 0.35);
}

.service-more-btn:focus {
    outline: 3px solid rgba(123, 47, 247, 0.4);
    outline-offset: 2px;
}

.service-more-btn span {
    position: relative;
    z-index: 1;
}

.btn-arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .services-floating-grid {
    padding: 5rem 0 6rem;
    }
    
    .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    
    .services-header-zone {
    margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .services-floating-grid {
    padding: 4rem 0 5rem;
    }
    
    .services-container-wrapper {
    padding: 0 1.5rem;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .services-header-zone {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    }
    
    .title-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .service-card-float:nth-child(odd),
    .service-card-float:nth-child(even) {
    transform: rotate(0deg);
    }
    
    .service-card-float:hover {
    transform: translateY(-8px) scale(1.01);
    }
    
    .service-card-inner {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-icon-svg {
    width: 48px;
    height: 48px;
    }
    
    .service-title-text {
    font-size: 1.375rem;
    }
    
    .service-description-text {
    font-size: 1rem;
    }
    
    .service-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services-floating-grid {
    padding: 3rem 0 4rem;
    }
    
    .services-container-wrapper {
    padding: 0 1rem;
    }
    
    .services-main-title {
    font-size: 2rem;
    }
    
    .service-card-inner {
    padding: 1.75rem 1.25rem;
    }
    
    .service-title-text {
    font-size: 1.25rem;
    }
    
    .service-more-btn {
    width: 100%;
    justify-content: center;
    }
}
/* FAQ Section: Minimalist with Gradient Accent Lines */
.faq-section-creative {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fef3f8 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-creative::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-creative .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

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

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item-modern {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 50%, #0ea5e9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-modern:hover {
    border-color: rgba(236, 72, 153, 0.2);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12);
}

.faq-item-modern:hover::before {
    transform: scaleX(1);
}

.faq-item-modern.faq-active {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15);
}

.faq-item-modern.faq-active::before {
    transform: scaleX(1);
}

.faq-question-btn {
    width: 100%;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-btn:hover {
    background: rgba(236, 72, 153, 0.02);
}

.faq-question-btn:focus {
    outline: none;
}

.faq-question-btn:focus-visible {
    outline: 2px solid #ec4899;
    outline-offset: -2px;
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item-modern.faq-active .faq-question-text {
    color: #ec4899;
}

.faq-icon-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #64748b;
    transition: all 0.3s ease;
}

.faq-item-modern:hover .faq-icon-toggle {
    color: #ec4899;
    transform: scale(1.1);
}

.faq-item-modern.faq-active .faq-icon-toggle {
    color: #ec4899;
    transform: rotate(180deg);
}

.faq-icon-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.icon-plus {
    opacity: 1;
}

.icon-minus {
    opacity: 0;
}

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

.faq-item-modern.faq-active .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);
}

.faq-answer-content {
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-creative {
    padding: 4rem 0;
    }
    
    .faq-main-title {
    font-size: 2.25rem;
    }
    
    .faq-header-wrap {
    margin-bottom: 2.5rem;
    }
    
    .faq-accordion-container {
    gap: 1rem;
    }
    
    .faq-item-modern {
    border-radius: 12px;
    }
    
    .faq-question-btn {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
    }
    
    .faq-question-text {
    font-size: 1.0625rem;
    }
    
    .faq-icon-toggle {
    width: 24px;
    height: 24px;
    }
    
    .faq-icon-toggle svg {
    width: 20px;
    height: 20px;
    }
    
    .faq-answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-answer-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .faq-section-creative {
    padding: 3rem 0;
    }
    
    .faq-main-title {
    font-size: 1.875rem;
    }
    
    .faq-section-creative .container {
    padding: 0 1rem;
    }
    
    .faq-question-btn {
    padding: 1rem 1rem;
    }
    
    .faq-question-text {
    font-size: 1rem;
    }
    
    .faq-answer-content {
    padding: 0 1rem 1rem 1rem;
    }
}
/* Contact Form Section: Asymmetric Gradient Split with Floating Card */
.contact-form-section-qx7 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-wrapper-qx7 {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}

/* Gradient Decorative Side */
.contact-gradient-side-qx7 {
    position: relative;
    background: linear-gradient(165deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-decorative-circle-qx7 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    animation: float-circle-qx7 8s ease-in-out infinite;
    top: 20%;
    left: 10%;
}

.contact-decorative-circle-qx7.circle-secondary {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: 5%;
    top: auto;
    left: auto;
    animation-delay: 2s;
    animation-duration: 10s;
    background: rgba(255, 255, 255, 0.05);
}

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

/* Form Container Side */
.contact-form-container-qx7 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f8f9ff;
}

/* Floating Form Card */
.contact-form-card-qx7 {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card-qx7:hover {
    transform: translateY(-8px);
    box-shadow: 
    0 30px 80px rgba(102, 126, 234, 0.25),
    0 0 0 1px rgba(102, 126, 234, 0.08);
}

/* Header */
.contact-form-header-qx7 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 2.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.form-label-qx7 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4a4a68;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.form-input-qx7,
.form-textarea-qx7 {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    color: #1a1a2e;
    background: #f8f9ff;
    border: 2px solid transparent;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input-qx7::placeholder,
.form-textarea-qx7::placeholder {
    color: #9ca3af;
}

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

.form-input-qx7:focus + .form-label-qx7,
.form-textarea-qx7:focus + .form-label-qx7 {
    color: #667eea;
}

.form-textarea-qx7 {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

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

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

.form-submit-btn-qx7:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.form-submit-btn-qx7:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.35);
}

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-wrapper-qx7 {
    grid-template-columns: 1fr;
    min-height: auto;
    }
    
    .contact-gradient-side-qx7 {
    display: none;
    }
    
    .contact-form-container-qx7 {
    padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section-qx7 {
    min-height: auto;
    padding: 3rem 0;
    }
    
    .contact-form-container-qx7 {
    padding: 3rem 1.25rem;
    }
    
    .contact-form-card-qx7 {
    padding: 2.5rem 1.75rem;
    border-radius: 24px;
    }
    
    .contact-form-header-qx7 {
    font-size: 2rem;
    margin-bottom: 2rem;
    }
    
    .contact-form-qx7 {
    gap: 1.5rem;
    }
    
    .form-input-qx7,
    .form-textarea-qx7 {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    }
    
    .form-submit-btn-qx7 {
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-card-qx7 {
    padding: 2rem 1.5rem;
    }
    
    .contact-form-header-qx7 {
    font-size: 1.75rem;
    }
    
    .form-label-qx7 {
    font-size: 0.875rem;
    }
}
/* Contact Information Block - Organic Shapes with Terracotta & Sage Palette */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .contact-main-title {
    font-size: 1.75rem;
    }
    
    .contact-item-card {
    padding: 1.25rem;
    gap: 1rem;
    }
    
    .contact-icon-bubble {
    width: 48px;
    height: 48px;
    }
    
    .contact-svg-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-label {
    font-size: 0.8rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container-frame {
    height: 320px;
    border-radius: 20px;
    }
}
/* 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;
    }
}
