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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #0487f34d;
}

#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;
    }
}
/* Welcome Hero Block: Asymmetric Design with Cyberpunk Accents */
.welcome-hero-zx9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    padding: 8rem 2rem 4rem;
}

.hero-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left-column {
    position: relative;
    padding: 3rem;
}

.hero-text-container {
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
    }
    50% {
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.hero-btn-primary::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;
}

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

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

.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatAnimation 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

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

.hero-right-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-main-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(99, 102, 241, 0.3));
}

.svg-shape {
    animation: shapeRotate 20s linear infinite;
    transform-origin: center;
}

.shape-1 {
    animation-duration: 25s;
    animation-direction: normal;
}

.shape-2 {
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    animation-duration: 35s;
    animation-direction: normal;
}

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

.svg-icon-group {
    animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
    transform: translate(400, 400) scale(1);
    }
    50% {
    transform: translate(400, 400) scale(1.05);
    }
}

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: cardFloat 5s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 50%;
    right: -10%;
    animation-delay: 3s;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #6366f1;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
    top: 8px;
    opacity: 1;
    }
    50% {
    top: 24px;
    opacity: 0.5;
    }
    100% {
    top: 8px;
    opacity: 1;
    }
}

.hero-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbPulse 8s ease-in-out infinite;
}

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

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -15%;
    right: -15%;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #14b8a6 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes orbPulse {
    0%, 100% {
    transform: scale(1);
    opacity: 0.4;
    }
    50% {
    transform: scale(1.2);
    opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
    gap: 3rem;
    }
    
    .hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

@media (max-width: 992px) {
    .welcome-hero-zx9 {
    padding: 6rem 1.5rem 3rem;
    }
    
    .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .hero-left-column {
    padding: 2rem 0;
    text-align: center;
    }
    
    .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-right-column {
    order: -1;
    }
    
    .hero-floating-card {
    display: none;
    }
}

@media (max-width: 768px) {
    .welcome-hero-zx9 {
    min-height: auto;
    padding: 5rem 1rem 3rem;
    }
    
    .hero-main-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    }
    
    .hero-left-column {
    padding: 1rem 0;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
    
    .floating-circle {
    display: none;
    }
    
    .gradient-orb {
    filter: blur(60px);
    }
}

@media (max-width: 576px) {
    .hero-main-svg {
    max-width: 350px;
    }
    
    .hero-cta-group {
    flex-direction: column;
    align-items: center;
    }
    
    .hero-btn-primary {
    width: 100%;
    }
    
    .orb-1, .orb-2, .orb-3 {
    width: 250px;
    height: 250px;
    }
}
/* Futures Block: Asymmetric Diagonal Grid with Neon Accents */
.futures-quantum-47x {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.futures-background-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.futures-background-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: skewY(-2deg);
}

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

.futures-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* Feature Cards Base */
.future-card {
    position: relative;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.future-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.future-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.future-card:hover .future-card-inner::before {
    opacity: 1;
}

/* Card Variants */
.future-card-prime {
    transform: translateY(-20px);
}

.future-card-secondary {
    transform: translateY(0);
}

.future-card-tertiary {
    transform: translateY(-10px);
}

.future-card:hover {
    transform: translateY(-30px) scale(1.02);
}

.future-card-secondary:hover {
    transform: translateY(-10px) scale(1.02);
}

.future-card-tertiary:hover {
    transform: translateY(-20px) scale(1.02);
}

/* Image Container */
.future-image-container {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
}

.future-image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.future-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.future-card:hover .future-image {
    transform: scale(1.1);
}

.future-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.future-card:hover .future-image-overlay {
    opacity: 0.3;
}

/* Accent Blob */
.future-accent-blob {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.future-card-prime .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
}

.future-card-secondary .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.4) 0%, transparent 70%);
}

.future-card-tertiary .future-accent-blob {
    bottom: 20px;
    right: 20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
}

.future-card:hover .future-accent-blob {
    opacity: 1;
    transform: scale(1.5);
}

/* Content Zone */
.future-content-zone {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.future-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.future-card-prime:hover .future-heading {
    color: #00ff88;
}

.future-card-secondary:hover .future-heading {
    color: #ff0080;
}

.future-card-tertiary:hover .future-heading {
    color: #00d4ff;
}

/* Divider */
.future-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88 0%, #ff0080 50%, #00d4ff 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.future-card:hover .future-divider {
    width: 100px;
}

.future-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: color 0.3s ease;
}

.future-card:hover .future-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 992px) {
    .futures-quantum-47x {
    padding: 6rem 0;
    }

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

    .future-card-prime,
    .future-card-secondary,
    .future-card-tertiary {
    transform: translateY(0);
    }

    .future-heading {
    font-size: 1.5rem;
    }

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

@media (max-width: 768px) {
    .futures-quantum-47x {
    padding: 4rem 0;
    }

    .futures-container-wrap {
    padding: 0 1.5rem;
    }

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

    .future-content-zone {
    padding: 2rem;
    gap: 1rem;
    }

    .future-heading {
    font-size: 1.375rem;
    }

    .future-description {
    font-size: 1rem;
    line-height: 1.6;
    }

    .future-image-container {
    padding-top: 60%;
    }

    .future-accent-blob {
    width: 80px;
    height: 80px;
    }
}

@media (max-width: 576px) {
    .futures-quantum-47x {
    padding: 3rem 0;
    }

    .futures-container-wrap {
    padding: 0 1rem;
    }

    .future-content-zone {
    padding: 1.5rem;
    }

    .future-heading {
    font-size: 1.25rem;
    }

    .future-description {
    font-size: 0.9375rem;
    }

    .future-card:hover {
    transform: translateY(-10px) scale(1.01);
    }
}
/* Testimonials Carousel Section - Vibrant Gradient Design */
.testimonials-carousel-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 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(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Hide radio inputs */
.carousel-radio {
    display: none;
}

/* Carousel Container */
.testimonials-carousel-container {
    overflow: hidden;
    border-radius: 24px;
    position: relative;
}

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

/* Testimonial Card */
.testimonial-card {
    min-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.testimonial-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-content {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.quote-icon {
    color: #6366f1;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 1.375rem;
    line-height: 1.75;
    color: #e2e8f0;
    margin: 0 0 2.5rem 0;
    font-weight: 400;
    font-style: italic;
}

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

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

.testimonial-card:hover .author-avatar {
    transform: scale(1.08);
}

.author-avatar svg {
    display: block;
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.author-info {
    flex: 1;
}

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

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating svg {
    width: 20px;
    height: 20px;
}

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

.nav-button {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.nav-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

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

.nav-prev {
    margin-left: -28px;
}

.nav-next {
    margin-right: -28px;
}

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

/* Carousel State Management with CSS */
#slide-1:checked ~ .testimonials-carousel-container .testimonials-track {
    transform: translateX(0%);
}

#slide-2:checked ~ .testimonials-carousel-container .testimonials-track {
    transform: translateX(-100%);
}

#slide-3:checked ~ .testimonials-carousel-container .testimonials-track {
    transform: translateX(-200%);
}

/* Active pagination dot */
#slide-1:checked ~ .carousel-pagination .pagination-dot:nth-child(1),
#slide-2:checked ~ .carousel-pagination .pagination-dot:nth-child(2),
#slide-3:checked ~ .carousel-pagination .pagination-dot:nth-child(3) {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

/* Navigation button visibility logic */
#slide-1:checked ~ .carousel-navigation .nav-prev {
    display: none;
}

#slide-3:checked ~ .carousel-navigation .nav-next {
    display: none;
}

/* Static Fallback Grid */
.testimonials-static-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-static {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card-static:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-title {
    font-size: 2.75rem;
    }
    
    .testimonial-content {
    padding: 3rem 2.5rem;
    }
    
    .testimonial-text {
    font-size: 1.25rem;
    }
    
    .nav-button {
    width: 48px;
    height: 48px;
    }
    
    .nav-prev {
    margin-left: -24px;
    }
    
    .nav-next {
    margin-right: -24px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-section {
    padding: 5rem 0;
    }
    
    .testimonials-title {
    font-size: 2.25rem;
    }
    
    .testimonials-header {
    margin-bottom: 3rem;
    }
    
    .testimonial-content {
    padding: 2.5rem 2rem;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    }
    
    .quote-icon svg {
    width: 40px;
    height: 40px;
    }
    
    .author-avatar svg {
    width: 56px;
    height: 56px;
    }
    
    .author-name {
    font-size: 1.125rem;
    }
    
    .star-rating svg {
    width: 18px;
    height: 18px;
    }
    
    .nav-button {
    width: 44px;
    height: 44px;
    }
    
    .nav-prev {
    margin-left: -22px;
    }
    
    .nav-next {
    margin-right: -22px;
    }
    
    .nav-button svg {
    width: 20px;
    height: 20px;
    }
    
    .carousel-pagination {
    margin-top: 2.5rem;
    gap: 0.75rem;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .testimonials-static-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .testimonial-card-static {
    padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-section {
    padding: 4rem 0;
    }
    
    .testimonials-title {
    font-size: 1.875rem;
    }
    
    .testimonial-content {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }
    
    .testimonial-text {
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
    }
    
    .quote-icon {
    margin-bottom: 1.5rem;
    }
    
    .quote-icon svg {
    width: 36px;
    height: 36px;
    }
    
    .testimonial-author {
    gap: 1rem;
    }
    
    .author-avatar svg {
    width: 48px;
    height: 48px;
    }
    
    .author-name {
    font-size: 1.0625rem;
    }
    
    .star-rating svg {
    width: 16px;
    height: 16px;
    }
    
    .nav-button {
    width: 40px;
    height: 40px;
    }
    
    .nav-prev {
    margin-left: -20px;
    }
    
    .nav-next {
    margin-right: -20px;
    }
    
    .nav-button svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-pagination {
    margin-top: 2rem;
    }
}
/* 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 Section: Geometric gradient cards with asymmetric masonry layout */
.faq-section-geometric {
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f0ff 0%, #e8f5ff 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Header Styling */
.contact-header {
    margin-bottom: 4rem;
}

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

.title-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    border-radius: 3px;
    position: relative;
}

.title-accent-line::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #40e0d0;
    border-radius: 50%;
    opacity: 0.3;
}

/* Contact Details Grid */
.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.contact-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

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

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

.phone-icon {
    background: linear-gradient(135deg, #40e0d0 0%, #56efde 100%);
    color: #ffffff;
}

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

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

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

/* Contact Content */
.contact-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 64px;
}

.contact-value {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.6;
    word-break: break-word;
}

.address-text {
    font-weight: 500;
}

.phone-link,
.email-link {
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.3s ease;
    position: relative;
}

.phone-link::after,
.email-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #40e0d0 100%);
    transition: width 0.3s ease;
}

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

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

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

/* Map Container */
.contact-map-container {
    position: relative;
    height: 600px;
}

.map-frame-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-frame-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

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

/* Decorative Blob Behind Map */
.map-decorative-blob {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ff6b9d 0%, #40e0d0 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.08;
    z-index: -1;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% {
    transform: translate(20px, -20px) rotate(120deg);
    border-radius: 50% 60% 50% 40% / 60% 40% 60% 40%;
    }
    66% {
    transform: translate(-20px, 20px) rotate(240deg);
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    }
}

/* Background Decorative Elements */
.contact-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 1;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #40e0d0 0%, transparent 70%);
    bottom: -150px;
    right: 10%;
}

.decoration-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffa07a 0%, transparent 70%);
    top: 50%;
    right: -125px;
    transform: translateY(-50%);
}

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

    .contact-map-container {
    height: 500px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
    padding: 5rem 0 6rem;
    }

    .contact-container {
    padding: 0 1.5rem;
    gap: 3rem;
    }

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

    .contact-header {
    margin-bottom: 3rem;
    }

    .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    }

    .contact-card:hover {
    transform: translateY(-4px);
    }

    .contact-icon-wrapper {
    width: 56px;
    height: 56px;
    }

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

    .contact-value {
    font-size: 1.125rem;
    }

    .contact-map-container {
    height: 400px;
    }

    .map-frame-wrapper {
    border-radius: 24px;
    }

    .map-decorative-blob {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
    }

    .decoration-1 {
    width: 250px;
    height: 250px;
    }

    .decoration-2 {
    width: 200px;
    height: 200px;
    }

    .decoration-3 {
    width: 180px;
    height: 180px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
    font-size: 2rem;
    }

    .contact-card {
    padding: 1.5rem 1rem;
    }

    .contact-value {
    font-size: 1rem;
    }

    .contact-map-container {
    height: 350px;
    }
}
/* Footer Block: Asymmetric Split with Gradient Accent - Deep Teal & Coral */
.footer-block-asymmetric {
    position: relative;
    background: linear-gradient(135deg, #0d3b4d 0%, #1a5568 50%, #0d3b4d 100%);
    color: #e2e8f0;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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