@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: #c45c674d;
}

#about {
    font-size: 1.2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-item {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hamburger-menu {
    display: flex;
    }

    .header-container {
    height: 75px;
    }

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

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

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

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

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

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

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

    .mobile-navigation {
    padding: 100px 1.5rem 2rem;
    }
}
/* Hero Block: Geometric Split Design */
.hero-block-geometric {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0e27;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-backdrop {
    display: none;
}

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

.nav-item {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .hero-header-container {
    padding: 0 1.5rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-title {
    font-size: 2rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-badge {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    }
    
    .feature-mini-item {
    font-size: 0.9375rem;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
}
/* Features Block: Asymmetric Floating Cards with Gradient Mesh */
.features-wave-mesh {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #fff5f7 0%, #ffe8f0 25%, #f0f9ff 50%, #e0f2fe 75%, #dbeafe 100%);
    overflow: hidden;
}

/* Animated Mesh Gradient Background */
.mesh-gradient-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(251, 113, 133, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(3%, -3%) rotate(1deg); }
    66% { transform: translate(-3%, 3%) rotate(-1deg); }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 15s ease-in-out infinite;
    z-index: 2;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fb7185, transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #a78bfa, transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #60a5fa, transparent);
    bottom: 15%;
    left: 50%;
    animation-delay: 10s;
}

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

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

/* Asymmetric Grid Layout */
.features-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Feature Cards Base Styles */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(251, 113, 133, 0.15),
                0 8px 20px rgba(147, 51, 234, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #fb7185, #a78bfa, #60a5fa);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(251, 113, 133, 0.25),
                0 15px 35px rgba(147, 51, 234, 0.2);
}

/* Large Feature Card */
.feature-large {
    grid-column: 1 / 8;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.9) 100%);
}

/* Medium Feature Card */
.feature-medium {
    grid-column: 8 / 13;
    transform: translateY(4rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 232, 255, 0.9) 100%);
}

/* Compact Feature Card */
.feature-compact {
    grid-column: 3 / 10;
    transform: translateY(-2rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.9) 100%);
}

/* Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fce7f3, #e0e7ff, #dbeafe);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.3), transparent);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

.feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

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

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

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fb7185, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    transform: translateX(5px);
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    font-weight: 400;
}

/* Accent Line */
.feature-accent-line {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb7185, #a78bfa, #60a5fa);
    border-radius: 2px;
    margin-top: 1.5rem;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid-asymmetric {
    gap: 2.5rem;
    }
    
    .feature-large {
    grid-column: 1 / 7;
    }
    
    .feature-medium {
    grid-column: 7 / 13;
    transform: translateY(2rem);
    }
    
    .feature-compact {
    grid-column: 2 / 12;
    }
}

@media (max-width: 992px) {
    .features-wave-mesh {
    padding: 5rem 0 6rem;
    }
    
    .features-grid-asymmetric {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .feature-large,
    .feature-medium,
    .feature-compact {
    grid-column: 1 / -1;
    transform: translateY(0);
    }
    
    .feature-image-wrapper {
    height: 200px;
    }
    
    .feature-title {
    font-size: 1.75rem;
    }
    
    .floating-orb {
    display: none;
    }
}

@media (max-width: 768px) {
    .features-wave-mesh {
    padding: 4rem 0 5rem;
    }
    
    .features-container {
    padding: 0 1.5rem;
    }
    
    .feature-card {
    padding: 2rem;
    border-radius: 20px;
    }
    
    .feature-image-wrapper {
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    }
    
    .feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    }
    
    .feature-description {
    font-size: 1rem;
    line-height: 1.6;
    }
    
    .features-grid-asymmetric {
    gap: 2rem;
    }
}

@media (max-width: 576px) {
    .features-wave-mesh {
    padding: 3rem 0 4rem;
    }
    
    .feature-card {
    padding: 1.5rem;
    }
    
    .feature-image-wrapper {
    height: 160px;
    }
    
    .feature-title {
    font-size: 1.375rem;
    }
    
    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Section - Carousel Style with Gradient Avatars */
.testimonials-section-zx9k {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-section-zx9k::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-header-zx9k {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-title-zx9k {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    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;
}

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

.testimonials-carousel-zx9k {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-card-zx9k.testimonial-active-zx9k {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    z-index: 2;
}

.testimonial-card-zx9k:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    transform: scale(1.02) translateY(-5px);
}

.testimonial-avatar-wrapper-zx9k {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.testimonial-avatar-zx9k {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transition: all 0.4s ease;
}

.testimonial-card-zx9k:hover .testimonial-avatar-zx9k {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

.testimonial-content-zx9k {
    text-align: center;
    position: relative;
}

.testimonial-quote-icon-zx9k {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #667eea;
}

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

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

.testimonials-navigation-zx9k {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.testimonial-nav-btn-zx9k {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #667eea;
    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.06);
}

.testimonial-nav-btn-zx9k:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.testimonial-nav-btn-zx9k:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-title-zx9k {
    font-size: 2.75rem;
    }

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

    .testimonial-text-zx9k {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section-zx9k {
    padding: 5rem 0;
    }

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

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

    .testimonials-carousel-zx9k {
    min-height: 500px;
    }

    .testimonial-card-zx9k {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }

    .testimonial-avatar-zx9k {
    width: 75px;
    height: 75px;
    }

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

    .testimonial-name-zx9k {
    font-size: 1.1875rem;
    }

    .testimonial-nav-btn-zx9k {
    width: 44px;
    height: 44px;
    }

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

@media (max-width: 576px) {
    .testimonials-section-zx9k {
    padding: 4rem 0;
    }

    .testimonials-title-zx9k {
    font-size: 1.875rem;
    }

    .testimonials-carousel-wrapper-zx9k {
    padding: 0 0.5rem;
    }

    .testimonials-carousel-zx9k {
    min-height: 550px;
    }

    .testimonial-card-zx9k {
    padding: 1.75rem 1.25rem;
    }

    .testimonial-avatar-zx9k {
    width: 65px;
    height: 65px;
    }

    .testimonial-text-zx9k {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

    .testimonial-name-zx9k {
    font-size: 1.0625rem;
    }

    .testimonials-navigation-zx9k {
    gap: 1rem;
    margin-top: 2rem;
    }

    .testimonial-nav-btn-zx9k {
    width: 40px;
    height: 40px;
    }

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

    .pagination-dot-zx9k.pagination-dot-active-zx9k {
    width: 26px;
    }
}

/* Fallback for no-js */
.no-js .testimonial-card-zx9k {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: all;
    margin-bottom: 2rem;
}

.no-js .testimonials-carousel-zx9k {
    min-height: auto;
    display: block;
}

.no-js .testimonials-navigation-zx9k {
    display: none;
}
/* 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: Geometric gradient cards with asymmetric masonry layout */
.faq-section-geometric {
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f0ff 0%, #e8f5ff 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-geometric::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-geometric::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

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

.faq-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.faq-main-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.faq-decorative-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.faq-decorative-line::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #7c3aed;
    border-radius: 50%;
}

.faq-decorative-line::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ec4899;
    border-radius: 50%;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.faq-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #f472b6 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
}

.faq-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.faq-card:hover::after {
    opacity: 0.7;
}

.faq-card-1 {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
}

.faq-card-2 {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
}

.faq-card-3 {
    background: linear-gradient(135deg, #f472b6 0%, #fbcfe8 100%);
}

.faq-card-4 {
    background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
}

.faq-card-5 {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
}

.faq-card-inner {
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem;
}

.faq-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.08;
    color: #1f2937;
    user-select: none;
    pointer-events: none;
}

.faq-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 2rem;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border-radius: 50%;
}

.faq-answer-content {
    display: block;
    overflow: visible;
    padding-left: 2rem;
}

.faq-answer {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-section-geometric {
    padding: 6rem 0 7rem;
    }
    
    .faq-main-title {
    font-size: 3rem;
    }
    
    .faq-grid-container {
    gap: 2rem;
    }
    
    .faq-card-inner {
    padding: 2.5rem 2rem;
    }
    
    .faq-question {
    font-size: 1.375rem;
    }
    
    .faq-answer {
    font-size: 1.0625rem;
    }
}

@media (max-width: 768px) {
    .faq-section-geometric {
    padding: 5rem 0 6rem;
    }
    
    .faq-main-title {
    font-size: 2.5rem;
    }
    
    .faq-header-wrapper {
    margin-bottom: 3.5rem;
    }
    
    .faq-grid-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .faq-card-5 {
    grid-column: auto;
    }
    
    .faq-card-inner {
    padding: 2rem 1.75rem;
    }
    
    .faq-number {
    font-size: 4rem;
    top: 1rem;
    right: 1.5rem;
    }
    
    .faq-question {
    font-size: 1.25rem;
    padding-left: 1.5rem;
    }
    
    .faq-question::before {
    width: 0.875rem;
    height: 0.875rem;
    top: 0.3rem;
    }
    
    .faq-answer-content {
    padding-left: 1.5rem;
    }
    
    .faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-geometric {
    padding: 4rem 0 5rem;
    }
    
    .faq-section-geometric .container {
    padding: 0 1rem;
    }
    
    .faq-main-title {
    font-size: 2rem;
    }
    
    .faq-decorative-line {
    width: 80px;
    height: 5px;
    }
    
    .faq-decorative-line::before,
    .faq-decorative-line::after {
    width: 16px;
    height: 16px;
    }
    
    .faq-decorative-line::before {
    left: -24px;
    }
    
    .faq-decorative-line::after {
    right: -24px;
    }
    
    .faq-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .faq-grid-container {
    gap: 1.5rem;
    }
    
    .faq-card {
    border-radius: 20px;
    }
    
    .faq-card::after {
    border-radius: 20px;
    padding: 2px;
    }
    
    .faq-card-inner {
    padding: 1.75rem 1.5rem;
    }
    
    .faq-number {
    font-size: 3.5rem;
    top: 0.75rem;
    right: 1.25rem;
    }
    
    .faq-question {
    font-size: 1.125rem;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    }
    
    .faq-question::before {
    width: 0.75rem;
    height: 0.75rem;
    top: 0.25rem;
    }
    
    .faq-answer-content {
    padding-left: 1.25rem;
    }
    
    .faq-answer {
    font-size: 0.9375rem;
    }
}
/* 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: Asymmetric Split with Floating Cards */
.contact-info-block-tx9 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    overflow: hidden;
}

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

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

.contact-main-heading {
    font-size: 3.75rem;
    font-weight: 800;
    color: #0c4a6e;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

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

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

/* Contact Details Column */
.contact-details-column {
    position: relative;
}

.contact-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(14, 116, 144, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(14, 116, 144, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(14, 116, 144, 0.2);
    border-color: #06b6d4;
}

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

/* Card Icons */
.card-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.address-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
    box-shadow: 0 8px 20px rgba(14, 116, 144, 0.3);
}

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

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

/* Card Content */
.card-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0891b2;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0c4a6e;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

.phone-link,
.email-link {
    color: #0c4a6e;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.phone-link::after,
.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
    transition: width 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #0891b2;
}

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

.phone-link:focus,
.email-link:focus {
    outline: 3px solid #06b6d4;
    outline-offset: 4px;
    border-radius: 4px;
}

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

.map-container-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(14, 116, 144, 0.25);
    height: 600px;
}

.map-frame-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    border-radius: 36px;
    z-index: 0;
}

.map-embed-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    z-index: 1;
    background: #e0f2fe;
}

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

.map-overlay-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.1) 0%, transparent 30%);
    pointer-events: none;
    z-index: 2;
}

/* Decorative Background Elements */
.bg-decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation: float-circle-1 20s ease-in-out infinite;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #0891b2 0%, transparent 70%);
    bottom: -80px;
    right: -100px;
    animation: float-circle-2 25s ease-in-out infinite;
}

.bg-decoration-blob {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    animation: morph-blob 30s ease-in-out infinite;
}

/* Animations */
@keyframes float-circle-1 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    50% {
    transform: translate(30px, -30px) scale(1.1);
    }
}

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

@keyframes morph-blob {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    }
    
    .map-container-wrapper {
    height: 500px;
    }
}

@media (max-width: 992px) {
    .contact-info-block-tx9 {
    padding: 5rem 0;
    }
    
    .contact-main-heading {
    font-size: 3rem;
    }
    
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .map-container-wrapper {
    height: 450px;
    }
    
    .contact-info-card {
    padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-block-tx9 {
    padding: 4rem 0;
    }
    
    .contact-container-main {
    padding: 0 1.5rem;
    }
    
    .contact-main-heading {
    font-size: 2.25rem;
    }
    
    .contact-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .contact-info-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    }
    
    .card-icon-wrapper {
    width: 65px;
    height: 65px;
    }
    
    .contact-icon {
    width: 32px;
    height: 32px;
    }
    
    .contact-value {
    font-size: 1.125rem;
    }
    
    .map-container-wrapper {
    height: 400px;
    }
    
    .circle-1,
    .circle-2 {
    width: 250px;
    height: 250px;
    }
    
    .blob-1 {
    width: 300px;
    height: 300px;
    right: -150px;
    }
}

@media (max-width: 576px) {
    .contact-main-heading {
    font-size: 1.875rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .contact-card-wrapper {
    gap: 1.5rem;
    }
    
    .contact-info-card {
    padding: 1.5rem 1.25rem;
    }
    
    .card-icon-wrapper {
    width: 60px;
    height: 60px;
    }
    
    .contact-icon {
    width: 28px;
    height: 28px;
    }
    
    .contact-label {
    font-size: 0.75rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container-wrapper {
    height: 350px;
    border-radius: 24px;
    }
    
    .map-frame-border {
    border-radius: 28px;
    }
    
    .map-embed-wrapper {
    border-radius: 24px;
    }
}
/* Footer: Modern Split Layout with Gradient Accent */
.footer-modern-split {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8f0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(232, 232, 240, 0.1);
}

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-brand-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 100%);
    border-radius: 2px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

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

.footer-address {
    color: #b8b8d0;
}

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

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

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

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

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

/* Navigation Column */
.footer-nav-column {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.footer-navigation {
    width: 100%;
}

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

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

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(232, 232, 240, 0.03);
    border-radius: 12px;
    color: #e8e8f0;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(233, 69, 96, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

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

.footer-nav-link:hover {
    background: rgba(233, 69, 96, 0.08);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.2);
}

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

.footer-link-text {
    flex: 1;
}

.footer-link-arrow {
    width: 20px;
    height: 20px;
    color: #e94560;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.footer-nav-link:hover .footer-link-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Legal Column */
.footer-legal-column {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.footer-legal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.footer-legal-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(243, 156, 18, 0.05);
    border-radius: 12px;
    color: #e8e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.15);
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f39c12 0%, #e94560 100%);
    border-radius: 12px 12px 0 0;
    transition: width 0.4s ease;
}

.footer-legal-link:hover {
    background: rgba(243, 156, 18, 0.12);
    border-color: rgba(243, 156, 18, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.2);
}

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

.footer-legal-link:focus {
    outline: 2px solid #f39c12;
    outline-offset: 4px;
}

.footer-legal-icon {
    width: 22px;
    height: 22px;
    color: #f39c12;
    flex-shrink: 0;
}

/* Wave Divider */
.footer-wave-divider {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 60px;
    color: #e94560;
    opacity: 0.3;
    pointer-events: none;
}

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

/* Bottom Bar */
.footer-bottom-bar {
    padding-top: 2rem;
}

.footer-copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-copyright-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 232, 240, 0.2) 50%, transparent 100%);
    max-width: 200px;
}

.footer-copyright-text {
    margin: 0;
    font-size: 1rem;
    color: #b8b8d0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.footer-year {
    font-weight: 600;
    color: #e94560;
}

.footer-separator {
    color: rgba(232, 232, 240, 0.3);
    font-weight: 300;
}

.footer-brand-small {
    font-weight: 500;
}

/* Background Decoration */
.footer-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

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

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

.footer-bg-circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #e94560 0%, transparent 70%);
    top: 40%;
    left: -80px;
    animation: float-circle-3 22s ease-in-out infinite;
}

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

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

@keyframes float-circle-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 35px) scale(1.08); }
}

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

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

    .footer-legal-wrapper {
    flex-direction: row;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

    .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    }

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

    .footer-contact-item {
    font-size: 1rem;
    }

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

    .footer-nav-link {
    font-size: 1rem;
    padding: 0.625rem 1rem;
    }

    .footer-legal-wrapper {
    flex-direction: column;
    gap: 1rem;
    }

    .footer-legal-link {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    }

    .footer-copyright-wrapper {
    flex-direction: column;
    gap: 1rem;
    }

    .footer-copyright-line {
    display: none;
    }

    .footer-copyright-text {
    font-size: 0.9375rem;
    flex-wrap: wrap;
    justify-content: center;
    }

    .footer-wave-divider {
    bottom: 60px;
    }

    .footer-bg-circle-1 {
    width: 250px;
    height: 250px;
    }

    .footer-bg-circle-2 {
    width: 200px;
    height: 200px;
    }

    .footer-bg-circle-3 {
    width: 180px;
    height: 180px;
    }
}

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

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

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

    .footer-contact-item {
    font-size: 0.9375rem;
    }

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

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