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

#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;
}
/* Floating Glassmorphic Header Navigation */
.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);
    background: transparent;
}

.header-glass-nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.375rem;
    transition: all 0.3s ease;
    position: relative;
}

.brand-logo:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-icon {
    transform: rotate(90deg);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.logo-icon svg {
    color: #ffffff;
}

.brand-text {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 128, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.nav-link:hover::before {
    opacity: 1;
}

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

.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: 0;
    min-width: 220px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

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

.dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.dropdown-item:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.15);
    transform: translateX(5px);
}

/* Search Form */
.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.search-input {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.9375rem;
    outline: none;
    width: 200px;
    transition: width 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
    width: 260px;
}

.search-button {
    padding: 0.75rem 1.25rem;
    border: none;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.search-button:hover {
    background: linear-gradient(135deg, #00e0ff 0%, #0090ff 100%);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
}

.search-button svg {
    display: block;
}

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

.hamburger-line {
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Mobile Search */
.mobile-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.mobile-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mobile-search-button {
    padding: 1rem 1.5rem;
    border: none;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-search-button:hover {
    background: linear-gradient(135deg, #00e0ff 0%, #0090ff 100%);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-dropdown-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
}

.mobile-dropdown-menu-new.active {
    display: flex;
}

.mobile-dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.0625rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: translateX(5px);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .nav-wrapper {
    gap: 2rem;
    }

    .search-input {
    width: 150px;
    }

    .search-input:focus {
    width: 200px;
    }
}

@media (max-width: 992px) {
    .nav-links,
    .search-form {
    display: none;
    }

    .hamburger-menu {
    display: flex;
    }

    .nav-wrapper {
    padding: 0.875rem 1.5rem;
    }

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

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

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

    .nav-wrapper {
    padding: 0.75rem 1.25rem;
    border-radius: 80px;
    }

    .brand-logo {
    font-size: 1.125rem;
    }

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

    .mobile-nav-content {
    width: 95%;
    }

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

    .mobile-dropdown-item {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    }
}
/* 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;
    }
}
/* Features Block - Asymmetric Floating Cards with Gradient Mesh */
.features-floating-mesh {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #fff5f7 0%, #ffe8f0 25%, #fff9e6 50%, #f0f9ff 75%, #f5f3ff 100%);
    overflow: hidden;
}

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

.features-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    position: relative;
}

/* Background Decorative Elements */
.bg-decoration-circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 170, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    z-index: 0;
    animation: float-slow 8s ease-in-out infinite;
}

.bg-decoration-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 203, 255, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    z-index: 0;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.bg-decoration-wave {
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 223, 107, 0.08) 50%, transparent 100%);
    transform: skewY(-2deg);
    z-index: 0;
}

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

/* Base Feature Card Styles */
.feature-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 107, 170, 0.08);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 170, 0.03) 0%, rgba(107, 203, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 170, 0.18);
}

/* Large Feature Card (Grid Position: Row 1-2, Col 1) */
.feature-card-large {
    grid-row: 1 / 3;
    grid-column: 1;
    background: linear-gradient(145deg, #ffffff 0%, #fff5f9 100%);
    border: 3px solid #ff6baa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.feature-image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6baa 0%, #ff8cc7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 107, 170, 0.3);
}

.feature-image-circle .feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-decoration-blob {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 223, 107, 0.25);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: morph-blob 6s ease-in-out infinite;
}

@keyframes morph-blob {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: translate(-50%, -50%) rotate(180deg);
    }
}

/* Elevated Feature Card (Grid Position: Row 1, Col 2) */
.feature-card-elevated {
    grid-row: 1;
    grid-column: 2;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
    border-left: 5px solid #6bcbff;
    position: relative;
}

.feature-icon-diamond {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6bcbff 0%, #4db8ff 100%);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(107, 203, 255, 0.25);
    position: relative;
}

.feature-icon-diamond .feature-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transform: rotate(-45deg);
    filter: brightness(0) invert(1);
}

.feature-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffdf6b 0%, #ffc93d 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
}

.feature-card-elevated:hover .feature-icon-diamond {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 45px rgba(107, 203, 255, 0.4);
}

/* Tilted Feature Card (Grid Position: Row 2, Col 2) */
.feature-card-tilted {
    grid-row: 2;
    grid-column: 2;
    background: linear-gradient(145deg, #ffffff 0%, #fffbf0 100%);
    border-bottom: 5px solid #ffdf6b;
    position: relative;
}

.feature-hexagon-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #ffdf6b 0%, #ffc93d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 223, 107, 0.3);
    transition: all 0.4s ease;
}

.feature-hexagon-wrapper .feature-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) saturate(0) contrast(2);
}

.feature-glow-effect {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255, 223, 107, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card-tilted:hover .feature-hexagon-wrapper {
    transform: rotate(15deg) scale(1.08);
    box-shadow: 0 15px 45px rgba(255, 223, 107, 0.45);
}

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

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

.feature-card-large .feature-title {
    font-size: 2.25rem;
    color: #ff6baa;
}

.feature-card-elevated .feature-title {
    color: #6bcbff;
}

.feature-card-tilted .feature-title {
    color: #ffb03d;
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.feature-card-large .feature-description {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    }

    .feature-card-large {
    grid-row: auto;
    grid-column: auto;
    }

    .feature-card-elevated,
    .feature-card-tilted {
    grid-row: auto;
    grid-column: auto;
    }

    .feature-card {
    padding: 2.5rem;
    }

    .feature-card-large {
    padding: 3rem 2.5rem;
    }

    .feature-image-circle {
    width: 140px;
    height: 140px;
    }

    .feature-decoration-blob {
    width: 180px;
    height: 180px;
    }

    .feature-icon-diamond {
    width: 100px;
    height: 100px;
    }

    .feature-icon-diamond .feature-img {
    width: 60px;
    height: 60px;
    }

    .feature-hexagon-wrapper {
    width: 120px;
    height: 120px;
    }

    .feature-hexagon-wrapper .feature-img {
    width: 70px;
    height: 70px;
    }
}

@media (max-width: 768px) {
    .features-floating-mesh {
    padding: 5rem 0 6rem;
    }

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

    .features-grid-container {
    gap: 1.5rem;
    }

    .feature-card {
    padding: 2rem;
    }

    .feature-card-large {
    padding: 2.5rem 2rem;
    }

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

    .feature-card-large .feature-title {
    font-size: 1.875rem;
    }

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

    .feature-card-large .feature-description {
    font-size: 1.125rem;
    }

    .feature-image-circle {
    width: 120px;
    height: 120px;
    }

    .feature-decoration-blob {
    width: 150px;
    height: 150px;
    }

    .feature-icon-diamond {
    width: 90px;
    height: 90px;
    }

    .feature-icon-diamond .feature-img {
    width: 50px;
    height: 50px;
    }

    .feature-hexagon-wrapper {
    width: 100px;
    height: 100px;
    }

    .feature-hexagon-wrapper .feature-img {
    width: 60px;
    height: 60px;
    }

    .bg-decoration-circle-1,
    .bg-decoration-circle-2 {
    display: none;
    }
}

@media (max-width: 576px) {
    .features-floating-mesh {
    padding: 4rem 0 5rem;
    }

    .feature-card {
    padding: 1.75rem;
    }

    .feature-card-large {
    padding: 2rem 1.75rem;
    }

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

    .feature-card-large .feature-title {
    font-size: 1.625rem;
    }

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Carousel Section - Asymmetric Split Design */
.testimonials-carousel-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-carousel-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

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

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

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Hide radio inputs */
.testimonials-carousel input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Testimonials Track */
.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%;
}

.testimonial-card {
    flex: 0 0 33.333%;
    padding: 4rem 3rem;
    box-sizing: border-box;
}

/* Slide positions based on radio button state */
#slide1:checked ~ .testimonials-track {
    transform: translateX(0%);
}

#slide2:checked ~ .testimonials-track {
    transform: translateX(-33.333%);
}

#slide3:checked ~ .testimonials-track {
    transform: translateX(-66.666%);
}

/* Testimonial Content */
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: 400px;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

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

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

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

.testimonial-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Carousel Controls - Dots */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 30%);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot:hover {
    background: rgba(102, 126, 234, 0.5);
    transform: scale(1.2);
}

#slide1:checked ~ .carousel-controls label[for="slide1"],
#slide2:checked ~ .carousel-controls label[for="slide2"],
#slide3:checked ~ .carousel-controls label[for="slide3"] {
    background: #667eea;
    width: 32px;
    border-radius: 6px;
}

/* Carousel Navigation - Arrows */
.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: all;
    color: #667eea;
}

.carousel-nav:hover {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: scale(1.1);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-prev {
    margin-left: -1rem;
}

.carousel-next {
    margin-right: -1rem;
}

/* Dynamic navigation updates */
#slide1:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide1:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

#slide2:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide2:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

#slide3:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide3:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-carousel-section {
    padding: 5rem 0;
    }
    
    .testimonials-header {
    margin-bottom: 3rem;
    }
    
    .testimonials-title {
    font-size: 2rem;
    }
    
    .testimonial-card {
    padding: 3rem 2rem;
    }
    
    .testimonial-content {
    min-height: 450px;
    }
    
    .testimonial-avatar {
    width: 100px;
    height: 100px;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    }
    
    .testimonial-name {
    font-size: 1.25rem;
    }
    
    .carousel-navigation {
    padding: 0 0.5rem;
    }
    
    .carousel-nav {
    width: 40px;
    height: 40px;
    }
    
    .carousel-prev {
    margin-left: 0;
    }
    
    .carousel-next {
    margin-right: 0;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-section .container {
    padding: 0 1rem;
    }
    
    .testimonials-carousel {
    border-radius: 20px;
    }
    
    .testimonial-card {
    padding: 2.5rem 1.5rem;
    }
    
    .testimonial-text {
    font-size: 1rem;
    }
    
    .testimonial-name {
    font-size: 1.125rem;
    }
    
    .quote-icon svg {
    width: 32px;
    height: 32px;
    }
}

/* No-JS Fallback - Stack all testimonials */
@supports not (backdrop-filter: blur(10px)) {
    .testimonials-track {
    flex-direction: column;
    width: 100%;
    }
    
    .testimonial-card {
    flex: 1 1 auto;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }
    
    .testimonial-card:last-child {
    border-bottom: none;
    }
    
    .carousel-controls,
    .carousel-navigation {
    display: none;
    }
}

/* Accessibility - Focus states */
.carousel-dot:focus,
.carousel-nav:focus {
    outline: 3px solid #667eea;
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .testimonials-track {
    flex-direction: column;
    width: 100%;
    transform: none !important;
    }
    
    .testimonial-card {
    flex: 1 1 auto;
    page-break-inside: avoid;
    }
    
    .carousel-controls,
    .carousel-navigation {
    display: none;
    }
}
/* Services Block: Diagonal Split Grid - Unique Cyberpunk Neon Design */
.services-block-dg789 {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #0a0118 0%, #1a0a2e 50%, #0f051d 100%);
    overflow: hidden;
}

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

/* Header Styling */
.services-header-wrapper-dg {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.services-main-title-dg {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #00f5ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-dg 4s linear infinite;
}

@keyframes shimmer-dg {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.header-accent-line-dg {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff00ff 0%, #00f5ff 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6), 0 0 40px rgba(0, 245, 255, 0.4);
}

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

/* Service Card Base */
.service-card-dg {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-dg::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff00ff, #00f5ff, #ff00ff);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.service-card-dg:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: transparent;
    box-shadow: 
    0 20px 60px rgba(255, 0, 255, 0.3),
    0 10px 30px rgba(0, 245, 255, 0.2),
    inset 0 0 40px rgba(255, 255, 255, 0.05);
}

/* Unique color per card */
.service-card-1-dg:hover { box-shadow: 0 20px 60px rgba(255, 0, 255, 0.4), 0 10px 30px rgba(255, 0, 255, 0.2); }
.service-card-2-dg:hover { box-shadow: 0 20px 60px rgba(0, 245, 255, 0.4), 0 10px 30px rgba(0, 245, 255, 0.2); }
.service-card-3-dg:hover { box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4), 0 10px 30px rgba(255, 20, 147, 0.2); }
.service-card-4-dg:hover { box-shadow: 0 20px 60px rgba(0, 255, 200, 0.4), 0 10px 30px rgba(0, 255, 200, 0.2); }
.service-card-5-dg:hover { box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4), 0 10px 30px rgba(138, 43, 226, 0.2); }
.service-card-6-dg:hover { box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4), 0 10px 30px rgba(255, 215, 0, 0.2); }

/* Icon Wrapper */
.service-icon-wrapper-dg {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.service-card-dg:hover .service-icon-wrapper-dg {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.service-icon-dg {
    width: 48px;
    height: 48px;
    transition: all 0.4s ease;
}

.service-card-1-dg .service-icon-dg { color: #ff00ff; }
.service-card-2-dg .service-icon-dg { color: #00f5ff; }
.service-card-3-dg .service-icon-dg { color: #ff1493; }
.service-card-4-dg .service-icon-dg { color: #00ffc8; }
.service-card-5-dg .service-icon-dg { color: #8a2be2; }
.service-card-6-dg .service-icon-dg { color: #ffd700; }

.service-card-dg:hover .service-icon-dg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px currentColor);
}

/* Content */
.service-content-dg {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-name-dg {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-card-dg:hover .service-name-dg {
    color: #00f5ff;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.service-text-dg {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 2rem;
    flex: 1;
}

/* Button Styling */
.service-btn-dg {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #ff00ff 0%, #8a2be2 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.service-btn-dg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00f5ff 0%, #0080ff 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.service-btn-dg:hover::before {
    left: 0;
}

.service-btn-dg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4), 0 5px 15px rgba(0, 245, 255, 0.3);
}

.service-btn-dg:focus {
    outline: 3px solid rgba(0, 245, 255, 0.5);
    outline-offset: 3px;
}

.btn-arrow-dg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

/* Background Decorations */
.bg-decoration-dg {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.bg-blob-1-dg {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff00ff 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: float-dg 20s ease-in-out infinite;
}

.bg-blob-2-dg {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00f5ff 0%, transparent 70%);
    bottom: -150px;
    right: -80px;
    animation: float-dg 25s ease-in-out infinite reverse;
}

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

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

@media (max-width: 768px) {
    .services-block-dg789 {
    padding: 5rem 0 6rem;
    }
    
    .services-container-dg {
    padding: 0 1.5rem;
    }
    
    .services-main-title-dg {
    font-size: 2.5rem;
    }
    
    .services-grid-dg {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
    
    .service-card-dg {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper-dg {
    width: 75px;
    height: 75px;
    }
    
    .service-icon-dg {
    width: 40px;
    height: 40px;
    }
    
    .service-name-dg {
    font-size: 1.375rem;
    }
    
    .service-text-dg {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .bg-blob-1-dg,
    .bg-blob-2-dg {
    width: 400px;
    height: 400px;
    }
}

@media (max-width: 576px) {
    .services-block-dg789 {
    padding: 4rem 0 5rem;
    }
    
    .services-header-wrapper-dg {
    margin-bottom: 3rem;
    }
    
    .services-main-title-dg {
    font-size: 2rem;
    margin-bottom: 1rem;
    }
    
    .header-accent-line-dg {
    width: 80px;
    height: 4px;
    }
    
    .service-card-dg {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    }
    
    .service-icon-wrapper-dg {
    width: 65px;
    height: 65px;
    margin-bottom: 1.5rem;
    }
    
    .service-icon-dg {
    width: 36px;
    height: 36px;
    }
    
    .service-name-dg {
    font-size: 1.25rem;
    }
    
    .service-text-dg {
    font-size: 0.9375rem;
    }
    
    .service-btn-dg {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    }
}
/* FAQ Block: Modern Gradient Cards Design */
.faq-block-vt9x {
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f3ff 0%, #fff5f7 35%, #f0fffe 70%, #fef9e7 100%);
    position: relative;
    overflow: hidden;
}

.faq-block-vt9x::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-block-vt9x::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-block-vt9x .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

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

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

.faq-decorative-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #7c3aed, #ec4899, #14b8a6);
    margin: 0 auto;
    border-radius: 10px;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 920px;
    margin: 0 auto;
}

.faq-card-item {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 50%, #14b8a6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.15);
}

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

.faq-card-inner {
    padding: 2.5rem 2.25rem;
}

.faq-question-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.faq-icon-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ede9fe 0%, #fce7f3 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    transition: all 0.3s ease;
}

.faq-card-item:hover .faq-icon-badge {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: #ffffff;
    transform: rotate(10deg) scale(1.08);
}

.faq-icon-svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.5;
}

.faq-question-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    letter-spacing: -0.01em;
}

.faq-answer-content {
    padding-left: 4rem;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .faq-block-vt9x {
    padding: 6rem 0 7rem;
    }

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

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

@media (max-width: 768px) {
    .faq-block-vt9x {
    padding: 5rem 0 6rem;
    }

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

    .faq-header-wrap {
    margin-bottom: 3rem;
    }

    .faq-grid-container {
    gap: 1.5rem;
    }

    .faq-card-inner {
    padding: 2rem 1.75rem;
    }

    .faq-question-wrapper {
    gap: 1rem;
    }

    .faq-icon-badge {
    width: 42px;
    height: 42px;
    }

    .faq-icon-svg {
    width: 22px;
    height: 22px;
    }

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

    .faq-answer-content {
    padding-left: 3.5rem;
    }

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

@media (max-width: 576px) {
    .faq-block-vt9x {
    padding: 4rem 0 5rem;
    }

    .faq-block-vt9x .container {
    padding: 0 1rem;
    }

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

    .faq-decorative-line {
    width: 90px;
    height: 4px;
    }

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

    .faq-grid-container {
    gap: 1.25rem;
    }

    .faq-card-item {
    border-radius: 18px;
    }

    .faq-card-inner {
    padding: 1.75rem 1.5rem;
    }

    .faq-question-wrapper {
    flex-direction: row;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    }

    .faq-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    }

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

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

    .faq-answer-content {
    padding-left: 3rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .contact-heading-zx9 {
    font-size: 1.75rem;
    }
    
    .form-label-zx9 {
    font-size: 0.875rem;
    }
    
    .form-group-zx9 {
    gap: 0.5rem;
    }
    
    .contact-form-zx9 {
    gap: 1.5rem;
    }
}
/* Contact Information Section - Asymmetric Split with Vibrant Accents */
.contact-info-section-j8k {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
}

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

/* Header Styling */
.contact-header-wrap {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.contact-main-header {
    font-size: 3.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.header-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
}

.header-accent-line::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background: #3498db;
    left: -50px;
    border-radius: 3px;
}

.header-accent-line::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background: #f39c12;
    right: -50px;
    border-radius: 3px;
}

/* Content Grid Layout */
.contact-content-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: start;
}

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

.contact-card-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.contact-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e74c3c 0%, #3498db 50%, #f39c12 100%);
    border-radius: 30px 30px 0 0;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 2rem 0;
    border-bottom: 2px solid #f1f3f5;
    transition: all 0.4s ease;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-of-type {
    padding-top: 0;
}

.contact-info-item:hover {
    transform: translateX(8px);
}

/* Icon Containers */
.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.icon-container svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.address-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.contact-info-item:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

/* Info Content */
.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.info-value {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.5;
    margin: 0;
}

.address-value {
    font-size: 1.25rem;
}

.phone-link {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.phone-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transition: width 0.4s ease;
}

.phone-link:hover {
    color: #2980b9;
    transform: translateY(-2px);
}

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

.email-value {
    color: #f39c12;
}

.email-text {
    font-size: 1.375rem;
    font-weight: 600;
}

/* Decorative Element */
.contact-decorative-element {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

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

.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    height: 100%;
    min-height: 550px;
}

.map-frame {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 550px;
    border: none;
    display: block;
}

.map-overlay-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
    border-radius: 30px;
    background: linear-gradient(135deg, #e74c3c, #3498db, #f39c12) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
}

/* Background Decorations */
.bg-decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-main-header {
    font-size: 2.75rem;
    }
    
    .map-container {
    min-height: 450px;
    }
    
    .map-frame iframe {
    min-height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-info-section-j8k {
    padding: 5rem 0;
    }
    
    .contact-info-section-j8k .container {
    padding: 0 1.5rem;
    }
    
    .contact-header-wrap {
    margin-bottom: 3.5rem;
    }
    
    .contact-main-header {
    font-size: 2.25rem;
    }
    
    .header-accent-line::before,
    .header-accent-line::after {
    display: none;
    }
    
    .contact-card-wrapper {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    }
    
    .contact-info-item {
    gap: 1.25rem;
    padding: 1.5rem 0;
    }
    
    .icon-container {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    }
    
    .icon-container svg {
    width: 28px;
    height: 28px;
    }
    
    .info-value {
    font-size: 1.125rem;
    }
    
    .address-value {
    font-size: 1.063rem;
    }
    
    .email-text {
    font-size: 1.125rem;
    }
    
    .map-container {
    min-height: 400px;
    border-radius: 24px;
    }
    
    .map-frame {
    border-radius: 24px;
    }
    
    .map-frame iframe {
    min-height: 400px;
    }
    
    .map-overlay-border {
    border-radius: 24px;
    border-width: 3px;
    }
    
    .contact-decorative-element {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
    }
}

@media (max-width: 576px) {
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-card-wrapper {
    padding: 2rem 1.5rem;
    }
    
    .info-value {
    font-size: 1rem;
    }
    
    .address-value {
    font-size: 0.938rem;
    }
    
    .email-text {
    font-size: 1rem;
    }
    
    .map-container {
    min-height: 350px;
    }
    
    .map-frame iframe {
    min-height: 350px;
    }
}
/* 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);
    }
}
