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

#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 Quantum - Unique Diagonal Layout */
.hero-quantum {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a0b2e 50%, #16213e 100%);
    display: flex;
    flex-direction: column;
}

/* Animated Background Layers */
.quantum-bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.layer-1 {
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 60%, rgba(247, 37, 133, 0.12) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

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

/* Orbiting Decorations */
.orbit-container {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    transform: translate(0, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 212, 255, 0.3);
    animation: rotate 30s linear infinite;
}

.ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(247, 37, 133, 0.2);
    animation: rotate 40s linear infinite reverse;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.dot-1 {
    background: #00d4ff;
    animation: orbit1 20s linear infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.dot-2 {
    background: #f72585;
    animation: orbit2 25s linear infinite;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.8);
}

.dot-3 {
    background: #ffd60a;
    animation: orbit3 30s linear infinite;
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.8);
}

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

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

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

@keyframes orbit3 {
    from { transform: translate(-50%, -50%) rotate(120deg) translateX(180px) rotate(-120deg); }
    to { transform: translate(-50%, -50%) rotate(480deg) translateX(180px) rotate(-480deg); }
}

/* Header Navigation */
.quantum-header {
    position: relative;
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-mark {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

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

.main-nav {
    display: flex;
    gap: 3rem;
}

.nav-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7b2ff7);
    transition: width 0.4s ease;
}

.nav-item:hover {
    color: #00d4ff;
}

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

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

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.menu-checkbox:checked ~ .menu-trigger .bar-top {
    transform: translateY(9px) rotate(45deg);
    background: #00d4ff;
}

.menu-checkbox:checked ~ .menu-trigger .bar-mid {
    opacity: 0;
    transform: scaleX(0);
}

.menu-checkbox:checked ~ .menu-trigger .bar-bot {
    transform: translateY(-9px) rotate(-45deg);
    background: #00d4ff;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(165deg, #0f0f1e 0%, #1a0b2e 100%);
    backdrop-filter: blur(20px);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.menu-checkbox:checked ~ .mobile-drawer {
    right: 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateX(50px);
    opacity: 0;
}

.menu-checkbox:checked ~ .mobile-drawer .drawer-link {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.drawer-link:hover {
    color: #00d4ff;
    padding-left: 1rem;
    border-color: #00d4ff;
}

/* Hero Stage */
.hero-stage {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.stage-left {
    padding-right: 2rem;
}

.content-pod {
    max-width: 600px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

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

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.pill-text {
    color: #00d4ff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mega-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-fragment {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7b2ff7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s ease infinite;
    background-size: 200% 200%;
}

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

.desc-block {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.action-cluster {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-quantum {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7, #f72585);
    background-size: 200% 200%;
    animation: gradient-flow 4s ease infinite;
    z-index: -1;
    transition: transform 0.4s ease;
}

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

.btn-quantum:hover .btn-bg {
    transform: scale(1.1);
}

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

.btn-icon {
    transition: transform 0.4s ease;
}

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

.btn-quantum:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Visual Composite */
.stage-right {
    position: relative;
}

.visual-composite {
    position: relative;
    width: 100%;
    height: 600px;
}

.main-visual {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.3));
}

.shape-group-1 { animation: float-shape 6s ease-in-out infinite; }
.shape-group-2 { animation: float-shape 7s ease-in-out infinite 1s; }
.shape-group-3 { animation: float-shape 8s ease-in-out infinite 2s; }
.shape-group-4 { animation: float-shape 5s ease-in-out infinite 0.5s; }

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

/* Metric Cards */
.metric-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.mc-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.mc-2 {
    top: 50%;
    right: -8%;
    animation-delay: 1s;
}

.mc-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.mc-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mc-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.mc-value {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-stage {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
    }
    
    .stage-left {
    padding-right: 0;
    text-align: center;
    }
    
    .content-pod {
    max-width: 100%;
    }
    
    .status-pill {
    margin-left: auto;
    margin-right: auto;
    }
    
    .action-cluster {
    justify-content: center;
    }
    
    .orbit-container {
    display: none;
    }
    
    .main-nav {
    display: none;
    }
    
    .menu-trigger {
    display: flex;
    }
    
    .visual-composite {
    height: 400px;
    }
    
    .mc-1 {
    left: 0;
    }
    
    .mc-2 {
    right: 0;
    }
    
    .mc-3 {
    left: 0;
    }
}

@media (max-width: 768px) {
    .mega-title {
    font-size: 2.5rem;
    }
    
    .lead-text {
    font-size: 1.125rem;
    }
    
    .btn-quantum {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .metric-card {
    padding: 1rem;
    gap: 0.75rem;
    }
    
    .mc-value {
    font-size: 1rem;
    }
    
    .visual-composite {
    height: 300px;
    }
}

@media (max-width: 576px) {
    .header-inner {
    padding: 0 1rem;
    }
    
    .logo-mark svg {
    width: 40px;
    height: 40px;
    }
    
    .hero-stage {
    padding: 2rem 1rem;
    }
    
    .mega-title {
    font-size: 2rem;
    }
    
    .metric-card {
    position: static;
    margin-bottom: 1rem;
    }
    
    .visual-composite {
    height: 250px;
    }
}
/* Features Section: Asymmetric Chess Grid with Coral & Lime */
.features-chess-grid {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #fff5f7 0%, #f0fdf4 50%, #fffbeb 100%);
    overflow: hidden;
}

.features-chess-grid .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Chess Grid Layout */
.features-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-large {
    grid-row: 1 / 3;
    grid-column: 1;
}

.feature-medium:nth-of-type(2) {
    grid-row: 1;
    grid-column: 2;
}

.feature-medium:nth-of-type(3) {
    grid-row: 2;
    grid-column: 2;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(251, 113, 133, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.03) 0%, rgba(132, 204, 22, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 32px;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(251, 113, 133, 0.16), 0 8px 16px rgba(132, 204, 22, 0.08);
    border-color: rgba(251, 113, 133, 0.2);
}

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

/* Image Containers */
.feature-image-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
}

.feature-large .feature-image-container {
    height: 280px;
}

/* Image Shapes */
.image-blob,
.image-hexagon,
.image-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-blob {
    width: 200px;
    height: 200px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    background: linear-gradient(135deg, #fb7185 0%, #fbbf24 100%);
    padding: 8px;
    animation: morphBlob 8s ease-in-out infinite;
}

.image-hexagon {
    width: 180px;
    height: 180px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #84cc16 0%, #22d3ee 100%);
    padding: 6px;
}

.image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f472b6 0%, #fb923c 100%);
    padding: 6px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.image-hexagon .feature-img {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-card:hover .image-blob,
.feature-card:hover .image-hexagon,
.feature-card:hover .image-circle {
    transform: scale(1.08) rotate(3deg);
}

/* Floating Accents */
.floating-accent {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: floatAccent 6s ease-in-out infinite;
}

.accent-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.2) 0%, transparent 70%);
    top: -20px;
    right: -20px;
}

.accent-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.25) 0%, transparent 70%);
    bottom: 10px;
    left: -10px;
    animation-delay: 1s;
}

.accent-3 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 0%, transparent 70%);
    top: 10px;
    left: -15px;
    animation-delay: 2s;
}

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

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

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

.feature-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

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

/* Background Decorations */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

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

.deco-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #84cc16 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
}

.deco-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    top: 40%;
    right: -80px;
}

/* Animations */
@keyframes morphBlob {
    0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
    25% {
    border-radius: 70% 30% 50% 50% / 30% 65% 35% 70%;
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
    border-radius: 30% 70% 70% 30% / 65% 45% 55% 35%;
    }
}

@keyframes floatAccent {
    0%, 100% {
    transform: translate(0, 0);
    }
    25% {
    transform: translate(10px, -10px);
    }
    50% {
    transform: translate(-5px, -15px);
    }
    75% {
    transform: translate(15px, -5px);
    }
}

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

    .feature-large,
    .feature-medium:nth-of-type(2),
    .feature-medium:nth-of-type(3) {
    grid-row: auto;
    grid-column: 1;
    }

    .feature-large .feature-image-container {
    height: 220px;
    }

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

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

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

    .feature-card {
    padding: 2rem;
    border-radius: 24px;
    }

    .feature-image-container {
    height: 180px;
    margin-bottom: 1.5rem;
    }

    .image-blob {
    width: 160px;
    height: 160px;
    }

    .image-hexagon,
    .image-circle {
    width: 150px;
    height: 150px;
    }

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

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

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

    .bg-decoration {
    filter: blur(60px);
    }
}

@media (max-width: 576px) {
    .features-chess-grid {
    padding: 4rem 0;
    }

    .features-wrapper {
    gap: 1.5rem;
    }

    .feature-card {
    padding: 1.75rem;
    border-radius: 20px;
    }

    .feature-card:hover {
    transform: translateY(-6px);
    }

    .feature-image-container {
    height: 160px;
    margin-bottom: 1.25rem;
    }

    .image-blob {
    width: 140px;
    height: 140px;
    }

    .image-hexagon,
    .image-circle {
    width: 130px;
    height: 130px;
    }

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

    .feature-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}
/* Testimonials Cascade Block - Floating Card Design */
.testimonials-cascade-rvw {
    padding: 7rem 0;
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-cascade-rvw::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.testimonials-cascade-rvw .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

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

.testimonials-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials-decoration-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

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

.testimonials-carousel-track {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Cards */
.testimonial-card-item {
    position: absolute;
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateX(100px) scale(0.85);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-card-item.testimonial-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 3;
}

.testimonial-card-item.testimonial-prev {
    opacity: 0.4;
    transform: translateX(-120px) scale(0.8);
    z-index: 1;
}

.testimonial-card-item.testimonial-next {
    opacity: 0.4;
    transform: translateX(120px) scale(0.8);
    z-index: 1;
}

.testimonial-card-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.2);
}

/* Avatar Section */
.testimonial-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.testimonial-avatar-svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.testimonial-quote-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Content Area */
.testimonial-content-area {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-text-content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.01em;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.testimonial-author-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    font-size: 1.125rem;
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Navigation Controls */
.testimonials-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.testimonial-nav-btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

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

/* Pagination Dots */
.testimonials-pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

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

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

.pagination-dot.pagination-active {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    width: 32px;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-main-title {
    font-size: 2.75rem;
    }

    .testimonial-card-item {
    padding: 2.5rem;
    max-width: 600px;
    }

    .testimonial-text-content {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-cascade-rvw {
    padding: 5rem 0;
    }

    .testimonials-main-title {
    font-size: 2.25rem;
    }

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

    .testimonials-carousel-track {
    min-height: 500px;
    }

    .testimonial-card-item {
    padding: 2rem;
    border-radius: 24px;
    }

    .testimonial-card-item.testimonial-prev,
    .testimonial-card-item.testimonial-next {
    opacity: 0;
    transform: translateX(0) scale(0.7);
    }

    .testimonial-text-content {
    font-size: 1.0625rem;
    line-height: 1.7;
    }

    .testimonial-author-name {
    font-size: 1.25rem;
    }

    .testimonial-avatar-wrapper {
    width: 80px;
    height: 80px;
    }

    .testimonial-nav-btn {
    width: 44px;
    height: 44px;
    }

    .testimonials-nav-controls {
    gap: 1.5rem;
    margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonials-cascade-rvw {
    padding: 4rem 0;
    }

    .testimonials-main-title {
    font-size: 1.875rem;
    }

    .testimonials-decoration-line {
    width: 80px;
    height: 4px;
    }

    .testimonial-card-item {
    padding: 1.75rem;
    gap: 1.5rem;
    }

    .testimonial-text-content {
    font-size: 1rem;
    line-height: 1.65;
    }

    .testimonial-author-name {
    font-size: 1.125rem;
    }

    .star-icon {
    font-size: 1rem;
    }

    .testimonial-avatar-wrapper {
    width: 70px;
    height: 70px;
    }

    .testimonial-quote-icon {
    width: 32px;
    height: 32px;
    }

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

    .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    }

    .pagination-dot {
    width: 10px;
    height: 10px;
    }

    .pagination-dot.pagination-active {
    width: 28px;
    }
}

/* Fallback for no-JS */
.no-js .testimonial-card-item {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 2rem;
}

.no-js .testimonials-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
}

.no-js .testimonials-nav-controls {
    display: none;
}
/* Services Block: Diagonal Grid with Vibrant Gradients */
.services-block-dg47 {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #fef3e2 0%, #fce4ec 50%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.services-block-dg47::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-block-dg47::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-block-dg47 .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.decoration-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffa726 100%);
    border-radius: 10px;
}

.decoration-dot {
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

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

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card.card-1::before {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8e53 100%);
}

.service-card.card-2::before {
    background: linear-gradient(90deg, #56ab2f 0%, #a8e063 100%);
}

.service-card.card-3::before {
    background: linear-gradient(90deg, #2196f3 0%, #00bcd4 100%);
}

.service-card.card-4::before {
    background: linear-gradient(90deg, #9c27b0 0%, #e91e63 100%);
}

.service-card.card-5::before {
    background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
}

.service-card.card-6::before {
    background: linear-gradient(90deg, #f44336 0%, #ff5722 100%);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.service-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.card-1 .service-icon-container {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 142, 83, 0.15) 100%);
    color: #ff6b6b;
}

.card-2 .service-icon-container {
    background: linear-gradient(135deg, rgba(86, 171, 47, 0.15) 0%, rgba(168, 224, 99, 0.15) 100%);
    color: #56ab2f;
}

.card-3 .service-icon-container {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(0, 188, 212, 0.15) 100%);
    color: #2196f3;
}

.card-4 .service-icon-container {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(233, 30, 99, 0.15) 100%);
    color: #9c27b0;
}

.card-5 .service-icon-container {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    color: #ff9800;
}

.card-6 .service-icon-container {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(255, 87, 34, 0.15) 100%);
    color: #f44336;
}

.service-card:hover .service-icon-container {
    transform: rotate(5deg) scale(1.1);
}

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

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

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

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

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-right: 28px;
}

.card-1 .service-link {
    color: #ff6b6b;
}

.card-2 .service-link {
    color: #56ab2f;
}

.card-3 .service-link {
    color: #2196f3;
}

.card-4 .service-link {
    color: #9c27b0;
}

.card-5 .service-link {
    color: #ff9800;
}

.card-6 .service-link {
    color: #f44336;
}

.service-link::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    line-height: 1;
}

.service-link:hover {
    padding-right: 32px;
    letter-spacing: 0.02em;
}

.service-link:hover::after {
    right: -4px;
}

.service-link:focus {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 4px;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .services-block-dg47 {
    padding: 4rem 0;
    }
    
    .services-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .service-card {
    padding: 2rem 1.75rem;
    }
    
    .service-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    }
    
    .service-icon {
    width: 42px;
    height: 42px;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .decoration-line {
    width: 45px;
    }
}

@media (max-width: 576px) {
    .services-block-dg47 {
    padding: 3rem 0;
    }
    
    .services-header-wrap {
    margin-bottom: 2.5rem;
    }
    
    .service-card {
    padding: 1.75rem 1.5rem;
    }
    
    .service-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    }
    
    .service-icon {
    width: 38px;
    height: 38px;
    }
    
    .title-decoration {
    gap: 8px;
    }
    
    .decoration-line {
    width: 35px;
    height: 2px;
    }
    
    .decoration-dot {
    width: 8px;
    height: 8px;
    }
}
/* FAQ Section: Modern Static Display with Gradient Accents */
.faq-section-vx9 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0fdf4 100%);
    overflow: hidden;
}

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

/* Header Section */
.faq-header-wrap {
    text-align: center;
    margin-bottom: 4.5rem;
}

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

.faq-decorative-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 50%, #06b6d4 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* FAQ Grid Container */
.faq-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Card Item */
.faq-card-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.faq-card-item:hover::before {
    opacity: 1;
}

/* Question Wrapper */
.faq-question-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-icon-circle {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.4s ease;
}

.faq-card-item:hover .faq-icon-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
}

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

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

/* Answer Content */
.faq-answer-content {
    padding-left: 4.5rem;
}

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

/* Decorative Background Blobs */
.faq-bg-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.faq-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7c3aed, transparent);
    top: -10%;
    right: -10%;
    animation: faq-float-1 20s ease-in-out infinite;
}

.faq-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899, transparent);
    bottom: 10%;
    left: -5%;
    animation: faq-float-2 18s ease-in-out infinite;
}

.faq-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #06b6d4, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: faq-float-3 22s ease-in-out infinite;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-vx9 {
    padding: 4rem 0;
    }

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

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

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

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

    .faq-card-item {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }

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

    .faq-icon-circle {
    width: 48px;
    height: 48px;
    }

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

    .faq-answer-content {
    padding-left: 0;
    }

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

    .faq-blob-1,
    .faq-blob-2,
    .faq-blob-3 {
    width: 250px;
    height: 250px;
    }
}

@media (max-width: 480px) {
    .faq-section-vx9 {
    padding: 3rem 0;
    }

    .faq-card-item {
    padding: 1.5rem 1.25rem;
    }

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

    .faq-icon-circle {
    width: 44px;
    height: 44px;
    }
}
/* Contact Form Section: Asymmetric Split with Floating Labels */
.contact-form-section {
    position: relative;
    padding: 8rem 0;
    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 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-header-area {
    position: relative;
    text-align: center;
    padding: 3rem 0;
}

.decorative-blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.15;
    z-index: -1;
    animation: morphBlob 8s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 100%);
    top: -50px;
    left: -100px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ffa07a 0%, #ff7f50 100%);
    bottom: -50px;
    right: -80px;
    animation-delay: -4s;
}

@keyframes morphBlob {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
    }
    25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: rotate(90deg) scale(1.1);
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(180deg) scale(0.95);
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg) scale(1.05);
    }
}

.contact-main-header {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.form-group-floating {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-input-field {
    width: 100%;
    padding: 1.25rem 0.75rem 0.75rem;
    font-size: 1.125rem;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.5rem;
}

.floating-label {
    position: absolute;
    left: 0.75rem;
    top: 1.25rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.form-input-field:focus ~ .floating-label,
.form-input-field:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    font-size: 0.875rem;
    color: #ffa07a;
    font-weight: 600;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input-field:focus ~ .input-underline {
    width: 100%;
}

.form-input-field:focus {
    border-bottom-color: transparent;
}

.form-input-field::placeholder {
    color: transparent;
}

.textarea-group .floating-label {
    top: 1.5rem;
}

.form-textarea:focus ~ .floating-label,
.form-textarea:not(:placeholder-shown) ~ .floating-label {
    top: 0.25rem;
}

.submit-button-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.submit-button-modern {
    position: relative;
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa07a 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.submit-button-modern::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;
}

.submit-button-modern:hover::before {
    left: 100%;
}

.submit-button-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
    background: linear-gradient(135deg, #ff7fa8 0%, #ffb08a 100%);
}

.submit-button-modern:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.5);
}

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

.button-icon {
    position: relative;
    z-index: 1;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-button-modern:hover .button-icon {
    transform: translateX(5px) rotate(15deg);
}

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

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffa07a 0%, transparent 70%);
    bottom: 15%;
    left: 10%;
    animation: float 12s ease-in-out infinite reverse;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
    transform: translateY(0) translateX(0);
    }
    33% {
    transform: translateY(-30px) translateX(20px);
    }
    66% {
    transform: translateY(20px) translateX(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
    }
    50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.12;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-main-header {
    font-size: 3.5rem;
    }
    
    .contact-form-modern {
    padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
    padding: 5rem 0;
    min-height: auto;
    }
    
    .contact-container {
    padding: 0 1.5rem;
    }
    
    .contact-content-wrapper {
    gap: 2rem;
    }
    
    .contact-header-area {
    padding: 2rem 0;
    }
    
    .contact-main-header {
    font-size: 2.5rem;
    }
    
    .contact-form-modern {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-input-field {
    font-size: 1rem;
    padding: 1rem 0.5rem 0.5rem;
    }
    
    .floating-label {
    font-size: 1rem;
    top: 1rem;
    }
    
    .form-input-field:focus ~ .floating-label,
    .form-input-field:not(:placeholder-shown) ~ .floating-label {
    font-size: 0.8125rem;
    }
    
    .submit-button-modern {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    }
    
    .blob-1,
    .blob-2 {
    width: 200px;
    height: 200px;
    }
    
    .circle-decoration {
    display: none;
    }
}

@media (max-width: 480px) {
    .contact-main-header {
    font-size: 2rem;
    }
    
    .contact-form-modern {
    padding: 2rem 1rem;
    }
    
    .form-group-floating {
    margin-bottom: 2rem;
    }
}
/* Contact Information Block - Modern asymmetric design with bold gradients */
.contact-info-block {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

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

.contact-info-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

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

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

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

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

.contact-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-card:hover {
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.12);
    transform: translateY(-5px);
}

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

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:first-child {
    padding-top: 0;
}

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

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

.address-item .contact-icon-wrapper {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
}

.phone-item .contact-icon-wrapper {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    color: #ffffff;
}

.email-item .contact-icon-wrapper {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
}

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

.contact-item:hover .contact-icon-wrapper::before {
    width: 100%;
    height: 100%;
}

.contact-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

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

.contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
}

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

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

.contact-link:hover {
    color: #10b981;
}

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

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

.map-column {
    position: relative;
}

.map-wrapper {
    position: sticky;
    top: 2rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s ease;
}

.map-wrapper:hover {
    box-shadow: 0 35px 90px rgba(99, 102, 241, 0.2);
    transform: translateY(-5px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 28px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0%) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-wrapper:hover .map-container iframe {
    filter: grayscale(0%) contrast(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .map-wrapper {
    position: relative;
    top: 0;
    }
    
    .map-container {
    height: 450px;
    }
    
    .contact-info-block .section-title {
    font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .contact-info-block {
    padding: 5rem 0 6rem;
    }
    
    .contact-header {
    margin-bottom: 3rem;
    }
    
    .contact-info-block .section-title {
    font-size: 2.25rem;
    }
    
    .contact-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }
    
    .contact-item {
    padding: 1.5rem 0;
    gap: 1.25rem;
    }
    
    .contact-icon-wrapper {
    width: 50px;
    height: 50px;
    }
    
    .contact-icon {
    width: 26px;
    height: 26px;
    }
    
    .contact-value {
    font-size: 1.125rem;
    }
    
    .map-container {
    height: 350px;
    border-radius: 20px;
    }
    
    .map-wrapper {
    border-radius: 20px;
    }
    
    .contact-item:hover {
    transform: translateX(4px);
    }
}

@media (max-width: 576px) {
    .contact-info-block {
    padding: 4rem 0 5rem;
    }
    
    .contact-info-block .container {
    padding: 0 1.25rem;
    }
    
    .contact-info-block .section-title {
    font-size: 1.875rem;
    }
    
    .contact-card {
    padding: 1.75rem 1.25rem;
    }
    
    .contact-item {
    flex-direction: row;
    padding: 1.25rem 0;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-label {
    font-size: 0.8125rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container {
    height: 300px;
    }
}
/* Modern Minimalist Footer with Gradient Accent */
.footer-block-modern {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    overflow: hidden;
}

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

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

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.footer-icon {
    flex-shrink: 0;
    color: #667eea;
    margin-top: 0.125rem;
}

.footer-address {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.footer-phone {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-phone::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.footer-phone:hover {
    color: #667eea;
}

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

.footer-phone:focus {
    outline: 2px solid #667eea;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Navigation Section */
.footer-navigation {
    display: flex;
    justify-content: flex-end;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 200px));
    gap: 3rem;
}

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

.footer-nav-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #667eea;
    margin: 0;
}

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

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

.footer-link::before {
    content: '';
    position: absolute;
    left: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

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

/* Footer Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #cbd5e0 50%, transparent 100%);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Decorative Gradient Accent */
.footer-gradient-accent {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-container,
.footer-bottom {
    position: relative;
    z-index: 1;
}

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

    .footer-navigation {
    justify-content: flex-start;
    }

    .footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
}

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

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

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

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

    .footer-gradient-accent {
    width: 300px;
    height: 300px;
    top: -5%;
    right: -15%;
    }

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

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

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

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

    .footer-contact-item {
    flex-direction: column;
    gap: 0.5rem;
    }

    .footer-address,
    .footer-phone,
    .footer-link {
    font-size: 0.9375rem;
    }

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

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