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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #098ff24d;
}

#about {
    font-size: 1.2rem;
}

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

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Header Block: Asymmetric Floating Glassmorphism Navigation */
.header-floating-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-floating-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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);
    transition: all 0.4s ease;
}

.header-floating-glass.scrolled::before {
    background: rgba(10, 10, 30, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

/* Brand Section */
.brand-section {
    flex-shrink: 0;
    z-index: 10;
}

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

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

.brand-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 128, 255, 0.3);
}

.brand-link:hover .brand-icon {
    transform: rotate(5deg);
    box-shadow: 0 6px 25px rgba(0, 128, 255, 0.5);
}

.brand-icon svg {
    width: 24px;
    height: 24px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    background: #00d4ff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;

}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

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

.nav-link:hover {
    color: rgba(0, 0, 0);
    transform: translateY(-2px);
}

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

.dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

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

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

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

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

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

/* Search Section */
.search-section {
    flex-shrink: 0;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 220px;
    padding: 0.75rem 3rem 0.75rem 1.25rem;
    font-size: 0.9375rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.search-input:focus {
    width: 280px;
    background: rgba(255, 255, 255, 0.12);
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

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

.search-button svg {
    width: 18px;
    height: 18px;
}

.search-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #00d4ff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

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

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

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

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(8px);
}

.mobile-dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

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

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu-link {
    display: block;
    padding: 1rem 1.5rem 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

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

/* Mobile Search Section */
.mobile-search-section {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.mobile-nav-overlay.active .mobile-search-section {
    opacity: 1;
    transform: translateY(0);
}

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-input {
    width: 100%;
    padding: 1.25rem 4rem 1.25rem 1.5rem;
    font-size: 1.125rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

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

.mobile-search-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

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

.mobile-search-button svg {
    width: 20px;
    height: 20px;
}

.mobile-search-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
    gap: 2rem;
    }
    
    .nav-list {
    gap: 0.25rem;
    }
    
    .nav-link {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    }
    
    .search-input {
    width: 180px;
    }
    
    .search-input:focus {
    width: 220px;
    }
}

@media (max-width: 992px) {
    .nav-desktop,
    .search-section {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .header-container {
    gap: 1rem;
    }
}

@media (max-width: 576px) {
    .header-floating-glass {
    padding: 1rem 0;
    }
    
    .header-container {
    padding: 0 1.25rem;
    }
    
    .brand-icon {
    width: 38px;
    height: 38px;
    }
    
    .brand-icon svg {
    width: 20px;
    height: 20px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
    
    .nav-mobile {
    padding: 5rem 1.25rem 2rem;
    }
    
    .mobile-nav-link {
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    }
    
    .mobile-submenu-link {
    padding: 0.875rem 1.25rem 0.875rem 2rem;
    font-size: 1.0625rem;
    }
    
    .mobile-search-input {
    padding: 1rem 3.5rem 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .mobile-search-button {
    width: 40px;
    height: 40px;
    }
}
/* Hero Section: Asymmetric Split with Neon Accents */
.hero-section-vx9k {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-container-mw7 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Animated Background Shapes */
.hero-bg-shapes-qr5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-circle-1 {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    animation: float-shape-1 20s ease-in-out infinite;
}

.shape-triangle-1 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(255, 0, 128, 0.1);
    animation: float-shape-2 15s ease-in-out infinite;
}

.shape-square-1 {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 217, 61, 0.08);
    transform: rotate(45deg);
    animation: rotate-shape 30s linear infinite;
}

.shape-blob-1 {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph-blob 12s ease-in-out infinite;
}

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

@keyframes float-shape-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

@keyframes rotate-shape {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes morph-blob {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%; }
    75% { border-radius: 30% 70% 50% 50% / 70% 30% 30% 70%; }
}

/* Header Navigation */
.hero-header-k2p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
}

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

.nav-wrapper-tj4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-container-bn6 {
    display: flex;
    align-items: center;
}

.logo-icon-wp2 {
    width: 50px;
    height: 50px;
    color: #00ff88;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    transition: all 0.4s ease;
}

.logo-icon-wp2:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
}

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

.hamburger-label-ks3 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
    position: relative;
}

.hamburger-line-1,
.hamburger-line-2,
.hamburger-line-3 {
    width: 30px;
    height: 3px;
    background: #00ff88;
    margin: 4px 0;
    transition: all 0.4s ease;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Navigation Menu */
.nav-menu-overlay-lr9 {
    display: flex;
    align-items: center;
}

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

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

.nav-link-zh5 {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link-zh5::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #ff0080, #00d4ff);
    transition: width 0.4s ease;
}

.nav-link-zh5:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

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

/* Hero Content Grid */
.hero-content-grid-sc1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding-top: 120px;
}

.hero-text-column-vb7 {
    position: relative;
    z-index: 20;
}

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

.hero-heading-dp9 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

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

.hero-subheading-kx2 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 3rem 0;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

/* CTA Button */
.hero-cta-group-fr6 {
    display: flex;
    gap: 1.5rem;
}

.hero-cta-primary-jt8 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff0080 0%, #ff0080 50%, #00ff88 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary-jt8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-cta-primary-jt8:hover {
    background-position: 100% 0%;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.6);
}

.hero-cta-primary-jt8:hover::before {
    transform: translateX(100%);
}

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

.cta-arrow-icon-bm1 {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.hero-cta-primary-jt8:hover .cta-arrow-icon-bm1 {
    transform: translateX(5px);
}

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

.hero-image-container-tk9 {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper-xl4 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: morph-image 15s ease-in-out infinite;
}

@keyframes morph-image {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%; }
    75% { border-radius: 30% 70% 50% 50% / 70% 30% 30% 70%; }
}

.image-overlay-gradient-pn7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3) 0%, rgba(0, 255, 136, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Floating SVG Elements */
.floating-element-rt2 {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.float-1 {
    top: -10%;
    right: 10%;
    animation: float-up-down 6s ease-in-out infinite;
}

.float-2 {
    bottom: 10%;
    left: -5%;
    animation: float-left-right 8s ease-in-out infinite;
}

.float-3 {
    top: 50%;
    right: -5%;
    animation: float-rotate 10s ease-in-out infinite;
}

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

@keyframes float-left-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

@keyframes float-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Scroll Indicator */
.scroll-indicator-vy3 {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}

.scroll-line-animated-qj8 {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #00ff88, transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content-grid-sc1 {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 100px;
    }
    
    .hero-visual-column-hq5 {
    height: 400px;
    order: -1;
    }
    
    .hero-heading-dp9 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-subheading-kx2 {
    font-size: 1.25rem;
    }
    
    .hamburger-label-ks3 {
    display: flex;
    }
    
    .nav-menu-overlay-lr9 {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #1a0a1a 0%, #0a1a1a 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    }
    
    .menu-checkbox-yt7:checked ~ .nav-menu-overlay-lr9 {
    transform: translateX(0);
    }
    
    .nav-list-qm4 {
    flex-direction: column;
    gap: 2rem;
    }
    
    .nav-link-zh5 {
    font-size: 1.5rem;
    display: block;
    padding: 1rem 0;
    }
    
    /* Hamburger Animation */
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-1 {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ff0080;
    }
    
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-2 {
    opacity: 0;
    }
    
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-3 {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ff0080;
    }
    
    /* Mobile Menu Overlay */
    .menu-checkbox-yt7:checked ~ .nav-menu-overlay-lr9::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    animation: fade-in 0.4s ease;
    }
    
    @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
    }
}

@media (max-width: 576px) {
    .hero-container-mw7 {
    padding: 0 1.5rem;
    }
    
    .hero-heading-dp9 {
    font-size: 2.5rem;
    }
    
    .hero-subheading-kx2 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-cta-primary-jt8 {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-visual-column-hq5 {
    height: 300px;
    }
    
    .nav-menu-overlay-lr9 {
    max-width: 100%;
    }
    
    .shape-circle-1,
    .shape-triangle-1 {
    width: 150px;
    height: 150px;
    }
}
/* 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 Grid with Gradient Accents */
.services-diagonal-grid {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0f9ff 100%);
    overflow: hidden;
}

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

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

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

.services-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ec4899, #f59e0b);
    margin: 0 auto;
    border-radius: 50px;
    position: relative;
}

.services-title-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    border-color: rgba(236, 72, 153, 0.2);
}

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

.service-card-1 { animation-delay: 0.1s; }
.service-card-2 { animation-delay: 0.2s; }
.service-card-3 { animation-delay: 0.3s; }
.service-card-4 { animation-delay: 0.4s; }
.service-card-5 { animation-delay: 0.5s; }
.service-card-6 { animation-delay: 0.6s; }

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.75rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
}

.service-icon {
    width: 48px;
    height: 48px;
    color: #6366f1;
    transition: all 0.4s ease;
}

.service-card-1 .service-icon { color: #6366f1; }
.service-card-2 .service-icon { color: #ec4899; }
.service-card-3 .service-icon { color: #8b5cf6; }
.service-card-4 .service-icon { color: #14b8a6; }
.service-card-5 .service-icon { color: #f59e0b; }
.service-card-6 .service-icon { color: #ef4444; }

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px currentColor);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-card:hover .service-name {
    color: #6366f1;
}

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

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

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

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

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.service-btn:focus {
    outline: 3px solid rgba(99, 102, 241, 0.4);
    outline-offset: 3px;
}

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

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

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

/* Background decorative elements */
.services-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.services-bg-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    top: -150px;
    right: -150px;
    animation: float-1 20s ease-in-out infinite;
}

.services-bg-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, #8b5cf6, #14b8a6);
    bottom: -100px;
    left: -100px;
    animation: float-2 18s ease-in-out infinite;
}

.services-bg-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #f59e0b, #ec4899);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-3 22s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

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

@keyframes float-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

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

@media (max-width: 768px) {
    .services-diagonal-grid {
    padding: 5rem 0;
    }
    
    .services-container {
    padding: 0 1.5rem;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
    
    .service-card {
    padding: 2rem;
    }
    
    .services-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    .services-diagonal-grid {
    padding: 4rem 0;
    }
    
    .services-container {
    padding: 0 1rem;
    }
    
    .service-card {
    padding: 1.75rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    }
    
    .service-icon {
    width: 40px;
    height: 40px;
    }
    
    .service-name {
    font-size: 1.25rem;
    }
}
/* 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 Split Design - Unique Gradient Layout */
.contact-form-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    width: 100%;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    min-height: 650px;
}

/* Visual Side with Floating Shapes */
.contact-visual-side {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: #ffffff;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: #e0e0e0;
    bottom: 15%;
    left: 30%;
    animation-delay: 4s;
}

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

/* Form Side */
.contact-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: #ffffff;
}

.form-container {
    width: 100%;
    max-width: 500px;
}

.contact-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4a6a;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    color: #1a1a2e;
    background: #f7f7fb;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    background: #ffffff;
    border-color: #4facfe;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
    transform: translateY(-2px);
}

.form-input:hover,
.form-textarea:hover {
    background: #ffffff;
    border-color: #e0e0e0;
}

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

/* Submit Button */
.form-submit-btn {
    margin-top: 1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

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

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

/* Input Validation States */
.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
    border-color: #51cf66;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
    grid-template-columns: 1fr;
    }

    .contact-visual-side {
    display: none;
    }

    .contact-form-side {
    padding: 3rem 2rem;
    }

    .contact-heading {
    font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .contact-form-split {
    padding: 2rem 1rem;
    min-height: auto;
    }

    .contact-wrapper {
    border-radius: 20px;
    }

    .contact-form-side {
    padding: 2.5rem 1.5rem;
    }

    .contact-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    }

    .form-input,
    .form-textarea {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    }

    .form-submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }

    .form-group {
    gap: 0.375rem;
    }

    .contact-form {
    gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-heading {
    font-size: 1.75rem;
    }

    .form-label {
    font-size: 0.8rem;
    }

    .form-textarea {
    min-height: 120px;
    }
}
/* Contact Information Block - Modern Split Layout */
.contact-info-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-info-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.contact-info-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Contact Details Card */
.contact-details-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-details-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

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

.contact-item:hover {
    padding-left: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-content {
    flex: 1;
    min-width: 0;
}

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

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

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

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

.contact-link:hover {
    color: #4f46e5;
}

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

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

/* Decorative Elements */
.contact-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.deco-circle-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.deco-circle-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    top: 20px;
    right: 50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
    transform: translateY(0) scale(1);
    }
    50% {
    transform: translateY(-20px) scale(1.05);
    }
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 500px;
}

.map-container:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    pointer-events: none;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-section {
    padding: 5rem 0;
    }
    
    .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    }
    
    .contact-info-section .section-title {
    font-size: 2.5rem;
    }
    
    .contact-details-card {
    padding: 2.5rem;
    }
    
    .map-wrapper {
    min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
    padding: 4rem 0;
    }
    
    .contact-header {
    margin-bottom: 3rem;
    }
    
    .contact-info-section .section-title {
    font-size: 2rem;
    }
    
    .contact-details-card {
    padding: 2rem;
    border-radius: 20px;
    }
    
    .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    }
    
    .contact-item:hover {
    padding-left: 0;
    }
    
    .contact-icon {
    width: 48px;
    height: 48px;
    }
    
    .contact-icon svg {
    width: 24px;
    height: 24px;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-wrapper {
    min-height: 350px;
    }
    
    .map-container {
    border-radius: 20px;
    min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
    padding: 3rem 0;
    }
    
    .contact-info-section .container {
    padding: 0 1rem;
    }
    
    .contact-info-section .section-title {
    font-size: 1.75rem;
    }
    
    .contact-details-card {
    padding: 1.5rem;
    border-radius: 16px;
    }
    
    .contact-item {
    padding: 1.25rem 0;
    }
    
    .map-wrapper {
    min-height: 300px;
    }
    
    .map-container {
    min-height: 300px;
    border-radius: 16px;
    }
    
    .contact-decoration {
    width: 150px;
    height: 150px;
    }
    
    .deco-circle-1 {
    width: 100px;
    height: 100px;
    }
    
    .deco-circle-2 {
    width: 70px;
    height: 70px;
    }
}
/* Footer Wave Modern Design - Vibrant Coral & Mint Theme */
.footer-wave-modern {
    position: relative;
    background: linear-gradient(165deg, #fef9f3 0%, #fff5eb 50%, #ffeee0 100%);
    padding-top: 0;
    overflow: hidden;
}

.footer-wave-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

.footer-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    fill: #fef9f3;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
}

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

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

.footer-brand-wrapper {
    margin-bottom: 0.5rem;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff8787 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: #8b5e3c;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #6b4423;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-phone-link {
    color: #6b4423;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-phone-link:hover {
    color: #ff6b6b;
    transform: translateX(3px);
}

/* Columns */
.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3d2817;
    margin: 0 0 1.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8787 100%);
    border-radius: 2px;
}

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

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b4423;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.footer-link-arrow {
    display: inline-block;
    color: #ff6b6b;
    font-size: 1.125rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

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

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

/* Newsletter Column */
.footer-newsletter-text {
    color: #6b4423;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.1);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

.footer-social-link:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 3px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 107, 107, 0.15);
}

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

.footer-copyright {
    color: #8b5e3c;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-bottom-link {
    color: #6b4423;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-bottom-link:hover {
    color: #ff6b6b;
}

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

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

.footer-separator {
    color: #d4a373;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-container {
    padding: 4rem 1.5rem 2rem;
    }

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

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

    .footer-column-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

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

    .footer-bottom-links {
    justify-content: center;
    }

    .footer-wave-divider svg {
    height: 80px;
    }
}

@media (max-width: 576px) {
    .footer-container {
    padding: 3rem 1rem 1.5rem;
    }

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

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

    .footer-nav-link {
    font-size: 0.875rem;
    }

    .footer-social-link {
    width: 40px;
    height: 40px;
    }

    .footer-social-link svg {
    width: 18px;
    height: 18px;
    }

    .footer-copyright,
    .footer-bottom-link {
    font-size: 0.8125rem;
    }
}
