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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #8dc4194d;
}

#about {
    font-size: 1.2rem;
}

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

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

.header-quantum-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

.nav-item {
    position: relative;
}

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

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

.link-text {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .brand-text {
    font-size: 1.125rem;
    }
}
/* Hero Block: Geometric Split Design */
.hero-block-geometric {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0e27;
}

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    opacity: 0.95;
}

/* Geometric Shapes */
.hero-geometric-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morph 20s ease-in-out infinite;
}

.hero-geometric-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-geometric-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -100px;
    left: -100px;
    animation-delay: 7s;
}

.hero-geometric-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes morph {
    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.9);
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg) scale(1.05);
    }
}

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

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

.hero-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-logo svg {
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
}

/* Mobile Menu Toggle */
.menu-toggle-input {
    display: none;
}

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

.hamburger-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle-input:checked ~ .menu-toggle-label .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle-input:checked ~ .menu-toggle-label .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation */
.hero-nav {
    position: relative;
}

.nav-backdrop {
    display: none;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

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

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

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Text Column */
.hero-text-column {
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-badge svg {
    animation: rotate 3s linear infinite;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.title-line {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7b2ff7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 3rem 0;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7b2ff7, #00d4ff);
    transition: left 0.4s ease;
}

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

.hero-btn-primary span,
.hero-btn-primary svg {
    position: relative;
    z-index: 1;
}

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

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

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

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

/* Floating Cards */
.hero-floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
}

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

.floating-card.card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 3s;
}

.floating-card.card-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: 4.5s;
}

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

.card-pulse {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Decoration Elements */
.hero-decoration-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border: 2px dashed rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 30s linear infinite;
}

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

.hero-decoration-dots {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(0, 212, 255, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
}

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

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.5));
}

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

@keyframes scrollDot {
    0%, 100% {
    transform: translateY(0);
    opacity: 1;
    }
    50% {
    transform: translateY(20px);
    opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .hero-visual-column {
    height: 400px;
    order: -1;
    }
    
    .hero-title {
    font-size: 3rem;
    }
    
    .hero-subtitle {
    font-size: 1.25rem;
    }
    
    .floating-card {
    padding: 1.5rem;
    }
    
    .hero-decoration-circle {
    width: 350px;
    height: 350px;
    }
}

@media (max-width: 768px) {
    .menu-toggle-label {
    display: flex;
    }
    
    .hero-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 320px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99;
    }
    
    .menu-toggle-input:checked ~ .hero-nav {
    transform: translateX(0);
    }
    
    .nav-backdrop {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-list {
    position: relative;
    flex-direction: column;
    gap: 0;
    padding: 6rem 2rem 2rem;
    height: 100%;
    align-items: flex-start;
    }
    
    .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInNav 0.4s ease forwards;
    }
    
    .menu-toggle-input:checked ~ .hero-nav .nav-item:nth-child(1) {
    animation-delay: 0.1s;
    }
    
    @keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    .nav-link {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    }
    
    .hero-btn {
    width: 100%;
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .floating-card {
    padding: 1rem;
    }
    
    .floating-card svg {
    width: 36px;
    height: 36px;
    }
    
    .hero-geometric-shape.shape-1 {
    width: 400px;
    height: 400px;
    }
    
    .hero-geometric-shape.shape-2 {
    width: 300px;
    height: 300px;
    }
    
    .hero-geometric-shape.shape-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-header-container {
    padding: 0 1.5rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-title {
    font-size: 2rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-badge {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    }
    
    .feature-mini-item {
    font-size: 0.9375rem;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
}
/* Features Block - Asymmetric Floating Cards with Gradient Mesh */
.features-floating-mesh {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #fff5f7 0%, #ffe8f0 25%, #fff9e6 50%, #f0f9ff 75%, #f5f3ff 100%);
    overflow: hidden;
}

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

.features-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    position: relative;
}

/* Background Decorative Elements */
.bg-decoration-circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 170, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    z-index: 0;
    animation: float-slow 8s ease-in-out infinite;
}

.bg-decoration-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 203, 255, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    z-index: 0;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.bg-decoration-wave {
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 223, 107, 0.08) 50%, transparent 100%);
    transform: skewY(-2deg);
    z-index: 0;
}

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

/* Base Feature Card Styles */
.feature-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 107, 170, 0.08);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 170, 0.03) 0%, rgba(107, 203, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 170, 0.18);
}

/* Large Feature Card (Grid Position: Row 1-2, Col 1) */
.feature-card-large {
    grid-row: 1 / 3;
    grid-column: 1;
    background: linear-gradient(145deg, #ffffff 0%, #fff5f9 100%);
    border: 3px solid #ff6baa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.feature-image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6baa 0%, #ff8cc7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 107, 170, 0.3);
}

.feature-image-circle .feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-decoration-blob {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 223, 107, 0.25);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: morph-blob 6s ease-in-out infinite;
}

@keyframes morph-blob {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: translate(-50%, -50%) rotate(180deg);
    }
}

/* Elevated Feature Card (Grid Position: Row 1, Col 2) */
.feature-card-elevated {
    grid-row: 1;
    grid-column: 2;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
    border-left: 5px solid #6bcbff;
    position: relative;
}

.feature-icon-diamond {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6bcbff 0%, #4db8ff 100%);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(107, 203, 255, 0.25);
    position: relative;
}

.feature-icon-diamond .feature-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transform: rotate(-45deg);
    filter: brightness(0) invert(1);
}

.feature-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffdf6b 0%, #ffc93d 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
}

.feature-card-elevated:hover .feature-icon-diamond {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 45px rgba(107, 203, 255, 0.4);
}

/* Tilted Feature Card (Grid Position: Row 2, Col 2) */
.feature-card-tilted {
    grid-row: 2;
    grid-column: 2;
    background: linear-gradient(145deg, #ffffff 0%, #fffbf0 100%);
    border-bottom: 5px solid #ffdf6b;
    position: relative;
}

.feature-hexagon-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #ffdf6b 0%, #ffc93d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 223, 107, 0.3);
    transition: all 0.4s ease;
}

.feature-hexagon-wrapper .feature-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) saturate(0) contrast(2);
}

.feature-glow-effect {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255, 223, 107, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-tilted:hover .feature-glow-effect {
    opacity: 1;
}

.feature-card-tilted:hover .feature-hexagon-wrapper {
    transform: rotate(15deg) scale(1.08);
    box-shadow: 0 15px 45px rgba(255, 223, 107, 0.45);
}

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

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

.feature-card-large .feature-title {
    font-size: 2.25rem;
    color: #ff6baa;
}

.feature-card-elevated .feature-title {
    color: #6bcbff;
}

.feature-card-tilted .feature-title {
    color: #ffb03d;
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

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

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

    .feature-card-large {
    grid-row: auto;
    grid-column: auto;
    }

    .feature-card-elevated,
    .feature-card-tilted {
    grid-row: auto;
    grid-column: auto;
    }

    .feature-card {
    padding: 2.5rem;
    }

    .feature-card-large {
    padding: 3rem 2.5rem;
    }

    .feature-image-circle {
    width: 140px;
    height: 140px;
    }

    .feature-decoration-blob {
    width: 180px;
    height: 180px;
    }

    .feature-icon-diamond {
    width: 100px;
    height: 100px;
    }

    .feature-icon-diamond .feature-img {
    width: 60px;
    height: 60px;
    }

    .feature-hexagon-wrapper {
    width: 120px;
    height: 120px;
    }

    .feature-hexagon-wrapper .feature-img {
    width: 70px;
    height: 70px;
    }
}

@media (max-width: 768px) {
    .features-floating-mesh {
    padding: 5rem 0 6rem;
    }

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

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

    .feature-card {
    padding: 2rem;
    }

    .feature-card-large {
    padding: 2.5rem 2rem;
    }

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

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

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

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

    .feature-image-circle {
    width: 120px;
    height: 120px;
    }

    .feature-decoration-blob {
    width: 150px;
    height: 150px;
    }

    .feature-icon-diamond {
    width: 90px;
    height: 90px;
    }

    .feature-icon-diamond .feature-img {
    width: 50px;
    height: 50px;
    }

    .feature-hexagon-wrapper {
    width: 100px;
    height: 100px;
    }

    .feature-hexagon-wrapper .feature-img {
    width: 60px;
    height: 60px;
    }

    .bg-decoration-circle-1,
    .bg-decoration-circle-2 {
    display: none;
    }
}

@media (max-width: 576px) {
    .features-floating-mesh {
    padding: 4rem 0 5rem;
    }

    .feature-card {
    padding: 1.75rem;
    }

    .feature-card-large {
    padding: 2rem 1.75rem;
    }

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

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

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Block: Modern Carousel Design */
.testimonials-block-xy7 {
    padding: 7rem 0;
    background: linear-gradient(165deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-block-xy7::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.testimonials-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    border-radius: 10px;
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 4rem;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

/* Testimonial Card */
.testimonial-card-item {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 15px;
}

.testimonial-content-wrap {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-content-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card-item:hover .testimonial-content-wrap {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.15);
}

.testimonial-card-item:hover .testimonial-content-wrap::before {
    opacity: 1;
}

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

.avatar-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.quote-icon-wrap {
    width: 40px;
    height: 40px;
    color: #667eea;
    opacity: 0.3;
}

.quote-icon {
    width: 100%;
    height: 100%;
}

.review-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    font-weight: 400;
    position: relative;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

.reviewer-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    letter-spacing: -0.01em;
}

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

.star-icon {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #667eea;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    left: -28px;
}

.carousel-next {
    right: -28px;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn:focus {
    outline: 3px solid rgba(102, 126, 234, 0.4);
    outline-offset: 3px;
}

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

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot:hover {
    background: #a0aec0;
    transform: scale(1.2);
}

.pagination-dot.active {
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.pagination-dot:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-block-xy7 {
    padding: 5rem 0;
    }
    
    .testimonials-main-title {
    font-size: 2.75rem;
    }
    
    .testimonial-content-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    }
    
    .avatar-wrapper {
    width: 90px;
    height: 90px;
    }
    
    .reviewer-info {
    align-items: center;
    }
    
    .carousel-prev {
    left: -18px;
    }
    
    .carousel-next {
    right: -18px;
    }
    
    .carousel-nav-btn {
    width: 48px;
    height: 48px;
    }
}

@media (max-width: 768px) {
    .testimonials-block-xy7 {
    padding: 4rem 0;
    }
    
    .testimonials-header-wrap {
    margin-bottom: 3rem;
    }
    
    .testimonials-main-title {
    font-size: 2.25rem;
    }
    
    .testimonial-content-wrap {
    padding: 2rem;
    border-radius: 25px;
    }
    
    .review-text {
    font-size: 1rem;
    line-height: 1.7;
    }
    
    .reviewer-name {
    font-size: 1.125rem;
    }
    
    .avatar-wrapper {
    width: 80px;
    height: 80px;
    }
    
    .carousel-nav-btn {
    width: 44px;
    height: 44px;
    margin-left: 20px;
    margin-right: 20px;
    }
    
    .carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    }
    
    .carousel-prev {
    left: 10px;
    }
    
    .carousel-next {
    right: 10px;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .pagination-dot.active {
    width: 32px;
    }
    
    .carousel-pagination {
    margin-top: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-block-xy7 {
    padding: 3rem 0;
    }
    
    .testimonials-main-title {
    font-size: 1.875rem;
    }
    
    .testimonial-content-wrap {
    padding: 1.75rem;
    gap: 1.5rem;
    }
    
    .review-text {
    font-size: 0.9375rem;
    }
    
    .avatar-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .quote-icon-wrap {
    width: 32px;
    height: 32px;
    }
    
    .star-icon {
    width: 18px;
    height: 18px;
    }
    
    .testimonial-card-item {
    padding: 0 10px;
    }

    .carousel-nav-btn {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Fallback for no JavaScript */
.no-js .testimonials-track {
    flex-direction: column;
    gap: 2rem;
}

.no-js .testimonial-card-item {
    min-width: 100%;
}

.no-js .carousel-nav-btn,
.no-js .carousel-pagination {
    display: none;
}
/* Services Block: Floating Card Grid with Gradient Accents */
.services-floating-grid {
    padding: 7rem 0 8rem;
    background: linear-gradient(160deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.services-floating-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-floating-grid::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

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

.title-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b2ff7 50%, #ff6b9d 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);
}

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

.service-card-float {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-card-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b2ff7 50%, #ff6b9d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(123, 47, 247, 0.2);
}

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

.service-card-float:nth-child(odd) {
    transform: rotate(-1deg);
}

.service-card-float:nth-child(even) {
    transform: rotate(1deg);
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.service-card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(123, 47, 247, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-float:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
}

.service-icon-svg {
    width: 56px;
    height: 56px;
    transition: transform 0.3s ease;
}

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

.service-content-block {
    flex: 1;
    margin-bottom: 1.5rem;
}

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

.service-description-text {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.service-action-zone {
    margin-top: auto;
}

.service-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #7b2ff7 0%, #00d4ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.25);
    position: relative;
    overflow: hidden;
}

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

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

.service-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(123, 47, 247, 0.35);
}

.service-more-btn:focus {
    outline: 3px solid rgba(123, 47, 247, 0.4);
    outline-offset: 2px;
}

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

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

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

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

@media (max-width: 768px) {
    .services-floating-grid {
    padding: 4rem 0 5rem;
    }
    
    .services-container-wrapper {
    padding: 0 1.5rem;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .services-header-zone {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    }
    
    .title-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .service-card-float:nth-child(odd),
    .service-card-float:nth-child(even) {
    transform: rotate(0deg);
    }
    
    .service-card-float:hover {
    transform: translateY(-8px) scale(1.01);
    }
    
    .service-card-inner {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-icon-svg {
    width: 48px;
    height: 48px;
    }
    
    .service-title-text {
    font-size: 1.375rem;
    }
    
    .service-description-text {
    font-size: 1rem;
    }
    
    .service-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services-floating-grid {
    padding: 3rem 0 4rem;
    }
    
    .services-container-wrapper {
    padding: 0 1rem;
    }
    
    .services-main-title {
    font-size: 2rem;
    }
    
    .service-card-inner {
    padding: 1.75rem 1.25rem;
    }
    
    .service-title-text {
    font-size: 1.25rem;
    }
    
    .service-more-btn {
    width: 100%;
    justify-content: center;
    }
}
/* 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 Section - Asymmetric Split with Floating Card Design */
.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;
}

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

.contact-content-wrapper {
    display: grid;

}

/* Header Side */
.contact-header-side {
    padding: 3rem 0;
}

.contact-header-content {
    position: relative;
}

.contact-main-header {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-decoration-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffd93d 100%);
    border-radius: 10px;
    position: relative;
    animation: contact-line-pulse 2s ease-in-out infinite;
}

@keyframes contact-line-pulse {
    0%, 100% {
    transform: scaleX(1);
    opacity: 1;
    }
    50% {
    transform: scaleX(1.2);
    opacity: 0.8;
    }
}

/* Form Side */
.contact-form-side {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.contact-form-card:hover::before {
    opacity: 1;
}

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

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

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1.0625rem;
    color: #2c3e50;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.6;
}

.form-input:focus,
.form-textarea:focus {
    background: #ffffff;
    border-color: #4ecdc4;
    box-shadow: 
    0 0 0 4px rgba(78, 205, 196, 0.1),
    0 8px 20px rgba(78, 205, 196, 0.15);
    transform: translateY(-2px);
}

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

.form-textarea {
    resize: vertical;
    min-height: 140px;
    max-height: 300px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #95a5a6;
    opacity: 0.7;
}

/* Submit Button */
.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.375rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.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.6s ease;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

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

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

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

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

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

/* Background Decorations */
.contact-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.contact-bg-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: contact-float-1 20s ease-in-out infinite;
}

.contact-bg-circle-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #4ecdc4 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: contact-float-2 18s ease-in-out infinite;
}

.contact-bg-blob {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffd93d 0%, transparent 70%);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: contact-blob-morph 15s ease-in-out infinite;
}

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

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

@keyframes contact-blob-morph {
    0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(-50%, -50%) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-header-side {
    text-align: center;
    padding: 2rem 0;
    }
    
    .contact-decoration-line {
    margin: 0 auto;
    }
    
    .contact-main-header {
    font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .contact-form-card {
    padding: 2.5rem;
    }
    
    .contact-form-section {
    padding: 5rem 0;
    min-height: auto;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
    padding: 4rem 0;
    }
    
    .contact-container {
    padding: 0 1.5rem;
    }
    
    .contact-form-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
    }
    
    .contact-form {
    gap: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
    }
    
    .form-submit-btn {
    padding: 1.125rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
    }
    
    .contact-main-header {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    }
    
    .btn-arrow {
    font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
    padding: 3rem 0;
    }
    
    .contact-container {
    padding: 0 1rem;
    }
    
    .contact-form-card {
    padding: 1.75rem 1.25rem;
    }
    
    .form-label {
    font-size: 0.8125rem;
    }
    
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-decoration-line {
    width: 80px;
    height: 5px;
    }
}

/* Accessibility - Focus Visible */
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-submit-btn:focus-visible {
    outline: 3px solid #4ecdc4;
    outline-offset: 3px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .contact-form-card {
    border: 2px solid #2c3e50;
    }
    
    .form-input,
    .form-textarea {
    border: 2px solid #2c3e50;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
}
/* Contact Information Section - Asymmetric Split with Vibrant Accents */
.contact-info-section-j8k {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.email-value {
    color: #f39c12;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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