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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #9873834d;
}

#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 Asymmetric Diagonal Design - Complete Standalone Styles */

.header-asymmetric-diagonal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0f172a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-asymmetric-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.header-asymmetric-diagonal.header-scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

/* Brand Section */
.brand-section {
    position: relative;
    z-index: 10;
}

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

.brand-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 42px;
    height: 42px;
    color: #fbbf24;
    transition: all 0.3s ease;
}

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

.brand-name {
    font-size: 1.625rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    transition: width 0.3s ease;
}

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

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

.dropdown-trigger {
    position: relative;
}

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

.dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
    color: #fbbf24;
}

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.dropdown-menu-new::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-left: 1px solid rgba(251, 191, 36, 0.1);
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(4px);
}

/* Search Form */
.header-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 200px;
    padding: 0.625rem 2.75rem 0.625rem 1.125rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    width: 280px;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.search-input::placeholder {
    color: #64748b;
}

.search-button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

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

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

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-close:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

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

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(6px);
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
}

.mobile-dropdown-trigger.mobile-dropdown-open .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #fbbf24;
}

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.mobile-dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-link:hover {
    background: rgba(251, 191, 36, 0.05);
    color: #fbbf24;
    border-left-color: #fbbf24;
    transform: translateX(4px);
}

/* Mobile Search */
.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.mobile-search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    outline: none;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.mobile-search-input::placeholder {
    color: #64748b;
}

.mobile-search-button {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .desktop-menu,
    .header-search-form {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .main-navigation {
    gap: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
    padding: 0 1.25rem;
    min-height: 75px;
    }
    
    .brand-name {
    font-size: 1.375rem;
    }
    
    .logo-icon {
    width: 36px;
    height: 36px;
    }
    
    .mobile-menu-content {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    }
    
    .mobile-nav-menu {
    margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1rem;
    min-height: 70px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
    
    .logo-icon {
    width: 32px;
    height: 32px;
    }
    
    .mobile-nav-link {
    font-size: 1.0625rem;
    padding: 0.875rem 1rem;
    }
}
/* Hero Asymmetric Split Design - Unique ID: hero-asym-split-2x9 */
.hero-asym-split-2x9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

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

.hero-background-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-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(236, 72, 153, 0.3) 100%);
    mix-blend-mode: multiply;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

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

/* Content Container */
.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

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

/* Text Column */
.hero-text-column {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.badge-icon {
    color: #6366f1;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-main-heading {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: #cbd5e1;
    font-weight: 400;
    max-width: 600px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

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

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

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

.hero-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

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

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: transparent;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

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

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: floatCard1 6s ease-in-out infinite;
}

.hero-card-2 {
    top: 180px;
    right: 0;
    width: 260px;
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 0;
    left: 60px;
    width: 270px;
    animation: floatCard3 8s ease-in-out infinite;
    animation-delay: 2s;
}

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

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

@keyframes floatCard3 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-15px) rotate(1deg);
    }
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.card-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.hero-decorative-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.2);
    z-index: -1;
    animation: rotate 40s linear infinite;
}

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



/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-text-column {
    padding-right: 0;
    text-align: center;
    }
    
    .hero-badge {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-trust-indicators {
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 500px;
    margin: 0 auto;
    max-width: 500px;
    }
    
    .hero-card-1 {
    width: 240px;
    }
    
    .hero-card-2 {
    width: 220px;
    top: 150px;
    }
    
    .hero-card-3 {
    width: 230px;
    left: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content-container {
    padding: 6rem 1.5rem 4rem;
    }
    
    .hero-main-heading {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    }
    
    .trust-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    }
    
    .hero-visual-column {
    height: 400px;
    }
    
    .hero-floating-card {
    padding: 1.25rem;
    }
    
    .hero-card-1 {
    width: 200px;
    top: 0;
    left: 0;
    }
    
    .hero-card-2 {
    width: 180px;
    top: 120px;
    right: 0;
    }
    
    .hero-card-3 {
    width: 190px;
    bottom: 0;
    left: 20px;
    }
    
    .card-title {
    font-size: 1.125rem;
    }
    
    .card-description {
    font-size: 0.875rem;
    }
    
    .card-icon-wrapper {
    width: 52px;
    height: 52px;
    }
    
    .hero-decorative-circle {
    width: 350px;
    height: 350px;
    }
    
    .shape-1 {
    width: 300px;
    height: 300px;
    }
    
    .shape-2 {
    width: 250px;
    height: 250px;
    }
    
    .shape-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-main-heading {
    font-size: 2rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items:center;
}
    
    .hero-btn {
    width: 80%;
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .hero-card-1 {
    width: 160px;
    }
    
    .hero-card-2 {
    width: 150px;
    top: 100px;
    }
    
    .hero-card-3 {
    width: 155px;
    left: 10px;
    }

}
/* Features Block: Diagonal Split with Neon Accents */
.features-diagonal-neon {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Focus States for Accessibility */
.feature-card:focus-within {
    outline: 3px solid rgba(192, 255, 0, 0.5);
    outline-offset: 4px;
}
/* Testimonials Section - Modern Carousel Design - ID: zx9k */
.testimonials-section-zx9k {
    padding: 7rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-zx9k::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-section-zx9k::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section-zx9k .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

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

.testimonials-title-zx9k {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.testimonials-carousel-wrapper-zx9k {
    position: relative;
    padding: 0 60px;
}

.testimonials-swiper-zx9k {
    padding-bottom: 60px;
}

.testimonial-card-zx9k {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card-zx9k::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF6B9D 0%, #4ECDC4 50%, #FFB84D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card-zx9k:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.testimonial-card-zx9k:hover::before {
    transform: scaleX(1);
}

.testimonial-content-zx9k {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-icon-zx9k {
    color: #764ba2;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-text-zx9k {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author-zx9k {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.author-avatar-zx9k {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonial-card-zx9k:hover .author-avatar-zx9k {
    transform: scale(1.1) rotate(5deg);
}

.author-avatar-zx9k svg {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info-zx9k {
    flex-grow: 1;
}

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

.rating-stars-zx9k {
    display: flex;
    gap: 4px;
}

.star-zx9k {
    color: #FFB84D;
    font-size: 1.125rem;
}

/* Navigation Buttons */
.testimonials-prev-zx9k,
.testimonials-next-zx9k {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #764ba2;
}

.testimonials-prev-zx9k {
    left: 0;
}

.testimonials-next-zx9k {
    right: 0;
}

.testimonials-prev-zx9k:hover,
.testimonials-next-zx9k:hover {
    background: #764ba2;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(118, 75, 162, 0.3);
}

.testimonials-prev-zx9k.swiper-button-disabled,
.testimonials-next-zx9k.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Pagination */
.testimonials-pagination-zx9k {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet-active {
    opacity: 1;
    width: 36px;
    border-radius: 6px;
    background: #ffffff;
}

/* Static fallback layout (no JS) */
.testimonials-static-zx9k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-title-zx9k {
    font-size: 2.75rem;
    }
    
    .testimonials-carousel-wrapper-zx9k {
    padding: 0 50px;
    }
}

@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-wrapper-zx9k {
    padding: 0 40px;
    }
    
    .testimonial-card-zx9k {
    padding: 2rem;
    }
    
    .testimonial-text-zx9k {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .author-name-zx9k {
    font-size: 1.125rem;
    }
    
    .testimonials-prev-zx9k,
    .testimonials-next-zx9k {
    width: 44px;
    height: 44px;
    }
    
    .testimonials-static-zx9k {
    grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .testimonials-section-zx9k {
    padding: 4rem 0;
    }
    
    .testimonials-title-zx9k {
    font-size: 1.875rem;
    }
    
    .testimonials-carousel-wrapper-zx9k {
    padding: 0;
    }
    
    .testimonial-card-zx9k {
    padding: 1.5rem;
    }
    
    .testimonials-prev-zx9k,
    .testimonials-next-zx9k {
    display: none;
    }
    
    .author-avatar-zx9k svg {
    width: 56px;
    height: 56px;
    }
    
    .quote-icon-zx9k {
    margin-bottom: 1rem;
    }
    
    .quote-icon-zx9k svg {
    width: 40px;
    height: 40px;
    }
}

/* Accessibility - Focus States */
.testimonials-prev-zx9k:focus,
.testimonials-next-zx9k:focus {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* Animation Enhancement */
@media (prefers-reduced-motion: no-preference) {
    .testimonial-card-zx9k {
    animation: fadeInUp 0.6s ease-out backwards;
    }
    
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
}
/* Services Section: Asymmetric Grid with Gradient Accents */
.services-wave-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
}

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

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

.services-main-heading {
    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, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

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

/* Service Card Base Styles */
.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.8);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: currentColor;
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Individual Card Colors */
.service-card-1 {
    color: #06b6d4;
}

.service-card-1:hover {
    border-color: #06b6d4;
}

.service-card-2 {
    color: #8b5cf6;
}

.service-card-2:hover {
    border-color: #8b5cf6;
}

.service-card-3 {
    color: #ec4899;
}

.service-card-3:hover {
    border-color: #ec4899;
}

.service-card-4 {
    color: #f59e0b;
}

.service-card-4:hover {
    border-color: #f59e0b;
}

.service-card-5 {
    color: #10b981;
}

.service-card-5:hover {
    border-color: #10b981;
}

.service-card-6 {
    color: #ef4444;
}

.service-card-6:hover {
    border-color: #ef4444;
}

/* Icon Wrapper */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-svg-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

/* Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: currentColor;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    flex: 1;
}

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.service-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

.service-btn:focus {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

/* Decorative Background Blobs */
.bg-blob-1,
.bg-blob-2,
.bg-blob-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.bg-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    top: -10%;
    left: -5%;
    filter: blur(60px);
}

.bg-blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    bottom: -15%;
    right: -10%;
    filter: blur(80px);
}

.bg-blob-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(70px);
}

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

@media (max-width: 768px) {
    .services-wave-grid {
    padding: 4rem 0 5rem;
    }
    
    .services-wave-grid .container {
    padding: 0 1.5rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-heading {
    margin-bottom: 1rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 5px;
    }
}

@media (max-width: 576px) {
    .services-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .service-card {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-svg-icon {
    width: 40px;
    height: 40px;
    }
    
    .service-title {
    font-size: 1.25rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
    
    .bg-blob-1,
    .bg-blob-2,
    .bg-blob-3 {
    display: none;
    }
}
/* FAQ Section: Asymmetric Violet Wave Design */
.faq-section-violet-wave {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f7ff 0%, #ffffff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-violet-wave::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    z-index: 1;
}

.faq-section-violet-wave::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 65%);
    border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    z-index: 1;
}

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

/* Header Container */
.faq-header-container {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

.faq-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1e1b4b;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-decorative-blob {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* FAQ Accordion Wrapper */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* FAQ Item */
.faq-item-vw {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.faq-item-vw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item-vw:hover {
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.1);
}

.faq-item-vw.faq-active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.2);
}

.faq-item-vw.faq-active::before {
    opacity: 1;
}

/* Question Header */
.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    gap: 2rem;
    transition: all 0.3s ease;
}

.faq-question-header:hover {
    background: rgba(139, 92, 246, 0.02);
}

.faq-question-header:focus {
    outline: 3px solid rgba(139, 92, 246, 0.3);
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item-vw.faq-active .faq-question-text {
    color: #7c3aed;
}

/* Icon Toggle */
.faq-icon-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item-vw:hover .faq-icon-toggle {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.faq-item-vw.faq-active .faq-icon-toggle {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    transform: rotate(180deg);
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6b7280;
    transition: all 0.3s ease;
}

.faq-item-vw:hover .faq-icon-plus,
.faq-item-vw:hover .faq-icon-minus {
    color: #7c3aed;
}

.faq-item-vw.faq-active .faq-icon-plus,
.faq-item-vw.faq-active .faq-icon-minus {
    color: #ffffff;
}

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

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

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

/* Answer Content */
.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item-vw.faq-active .faq-answer-content {
    max-height: 800px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 2.5rem 2.5rem;
    padding-top: 0.5rem;
}

.faq-answer-inner p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-violet-wave {
    padding: 5rem 0 6rem;
    }
    
    .faq-section-violet-wave::before,
    .faq-section-violet-wave::after {
    width: 400px;
    height: 400px;
    }
    
    .faq-header-container {
    margin-bottom: 3rem;
    }
    
    .faq-main-title {
    font-size: 2.25rem;
    }
    
    .faq-accordion-wrapper {
    gap: 1rem;
    }
    
    .faq-question-header {
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
    }
    
    .faq-question-text {
    font-size: 1.125rem;
    }
    
    .faq-icon-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    }
    
    .faq-answer-inner {
    padding: 0 1.75rem 2rem;
    }
    
    .faq-answer-inner p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-violet-wave {
    padding: 4rem 0 5rem;
    }
    
    .faq-main-title {
    font-size: 1.875rem;
    }
    
    .faq-question-header {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    }
    
    .faq-question-text {
    font-size: 1rem;
    }
    
    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    }
    
    .faq-answer-inner {
    padding: 0 1.5rem 1.75rem;
    }
    
    .faq-answer-inner p {
    font-size: 0.9375rem;
    }
    
    .faq-item-vw {
    border-radius: 18px;
    }
}

/* Focus and Accessibility */
.faq-question-header:focus-visible {
    outline: 3px solid #8b5cf6;
    outline-offset: 2px;
}

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {
    .faq-item-vw,
    .faq-question-header,
    .faq-icon-toggle,
    .faq-answer-content {
    transition: none;
    }
}
/* 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 Coral & Turquoise Gradient */
.contact-info-block-xyz {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #fff5f7 0%, #e0f7fa 50%, #f3e5f5 100%);
    overflow: hidden;
}

.contact-info-block-xyz::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-block-xyz::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(0, 188, 212, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

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

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

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

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

.header-accent-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ffd93d;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 217, 61, 0.2);
}

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

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

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

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b81 0%, #00bcd4 100%);
    transform: translateX(-6px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    transform: translateX(0);
}

.contact-card-address {
    background: linear-gradient(135deg, #fff9f9 0%, #ffffff 100%);
}

.contact-card-phone {
    background: linear-gradient(135deg, #f0fdff 0%, #ffffff 100%);
}

.contact-card-email {
    background: linear-gradient(135deg, #fef9ff 0%, #ffffff 100%);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.icon-address {
    background: linear-gradient(135deg, #ff6b81 0%, #ff8fa3 100%);
    color: #ffffff;
}

.icon-phone {
    background: linear-gradient(135deg, #00bcd4 0%, #26c6da 100%);
    color: #ffffff;
}

.icon-email {
    background: linear-gradient(135deg, #ce93d8 0%, #e1bee7 100%);
    color: #ffffff;
}

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

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

.contact-card-content {
    flex: 1;
    padding-top: 0.5rem;
}

.contact-detail-text {
    font-size: 1.25rem;
    color: #2c3e50;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

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

.contact-phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00bcd4;
    transition: width 0.3s ease;
}

.contact-phone-link:hover {
    color: #00bcd4;
}

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

.contact-map-column {
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 4px solid #ffffff;
}

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

.map-decorative-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}

.map-corner-tl {
    top: -4px;
    left: -4px;
    border-top: 6px solid #ff6b81;
    border-left: 6px solid #ff6b81;
    border-top-left-radius: 32px;
}

.map-corner-br {
    bottom: -4px;
    right: -4px;
    border-bottom: 6px solid #00bcd4;
    border-right: 6px solid #00bcd4;
    border-bottom-right-radius: 32px;
}

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

@media (max-width: 768px) {
    .contact-info-block-xyz {
    padding: 5rem 0 6rem;
    }
    
    .contact-container {
    padding: 0 1.5rem;
    }
    
    .contact-header-wrapper {
    margin-bottom: 3.5rem;
    }
    
    .contact-main-header {
    font-size: 2.5rem;
    }
    
    .contact-card {
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-radius: 20px;
    }
    
    .contact-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    }
    
    .contact-icon {
    width: 28px;
    height: 28px;
    }
    
    .contact-detail-text {
    font-size: 1.125rem;
    }
    
    .map-wrapper {
    height: 380px;
    border-radius: 24px;
    }
    
    .map-decorative-corner {
    width: 60px;
    height: 60px;
    }
}

@media (max-width: 576px) {
    .contact-info-block-xyz {
    padding: 4rem 0 5rem;
    }
    
    .contact-main-header {
    font-size: 2rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .header-accent-line::after {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 6px rgba(255, 217, 61, 0.2);
    }
    
    .contact-card {
    padding: 1.75rem 1.25rem;
    gap: 1rem;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-detail-text {
    font-size: 1rem;
    }
    
    .map-wrapper {
    height: 320px;
    border-radius: 20px;
    }
}
/* Footer Block: Asymmetric Split with Gradient Accent - Deep Teal & Coral */
.footer-block-asymmetric {
    position: relative;
    background: linear-gradient(135deg, #0d3b4d 0%, #1a5568 50%, #0d3b4d 100%);
    color: #e2e8f0;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

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

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand-wrapper {
    position: relative;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-brand-accent {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b 0%, #feca57 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-icon {
    width: 22px;
    height: 22px;
    color: #ff6b6b;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-contact-link {
    font-size: 1.0625rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    transition: width 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
}

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

/* Navigation Section */
.footer-nav-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

.footer-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link {
    font-size: 1.0625rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.5;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 1.5rem;
}

.footer-link:hover::before {
    width: 8px;
    height: 8px;
    background: #feca57;
    box-shadow: 0 0 12px rgba(254, 202, 87, 0.6);
}

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

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

.footer-bottom-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 107, 0.3) 50%, transparent 100%);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.01em;
}

.footer-decorative-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

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

.footer-dot:nth-child(2) {
    animation-delay: 0.3s;
    background: #feca57;
}

.footer-dot:nth-child(3) {
    animation-delay: 0.6s;
    background: #48dbfb;
}

@keyframes footer-pulse {
    0%, 100% {
    opacity: 0.4;
    transform: scale(1);
    }
    50% {
    opacity: 1;
    transform: scale(1.3);
    }
}

/* Background Decorative Shapes */
.footer-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.footer-bg-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.footer-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #feca57 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
}

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

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

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

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

    .footer-nav-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

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

    .footer-contact-text,
    .footer-contact-link,
    .footer-link {
    font-size: 1rem;
    }

    .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    }

    .footer-copyright {
    font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .footer-brand-name {
    font-size: 1.75rem;
    }

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

    .footer-contact-item {
    gap: 0.75rem;
    }

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

    .footer-link {
    padding-left: 1rem;
    }

    .footer-link:hover {
    padding-left: 1.25rem;
    }
}
