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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #1c5c924d;
}

#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 Asymmetric Diagonal Design - Complete Standalone Styles */

.header-asymmetric-diagonal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0f172a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-asymmetric-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.header-asymmetric-diagonal.header-scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.logo-icon {
    width: 42px;
    height: 42px;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-icon {
    color: #f59e0b;
    transform: rotate(180deg);
}

.brand-name {
    font-size: 1.625rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-item {
    position: relative;
}

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

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

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

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

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

.dropdown-trigger {
    position: relative;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: #cbd5e1;
}

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.dropdown-menu-new::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-left: 1px solid rgba(251, 191, 36, 0.1);
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(4px);
}

/* Search Form */
.header-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 200px;
    padding: 0.625rem 2.75rem 0.625rem 1.125rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    width: 280px;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.search-input::placeholder {
    color: #64748b;
}

.search-button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #fbbf24;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

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

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-close:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.mobile-nav-menu {
    list-style: none;
    margin: 5rem 0 2.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(6px);
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
}

.mobile-dropdown-trigger.mobile-dropdown-open .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #fbbf24;
}

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.mobile-dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-link:hover {
    background: rgba(251, 191, 36, 0.05);
    color: #fbbf24;
    border-left-color: #fbbf24;
    transform: translateX(4px);
}

/* Mobile Search */
.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.mobile-search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    outline: none;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.mobile-search-input::placeholder {
    color: #64748b;
}

.mobile-search-button {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .desktop-menu,
    .header-search-form {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .main-navigation {
    gap: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
    padding: 0 1.25rem;
    min-height: 75px;
    }
    
    .brand-name {
    font-size: 1.375rem;
    }
    
    .logo-icon {
    width: 36px;
    height: 36px;
    }
    
    .mobile-menu-content {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    }
    
    .mobile-nav-menu {
    margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1rem;
    min-height: 70px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
    
    .logo-icon {
    width: 32px;
    height: 32px;
    }
    
    .mobile-nav-link {
    font-size: 1.0625rem;
    padding: 0.875rem 1rem;
    }
}
/* Hero Asymmetric Split Design - Unique ID: hero-asym-split-2x9 */
.hero-asym-split-2x9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

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

.hero-background-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-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(236, 72, 153, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Animated Shapes */
.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

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

/* Content Container */
.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: center;
}

/* Text Column */
.hero-text-column {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.badge-icon {
    color: #6366f1;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-main-heading {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: #cbd5e1;
    font-weight: 400;
    max-width: 600px;
}

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

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

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

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

.hero-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

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

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

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

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: transparent;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

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

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: floatCard1 6s ease-in-out infinite;
}

.hero-card-2 {
    top: 180px;
    right: 0;
    width: 260px;
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 0;
    left: 60px;
    width: 270px;
    animation: floatCard3 8s ease-in-out infinite;
    animation-delay: 2s;
}

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

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

@keyframes floatCard3 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-15px) rotate(1deg);
    }
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.card-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.hero-decorative-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.2);
    z-index: -1;
    animation: rotate 40s linear infinite;
}

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



/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-text-column {
    padding-right: 0;
    text-align: center;
    }
    
    .hero-badge {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-trust-indicators {
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 500px;
    margin: 0 auto;
    max-width: 500px;
    }
    
    .hero-card-1 {
    width: 240px;
    }
    
    .hero-card-2 {
    width: 220px;
    top: 150px;
    }
    
    .hero-card-3 {
    width: 230px;
    left: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content-container {
    padding: 6rem 1.5rem 4rem;
    }
    
    .hero-main-heading {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    }
    
    .trust-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    }
    
    .hero-visual-column {
    height: 400px;
    }
    
    .hero-floating-card {
    padding: 1.25rem;
    }
    
    .hero-card-1 {
    width: 200px;
    top: 0;
    left: 0;
    }
    
    .hero-card-2 {
    width: 180px;
    top: 120px;
    right: 0;
    }
    
    .hero-card-3 {
    width: 190px;
    bottom: 0;
    left: 20px;
    }
    
    .card-title {
    font-size: 1.125rem;
    }
    
    .card-description {
    font-size: 0.875rem;
    }
    
    .card-icon-wrapper {
    width: 52px;
    height: 52px;
    }
    
    .hero-decorative-circle {
    width: 350px;
    height: 350px;
    }
    
    .shape-1 {
    width: 300px;
    height: 300px;
    }
    
    .shape-2 {
    width: 250px;
    height: 250px;
    }
    
    .shape-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-main-heading {
    font-size: 2rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items:center;
}
    
    .hero-btn {
    width: 80%;
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .hero-card-1 {
    width: 160px;
    }
    
    .hero-card-2 {
    width: 150px;
    top: 100px;
    }
    
    .hero-card-3 {
    width: 155px;
    left: 10px;
    }

}
/* 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 Carousel Section - Asymmetric Split Design */
.testimonials-carousel-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Hide radio inputs */
.testimonials-carousel input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

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

.testimonial-card {
    flex: 0 0 33.333%;
    padding: 4rem 3rem;
    box-sizing: border-box;
}

/* Slide positions based on radio button state */
#slide1:checked ~ .testimonials-track {
    transform: translateX(0%);
}

#slide2:checked ~ .testimonials-track {
    transform: translateX(-33.333%);
}

#slide3:checked ~ .testimonials-track {
    transform: translateX(-66.666%);
}

/* Testimonial Content */
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: 400px;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.testimonial-text-wrapper {
    text-align: center;
    position: relative;
}

.quote-icon {
    color: #667eea;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 0 0 2rem 0;
    font-style: italic;
    font-weight: 400;
}

.testimonial-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Carousel Controls - Dots */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 30%);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot:hover {
    background: rgba(102, 126, 234, 0.5);
    transform: scale(1.2);
}

#slide1:checked ~ .carousel-controls label[for="slide1"],
#slide2:checked ~ .carousel-controls label[for="slide2"],
#slide3:checked ~ .carousel-controls label[for="slide3"] {
    background: #667eea;
    width: 32px;
    border-radius: 6px;
}

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

.carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: all;
    color: #667eea;
}

.carousel-nav:hover {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: scale(1.1);
}

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

.carousel-prev {
    margin-left: -1rem;
}

.carousel-next {
    margin-right: -1rem;
}

/* Dynamic navigation updates */
#slide1:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide1:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

#slide2:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide2:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

#slide3:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide3:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-carousel-section {
    padding: 5rem 0;
    }
    
    .testimonials-header {
    margin-bottom: 3rem;
    }
    
    .testimonials-title {
    font-size: 2rem;
    }
    
    .testimonial-card {
    padding: 3rem 2rem;
    }
    
    .testimonial-content {
    min-height: 450px;
    }
    
    .testimonial-avatar {
    width: 100px;
    height: 100px;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    }
    
    .testimonial-name {
    font-size: 1.25rem;
    }
    
    .carousel-navigation {
    padding: 0 0.5rem;
    }
    
    .carousel-nav {
    width: 40px;
    height: 40px;
    }
    
    .carousel-prev {
    margin-left: 0;
    }
    
    .carousel-next {
    margin-right: 0;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-section .container {
    padding: 0 1rem;
    }
    
    .testimonials-carousel {
    border-radius: 20px;
    }
    
    .testimonial-card {
    padding: 2.5rem 1.5rem;
    }
    
    .testimonial-text {
    font-size: 1rem;
    }
    
    .testimonial-name {
    font-size: 1.125rem;
    }
    
    .quote-icon svg {
    width: 32px;
    height: 32px;
    }
}

/* No-JS Fallback - Stack all testimonials */
@supports not (backdrop-filter: blur(10px)) {
    .testimonials-track {
    flex-direction: column;
    width: 100%;
    }
    
    .testimonial-card {
    flex: 1 1 auto;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }
    
    .testimonial-card:last-child {
    border-bottom: none;
    }
    
    .carousel-controls,
    .carousel-navigation {
    display: none;
    }
}

/* Accessibility - Focus states */
.carousel-dot:focus,
.carousel-nav:focus {
    outline: 3px solid #667eea;
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .testimonials-track {
    flex-direction: column;
    width: 100%;
    transform: none !important;
    }
    
    .testimonial-card {
    flex: 1 1 auto;
    page-break-inside: avoid;
    }
    
    .carousel-controls,
    .carousel-navigation {
    display: none;
    }
}
/* Services Block: Diagonal Grid with Floating Cards Design */
.services-diagonal-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

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

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

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

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.services-grid-diagonal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    perspective: 1000px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 50%, rgba(255, 0, 128, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2), 0 0 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
}

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

.service-card-1 {
    transform: rotate(-1deg);
}

.service-card-2 {
    transform: rotate(1deg);
}

.service-card-3 {
    transform: rotate(-0.5deg);
}

.service-card-4 {
    transform: rotate(0.8deg);
}

.service-card-5 {
    transform: rotate(-1.2deg);
}

.service-card-6 {
    transform: rotate(0.6deg);
}

.service-card:hover.service-card-1,
.service-card:hover.service-card-2,
.service-card:hover.service-card-3,
.service-card:hover.service-card-4,
.service-card:hover.service-card-5,
.service-card:hover.service-card-6 {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.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, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s ease;
}

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

.service-svg-icon {
    width: 44px;
    height: 44px;
    color: #00ff88;
    transition: all 0.4s ease;
}

.service-card:hover .service-svg-icon {
    color: #00d4ff;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

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

.service-card:hover .service-title {
    color: #00ff88;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    min-height: 4.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.service-btn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.service-btn:focus {
    outline: 2px solid #00ff88;
    outline-offset: 3px;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .services-diagonal-grid {
    padding: 5rem 0 6rem;
    }

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

    .services-header-wrap {
    margin-bottom: 3.5rem;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
    transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .services-diagonal-grid {
    padding: 4rem 0 5rem;
    }

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

    .services-grid-diagonal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }

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

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

    .service-card {
    padding: 2rem 1.5rem 1.75rem;
    }

    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    }

    .service-svg-icon {
    width: 38px;
    height: 38px;
    }

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

    .service-description {
    font-size: 1rem;
    min-height: auto;
    margin-bottom: 1.5rem;
    }

    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services-diagonal-grid {
    padding: 3rem 0 4rem;
    }

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

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

    .service-card {
    padding: 1.75rem 1.25rem 1.5rem;
    }

    .service-icon-wrapper {
    width: 64px;
    height: 64px;
    }

    .service-svg-icon {
    width: 34px;
    height: 34px;
    }

    .service-title {
    font-size: 1.25rem;
    }

    .service-description {
    font-size: 0.9375rem;
    }
}
/* 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 Block - Modern Floating Design */
.contact-form-block-kx9 {
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.contact-form-block-kx9::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-block-kx9 .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.form-wrapper-inner {
    background: #ffffff;
    border-radius: 32px;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-wrapper-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 32px 32px 0 0;
}

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

.section-title-contact {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

.form-label-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.01em;
    padding-left: 0.25rem;
}

.form-input-control,
.form-textarea-control {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input-control::placeholder,
.form-textarea-control::placeholder {
    color: #94a3b8;
}

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

.form-input-control:focus,
.form-textarea-control:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

.form-input-control:active,
.form-textarea-control:active {
    transform: translateY(0);
}

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

.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.375rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 4px 8px rgba(99, 102, 241, 0.15);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

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

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35), 0 6px 12px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25), 0 2px 6px rgba(99, 102, 241, 0.15);
}

.form-submit-btn:focus {
    outline: none;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.btn-arrow-icon {
    display: inline-block;
    font-size: 1.375rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-block-kx9 {
    padding: 5rem 0;
    }
    
    .form-wrapper-inner {
    padding: 3rem 2rem;
    border-radius: 24px;
    }
    
    .form-header-area {
    margin-bottom: 2.5rem;
    }
    
    .section-title-contact {
    font-size: 2rem;
    }
    
    .contact-form-main {
    gap: 1.5rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 12px;
    }
    
    .form-submit-btn {
    padding: 1.25rem 1.75rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-block-kx9 {
    padding: 4rem 0;
    }
    
    .form-wrapper-inner {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-header-area {
    margin-bottom: 2rem;
    }
    
    .contact-form-main {
    gap: 1.25rem;
    }
    
    .form-label-text {
    font-size: 0.875rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    }
    
    .form-submit-btn {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    gap: 0.625rem;
    }
    
    .btn-arrow-icon {
    font-size: 1.25rem;
    }
}
/* Contact Information Block - Asymmetric Floating Map Design */
.contact-info-section {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0f9ff 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-map-container {
    height: 350px;
    }
}
/* Footer: Modern Split Layout with Gradient Accent */
.footer-modern-split {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8f0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(232, 232, 240, 0.1);
}

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

.footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-brand-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 100%);
    border-radius: 2px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

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

.footer-address {
    color: #b8b8d0;
}

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

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

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

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

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

/* Navigation Column */
.footer-nav-column {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.footer-navigation {
    width: 100%;
}

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

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

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(232, 232, 240, 0.03);
    border-radius: 12px;
    color: #e8e8f0;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(233, 69, 96, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

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

.footer-nav-link:hover {
    background: rgba(233, 69, 96, 0.08);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.2);
}

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

.footer-link-text {
    flex: 1;
}

.footer-link-arrow {
    width: 20px;
    height: 20px;
    color: #e94560;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

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

/* Legal Column */
.footer-legal-column {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.footer-legal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.footer-legal-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(243, 156, 18, 0.05);
    border-radius: 12px;
    color: #e8e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.15);
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f39c12 0%, #e94560 100%);
    border-radius: 12px 12px 0 0;
    transition: width 0.4s ease;
}

.footer-legal-link:hover {
    background: rgba(243, 156, 18, 0.12);
    border-color: rgba(243, 156, 18, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.2);
}

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

.footer-legal-link:focus {
    outline: 2px solid #f39c12;
    outline-offset: 4px;
}

.footer-legal-icon {
    width: 22px;
    height: 22px;
    color: #f39c12;
    flex-shrink: 0;
}

/* Wave Divider */
.footer-wave-divider {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 60px;
    color: #e94560;
    opacity: 0.3;
    pointer-events: none;
}

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

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

.footer-copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-copyright-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 232, 240, 0.2) 50%, transparent 100%);
    max-width: 200px;
}

.footer-copyright-text {
    margin: 0;
    font-size: 1rem;
    color: #b8b8d0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.footer-year {
    font-weight: 600;
    color: #e94560;
}

.footer-separator {
    color: rgba(232, 232, 240, 0.3);
    font-weight: 300;
}

.footer-brand-small {
    font-weight: 500;
}

/* Background Decoration */
.footer-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

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

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

.footer-bg-circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #e94560 0%, transparent 70%);
    top: 40%;
    left: -80px;
    animation: float-circle-3 22s ease-in-out infinite;
}

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

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

@keyframes float-circle-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 35px) scale(1.08); }
}

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

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

    .footer-legal-wrapper {
    flex-direction: row;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

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

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

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

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

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

    .footer-legal-wrapper {
    flex-direction: column;
    gap: 1rem;
    }

    .footer-legal-link {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    }

    .footer-copyright-wrapper {
    flex-direction: column;
    gap: 1rem;
    }

    .footer-copyright-line {
    display: none;
    }

    .footer-copyright-text {
    font-size: 0.9375rem;
    flex-wrap: wrap;
    justify-content: center;
    }

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

    .footer-bg-circle-1 {
    width: 250px;
    height: 250px;
    }

    .footer-bg-circle-2 {
    width: 200px;
    height: 200px;
    }

    .footer-bg-circle-3 {
    width: 180px;
    height: 180px;
    }
}

@media (max-width: 480px) {
    .footer-modern-split {
    padding: 3rem 0 1rem;
    }

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

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

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

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

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