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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #8661c54d;
}

#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: Floating Glass Navigation with Split Layout */
.header-quantum-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-quantum-nav::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);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.header-quantum-nav.header-scrolled {
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.header-quantum-nav.header-scrolled::before {
    opacity: 1;
    background: rgba(255, 255, 255, 0.95);
}

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

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

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

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

.brand-icon {
    width: 42px;
    height: 42px;
    color: #6366f1;
    transition: all 0.3s ease;
}

.brand-logo:hover .brand-icon {
    color: #4f46e5;
    transform: rotate(15deg);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.nav-main {
    display: flex;
    align-items: center;
}

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

.nav-item {
    position: relative;
}

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

.nav-link:hover {
    color: #6366f1;
}

.link-text {
    position: relative;
}

.link-hover-line {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link-about {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link-about:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    color: #ffffff;
}

.nav-link-about .link-hover-line {
    display: none;
}

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

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

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 240px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

.dropdown-item {
    list-style: none;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: #475569;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    color: #6366f1;
    transform: translateX(4px);
}

.dropdown-icon {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.dropdown-link:hover .dropdown-icon {
    color: #6366f1;
}

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

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

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.2s ease;
}

.mobile-menu-close:hover {
    color: #1e293b;
}

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

.mobile-nav-item {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #6366f1;
}

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

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

/* Mobile Dropdown */
.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.mobile-dropdown-item {
    border-top: 1px solid #f1f5f9;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.875rem 0.5rem 0.875rem 2rem;
    color: #64748b;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

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

    .mobile-menu-toggle {
    display: flex;
    }
}

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

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

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

    .nav-mobile {
    width: 280px;
    }
}

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

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

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

    .brand-text {
    font-size: 1.125rem;
    }
}
/* Hero Block: Asymmetric Split with Floating Animation - Modern Pink/Yellow/Green Theme */

.hero-split-asymmetric {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a1a 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

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

.float-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 20, 147, 0.2);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.float-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.15);
    top: 60%;
    right: -5%;
    animation-delay: -5s;
}

.float-shape.shape-3 {
    width: 350px;
    height: 350px;
    background: rgba(0, 255, 127, 0.15);
    bottom: 10%;
    left: 40%;
    animation-delay: -10s;
}

.float-shape.shape-4 {
    width: 250px;
    height: 250px;
    background: rgba(255, 20, 147, 0.1);
    top: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    25% {
    transform: translate(30px, -30px) scale(1.1);
    }
    50% {
    transform: translate(-20px, 40px) scale(0.9);
    }
    75% {
    transform: translate(40px, 20px) scale(1.05);
    }
}

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

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

/* Navigation */
.hero-navigation {
    display: flex;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    position: relative;
    overflow: hidden;
}

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

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

.nav-link:hover {
    border-color: #FFD700;
    background: rgba(255, 20, 147, 0.1);
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

.hero-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Text Section */
.hero-text-section {
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInLeft {
    from {
    opacity: 0;
    transform: translateX(-60px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.hero-main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #FF1493 0%, #FFD700 50%, #00FF7F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    animation: titleGradient 5s ease infinite;
}

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

.title-line-1 {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 3rem 0;
    max-width: 600px;
    letter-spacing: 0.01em;
}

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

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #FF1493 0%, #FFD700 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

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

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

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
}

.cta-arrow {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Decorative Line */
.hero-decorative-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.line-segment {
    height: 2px;
    background: linear-gradient(90deg, #FF1493, #FFD700);
    animation: lineExpand 2s ease-in-out infinite;
}

.line-segment.segment-1 {
    width: 60px;
}

.line-segment.segment-2 {
    width: 100px;
    animation-delay: 0.5s;
}

@keyframes lineExpand {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.3); }
}

.line-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00FF7F;
    animation: dotPulse 1.5s ease-in-out infinite;
}

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

/* Visual Section */
.hero-visual-section {
    position: relative;
    height: 500px;
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@keyframes slideInRight {
    from {
    opacity: 0;
    transform: translateX(60px);
    }
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: cardFloat 6s ease-in-out infinite;
}

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

.visual-card:hover::before {
    opacity: 0.3;
}

.visual-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
    border-color: #FF1493;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.visual-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    display: block;
    width: 64px;
    height: 64px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.visual-card.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: -2s;
}

.visual-card.card-3 {
    bottom: 10%;
    left: 25%;
    animation-delay: -4s;
}

@keyframes cardFloat {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    25% {
    transform: translateY(-15px) rotate(2deg);
    }
    50% {
    transform: translateY(-8px) rotate(-2deg);
    }
    75% {
    transform: translateY(-12px) rotate(1deg);
    }
}

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

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

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #FFD700);
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-visual-section {
    height: 400px;
    }
    
    .visual-card {
    padding: 1.5rem;
    }
    
    .card-icon {
    width: 48px;
    height: 48px;
    }
}

@media (max-width: 768px) {
    .hero-header {
    padding: 1.5rem 0;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .hero-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1a0a1a 0%, #0a1a1a 100%);
    padding: 6rem 2rem 2rem;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 2px solid rgba(255, 215, 0, 0.2);
    z-index: 100;
    }
    
    .mobile-menu-checkbox:checked ~ .hero-navigation {
    right: 0;
    }
    
    .nav-list {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    }
    
    .nav-link {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    }
    
    .hero-content-wrapper {
    padding: 2rem 0;
    }
    
    .hero-main-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-cta-primary {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    }
    
    .hero-visual-section {
    height: 300px;
    margin-top: 2rem;
    }
    
    .visual-card {
    padding: 1rem;
    }
    
    .card-icon {
    width: 40px;
    height: 40px;
    }
    
    .visual-card.card-1 {
    top: 0;
    left: 0;
    }
    
    .visual-card.card-2 {
    top: 35%;
    right: 0;
    }
    
    .visual-card.card-3 {
    bottom: 0;
    left: 15%;
    }
    
    .hero-scroll-indicator {
    bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
    padding: 0 1rem;
    }
    
    .hero-content-container {
    padding: 0 1rem;
    }
    
    .logo-icon {
    width: 40px;
    height: 40px;
    }
    
    .hero-navigation {
    width: 100%;
    right: -100%;
    }
    
    .hero-main-title {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-cta-primary {
    width: 100%;
    justify-content: center;
    }
    
    .hero-visual-section {
    height: 250px;
    }
    
    .float-shape {
    filter: blur(40px);
    }
}
/* 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 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 Block: Diagonal Split Grid - Unique Cyberpunk Neon Design */
.services-block-dg789 {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #0a0118 0%, #1a0a2e 50%, #0f051d 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .services-block-dg789 {
    padding: 4rem 0 5rem;
    }
    
    .services-header-wrapper-dg {
    margin-bottom: 3rem;
    }
    
    .services-main-title-dg {
    font-size: 2rem;
    margin-bottom: 1rem;
    }
    
    .header-accent-line-dg {
    width: 80px;
    height: 4px;
    }
    
    .service-card-dg {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    }
    
    .service-icon-wrapper-dg {
    width: 65px;
    height: 65px;
    margin-bottom: 1.5rem;
    }
    
    .service-icon-dg {
    width: 36px;
    height: 36px;
    }
    
    .service-name-dg {
    font-size: 1.25rem;
    }
    
    .service-text-dg {
    font-size: 0.9375rem;
    }
    
    .service-btn-dg {
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    }
}
/* FAQ Block: Violet Gradient Theme with Pure CSS Accordion */
.faq-block-violet {
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f4ff 0%, #e9deff 50%, #f0e6ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-block-violet::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-block-violet::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.faq-main-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #6b21a8;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.faq-decorative-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #9333ea 0%, #c084fc 100%);
    margin: 0 auto;
    border-radius: 10px;
}

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

.faq-item-wrapper {
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #e9d5ff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.08);
}

.faq-item-wrapper:hover {
    border-color: #c084fc;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.15);
    transform: translateY(-2px);
}

.faq-checkbox {
    display: none;
}

.faq-question-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.faq-question-label:hover {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b21a8;
    line-height: 1.5;
    padding-right: 1.5rem;
    transition: color 0.3s ease;
}

.faq-question-label:hover .faq-question-text {
    color: #7c3aed;
}

.faq-icon-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

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

.faq-checkbox:checked ~ .faq-question-label .faq-icon-toggle {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.faq-checkbox:checked ~ .faq-question-label .faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-checkbox:checked ~ .faq-question-label .faq-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-checkbox:checked ~ .faq-answer-container {
    max-height: 800px;
}

.faq-answer-inner {
    padding: 0 2rem 2rem 2rem;
    background: #ffffff;
}

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

/* Focus states for accessibility */
.faq-checkbox:focus-visible ~ .faq-question-label {
    outline: 3px solid #a855f7;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-block-violet {
    padding: 4.5rem 0;
    }

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

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

    .faq-accordion-container {
    gap: 1rem;
    }

    .faq-item-wrapper {
    border-radius: 16px;
    }

    .faq-question-label {
    padding: 1.25rem 1.5rem;
    }

    .faq-question-text {
    font-size: 1.0625rem;
    padding-right: 1rem;
    }

    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    }

    .faq-icon-plus,
    .faq-icon-minus {
    width: 20px;
    height: 20px;
    }

    .faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .faq-block-violet {
    padding: 3.5rem 0;
    }

    .faq-question-label {
    padding: 1rem 1.25rem;
    }

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

    .faq-answer-inner {
    padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-answer-text {
    font-size: 0.9375rem;
    }
}
/* Contact Form Block - Modern Gradient Card Design */
.contact-form-block-zx8q {
    position: relative;
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container-zx8q {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    z-index: 2;
}

.contact-form-wrapper-zx8q {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-header-zx8q {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title-zx8q {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-underline-zx8q {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.contact-form-zx8q {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group-zx8q {
    position: relative;
    width: 100%;
}

.form-label-zx8q {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.625rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.form-input-zx8q,
.form-textarea-zx8q {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1.0625rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-input-zx8q::placeholder,
.form-textarea-zx8q::placeholder {
    color: #a0aec0;
    opacity: 1;
}

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

.form-input-zx8q:hover,
.form-textarea-zx8q:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-submit-zx8q {
    width: 100%;
    padding: 1.375rem 2.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;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
}

.form-submit-zx8q::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-zx8q:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.45);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

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

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

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

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

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

.decorative-shapes-zx8q {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape-circle-zx8q {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    animation: float-zx8q 8s ease-in-out infinite;
}

.shape-1-zx8q {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2-zx8q {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation-delay: 2s;
}

.shape-blob-zx8q {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 65%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph-zx8q 12s ease-in-out infinite;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-block-zx8q {
    padding: 4rem 1rem;
    min-height: auto;
    }
    
    .contact-form-wrapper-zx8q {
    padding: 2.5rem 1.75rem;
    border-radius: 24px;
    }
    
    .form-title-zx8q {
    font-size: 2.25rem;
    }
    
    .form-header-zx8q {
    margin-bottom: 2rem;
    }
    
    .contact-form-zx8q {
    gap: 1.5rem;
    }
    
    .form-input-zx8q,
    .form-textarea-zx8q {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .form-submit-zx8q {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    }
    
    .shape-1-zx8q {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -60px;
    }
    
    .shape-2-zx8q {
    width: 220px;
    height: 220px;
    bottom: -50px;
    left: -50px;
    }
    
    .shape-blob-zx8q {
    width: 350px;
    height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper-zx8q {
    padding: 2rem 1.5rem;
    }
    
    .form-title-zx8q {
    font-size: 1.875rem;
    }
    
    .title-underline-zx8q {
    width: 60px;
    height: 4px;
    }
    
    .form-textarea-zx8q {
    min-height: 140px;
    }
}

/* Focus visible for accessibility */
.form-input-zx8q:focus-visible,
.form-textarea-zx8q:focus-visible,
.form-submit-zx8q:focus-visible {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}
/* Contact Information Section - Asymmetric Split with Vibrant Accents */
.contact-info-section-j8k {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.email-value {
    color: #f39c12;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-card-wrapper {
    padding: 2rem 1.5rem;
    }
    
    .info-value {
    font-size: 1rem;
    }
    
    .address-value {
    font-size: 0.938rem;
    }
    
    .email-text {
    font-size: 1rem;
    }
    
    .map-container {
    min-height: 350px;
    }
    
    .map-frame iframe {
    min-height: 350px;
    }
}
/* Modern Gradient Footer with Icon Accents */
.footer-gradient-modern {
    position: relative;
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f0 50%, #f0f9ff 100%);
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer-gradient-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(196, 69, 105, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    z-index: 1;
}

/* Company Info Styles */
.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    flex-shrink: 0;
}

.footer-brand-icon svg {
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 157, 0.3));
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-brand-icon svg {
    transform: scale(1.05) rotate(5deg);
}

.footer-brand-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.02em;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.6;
}

.footer-icon {
    flex-shrink: 0;
    color: #ff6b9d;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover .footer-icon {
    transform: scale(1.1);
}

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

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

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

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

/* Navigation Section Styles */
.footer-nav-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.footer-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

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

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

.footer-nav-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 1.25rem;
}

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

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

.footer-nav-link:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

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

/* Wave Divider */
.footer-wave-divider {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

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

/* Footer Bottom Bar */
.footer-bottom {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(196, 69, 105, 0.15);
    text-align: center;
    z-index: 1;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #718096;
    margin: 0;
}

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

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

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

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

    .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    }

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

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

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

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

    .footer-bottom {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem 0;
    }

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

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

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

@media (max-width: 576px) {
    .footer-gradient-modern {
    padding: 3rem 0 1.5rem;
    }

    .footer-container {
    padding: 0 1.25rem;
    gap: 2rem;
    }

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

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

    .footer-contact-details {
    gap: 1rem;
    }

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

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

    .footer-nav-title {
    font-size: 1rem;
    }

    .footer-nav-list {
    gap: 0.75rem;
    }

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

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

    .footer-bottom {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem 0;
    }
}
