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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #edc0d74d;
}

#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 Block: Asymmetric Split with Floating Animation - Modern Pink/Yellow/Green Theme */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-item {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .header-container {
    padding: 0 1rem;
    }
    
    .hero-content-container {
    padding: 0 1rem;
    }
    
    .logo-icon {
    width: 40px;
    height: 40px;
    }
    
    .hero-navigation {
    width: 100%;
    right: -100%;
    }
    
    .hero-main-title {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-cta-primary {
    width: 100%;
    justify-content: center;
    }
    
    .hero-visual-section {
    height: 250px;
    }
    
    .float-shape {
    filter: blur(40px);
    }
}
/* Features Chess Grid - Organic Shapes with Vibrant Colors */
.features-chess-grid {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 50%, #fff0e6 100%);
    position: relative;
    overflow: hidden;
}

.features-chess-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 8s ease-in-out infinite;
}

.features-chess-grid::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 10s ease-in-out infinite reverse;
}

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

.features-chess-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.feature-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

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

/* Chess pattern - alternating positions */
.feature-card-1 {
    transform: translateY(0);
    border-color: rgba(255, 107, 129, 0.3);
}

.feature-card-1:hover {
    border-color: #ff6b81;
    transform: translateY(-12px) scale(1.02);
}

.feature-card-2 {
    transform: translateY(40px);
    border-color: rgba(126, 214, 223, 0.3);
}

.feature-card-2:hover {
    border-color: #7ed6df;
    transform: translateY(28px) scale(1.02);
}

.feature-card-3 {
    transform: translateY(0);
    border-color: rgba(255, 193, 7, 0.3);
}

.feature-card-3:hover {
    border-color: #ffc107;
    transform: translateY(-12px) scale(1.02);
}

/* Organic blob backgrounds */
.feature-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
    opacity: 0.08;
    transition: all 0.6s ease;
    z-index: 1;
}

.blob-1 {
    background: #ff6b81;
    border-radius: 42% 58% 70% 30% / 45% 65% 35% 55%;
    animation: morph-blob-1 10s ease-in-out infinite;
}

.blob-2 {
    background: #7ed6df;
    border-radius: 58% 42% 30% 70% / 55% 35% 65% 45%;
    animation: morph-blob-2 12s ease-in-out infinite;
}

.blob-3 {
    background: #ffc107;
    border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
    animation: morph-blob-3 11s ease-in-out infinite;
}

@keyframes morph-blob-1 {
    0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 65% 35% 55%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 65% 35% 50% 50% / 40% 60% 40% 60%;
    transform: rotate(120deg) scale(1.1);
    }
    66% {
    border-radius: 50% 50% 35% 65% / 55% 45% 55% 45%;
    transform: rotate(240deg) scale(0.95);
    }
}

@keyframes morph-blob-2 {
    0%, 100% {
    border-radius: 58% 42% 30% 70% / 55% 35% 65% 45%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 45% 55% 60% 40% / 50% 50% 50% 50%;
    transform: rotate(135deg) scale(1.08);
    }
    66% {
    border-radius: 35% 65% 55% 45% / 45% 55% 45% 55%;
    transform: rotate(270deg) scale(0.97);
    }
}

@keyframes morph-blob-3 {
    0%, 100% {
    border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%;
    transform: rotate(110deg) scale(1.05);
    }
    66% {
    border-radius: 48% 52% 40% 60% / 52% 48% 52% 48%;
    transform: rotate(220deg) scale(0.98);
    }
}

.feature-card:hover .feature-blob {
    opacity: 0.15;
    transform: scale(1.2) rotate(45deg);
}

/* Feature image styling */
.feature-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card-1 .feature-image-wrapper {
    background: linear-gradient(135deg, #ff6b81 0%, #ff8fab 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 129, 0.25);
}

.feature-card-2 .feature-image-wrapper {
    background: linear-gradient(135deg, #7ed6df 0%, #a8e6ed 100%);
    box-shadow: 0 8px 24px rgba(126, 214, 223, 0.25);
}

.feature-card-3 .feature-image-wrapper {
    background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.25);
}

.feature-card:hover .feature-image-wrapper {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: all 0.4s ease;
}

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

/* Feature content */
.feature-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3436;
    line-height: 1.3;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.feature-card-1 .feature-title {
    color: #ff6b81;
}

.feature-card-2 .feature-title {
    color: #0fb9b1;
}

.feature-card-3 .feature-title {
    color: #f39c12;
}

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

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #636e72;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #2d3436;
}

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

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

    .feature-card-1,
    .feature-card-2,
    .feature-card-3 {
    transform: translateY(0);
    }

    .feature-card-1:hover,
    .feature-card-3:hover {
    transform: translateY(-12px) scale(1.02);
    }

    .feature-card-2:hover {
    transform: translateY(-12px) scale(1.02);
    }
}

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

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

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

    .feature-blob {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
    }

    .feature-image-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    }

    .feature-image {
    padding: 1.25rem;
    }

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

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

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

    .features-chess-grid .container {
    padding: 0 1rem;
    }

    .features-grid {
    gap: 1.5rem;
    }

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

    .feature-image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    }

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

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Section - Carousel Style with Gradient Avatars */
.testimonials-section-zx9k {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-section-zx9k::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-header-zx9k {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-title-zx9k {
    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;
}

.testimonials-carousel-wrapper-zx9k {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.testimonial-card-zx9k {
    position: absolute;
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.testimonial-card-zx9k.testimonial-active-zx9k {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    z-index: 2;
}

.testimonial-card-zx9k:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    transform: scale(1.02) translateY(-5px);
}

.testimonial-avatar-wrapper-zx9k {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.testimonial-avatar-zx9k {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transition: all 0.4s ease;
}

.testimonial-card-zx9k:hover .testimonial-avatar-zx9k {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}

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

.testimonial-quote-icon-zx9k {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #667eea;
}

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

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

.testimonials-navigation-zx9k {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.testimonial-nav-btn-zx9k {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-nav-btn-zx9k:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.testimonial-nav-btn-zx9k:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.testimonials-pagination-zx9k {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

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

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

.pagination-dot-zx9k.pagination-dot-active-zx9k {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 32px;
    border-radius: 6px;
    transform: scale(1);
}

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

    .testimonial-card-zx9k {
    padding: 2.5rem 2rem;
    }

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

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

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

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

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

    .testimonial-card-zx9k {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }

    .testimonial-avatar-zx9k {
    width: 75px;
    height: 75px;
    }

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

    .testimonial-name-zx9k {
    font-size: 1.1875rem;
    }

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

    .testimonials-navigation-zx9k {
    gap: 1.5rem;
    margin-top: 2.5rem;
    }
}

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

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

    .testimonials-carousel-wrapper-zx9k {
    padding: 0 0.5rem;
    }

    .testimonials-carousel-zx9k {
    min-height: 550px;
    }

    .testimonial-card-zx9k {
    padding: 1.75rem 1.25rem;
    }

    .testimonial-avatar-zx9k {
    width: 65px;
    height: 65px;
    }

    .testimonial-text-zx9k {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

    .testimonial-name-zx9k {
    font-size: 1.0625rem;
    }

    .testimonials-navigation-zx9k {
    gap: 1rem;
    margin-top: 2rem;
    }

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

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

    .pagination-dot-zx9k.pagination-dot-active-zx9k {
    width: 26px;
    }
}

/* Fallback for no-js */
.no-js .testimonial-card-zx9k {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: all;
    margin-bottom: 2rem;
}

.no-js .testimonials-carousel-zx9k {
    min-height: auto;
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .services-block-dg47 {
    padding: 3rem 0;
    }
    
    .services-header-wrap {
    margin-bottom: 2.5rem;
    }
    
    .service-card {
    padding: 1.75rem 1.5rem;
    }
    
    .service-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    }
    
    .service-icon {
    width: 38px;
    height: 38px;
    }
    
    .title-decoration {
    gap: 8px;
    }
    
    .decoration-line {
    width: 35px;
    height: 2px;
    }
    
    .decoration-dot {
    width: 8px;
    height: 8px;
    }
}
/* FAQ Section: Asymmetric Split Layout with Teal & Coral Palette */
.faq-section-asymmetric {
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f0fdfa 0%, #ecfeff 40%, #fef2f2 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-asymmetric::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-asymmetric::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

/* Header Side */
.faq-header-side {
    position: sticky;
    top: 6rem;
    padding-right: 2rem;
}

.faq-main-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0d9488 0%, #fb7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-decorative-shape {
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #14b8a6 0%, #fb7185 100%);
    border-radius: 50px;
    margin-top: 1.5rem;
}

/* Accordion Side */
.faq-accordion-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* FAQ Item Wrapper */
.faq-item-wrapper {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.faq-item-wrapper:hover {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

/* Hide checkbox */
.faq-checkbox {
    display: none;
}

/* Question Label */
.faq-question-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    gap: 2rem;
}

.faq-question-label:hover {
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.03) 0%, rgba(251, 113, 133, 0.03) 100%);
}

.faq-question-label:focus-visible {
    outline: 3px solid #14b8a6;
    outline-offset: -3px;
}

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

/* Icon Toggle Container */
.faq-icon-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Answer Container - Collapsed by default */
.faq-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 2.5rem 2rem;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.faq-answer-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin: 1.5rem 0 0;
    letter-spacing: 0.005em;
}

/* Checked State - Expanded */
.faq-checkbox:checked ~ .faq-question-label .faq-icon-toggle {
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
    transform: rotate(180deg);
}

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

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

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

.faq-checkbox:checked ~ .faq-question-label {
    background: linear-gradient(90deg, rgba(251, 113, 133, 0.04) 0%, rgba(20, 184, 166, 0.04) 100%);
}

.faq-checkbox:checked ~ .faq-question-label .faq-question-text {
    color: #0d9488;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-container-wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    }
    
    .faq-header-side {
    position: static;
    padding-right: 0;
    text-align: center;
    }
    
    .faq-main-title {
    font-size: 3.5rem;
    }
    
    .faq-decorative-shape {
    margin-left: auto;
    margin-right: auto;
    }
}

@media (max-width: 768px) {
    .faq-section-asymmetric {
    padding: 5rem 0 6rem;
    }
    
    .faq-container-wrap {
    padding: 0 1.5rem;
    gap: 2.5rem;
    }
    
    .faq-main-title {
    font-size: 2.75rem;
    }
    
    .faq-question-label {
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
    }
    
    .faq-question-text {
    font-size: 1.125rem;
    }
    
    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    }
    
    .faq-icon-plus,
    .faq-icon-minus {
    width: 20px;
    height: 20px;
    }
    
    .faq-answer-content {
    padding: 0 1.75rem 1.5rem;
    }
    
    .faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    }
    
    .faq-item-wrapper {
    border-radius: 18px;
    }
}

@media (max-width: 576px) {
    .faq-main-title {
    font-size: 2.25rem;
    }
    
    .faq-question-label {
    padding: 1.25rem 1.5rem;
    }
    
    .faq-question-text {
    font-size: 1rem;
    }
    
    .faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    }
    
    .faq-answer-content p {
    font-size: 0.9375rem;
    }
}
/* Contact Form Split Design - Unique Gradient Layout */
.contact-form-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    width: 100%;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    min-height: 650px;
}

/* Visual Side with Floating Shapes */
.contact-visual-side {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: #ffffff;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: #e0e0e0;
    bottom: 15%;
    left: 30%;
    animation-delay: 4s;
}

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

/* Form Side */
.contact-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: #ffffff;
}

.form-container {
    width: 100%;
    max-width: 500px;
}

.contact-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4a6a;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    color: #1a1a2e;
    background: #f7f7fb;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    background: #ffffff;
    border-color: #4facfe;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
    transform: translateY(-2px);
}

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

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

/* Submit Button */
.form-submit-btn {
    margin-top: 1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

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

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

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

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

/* Input Validation States */
.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
    border-color: #51cf66;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
    grid-template-columns: 1fr;
    }

    .contact-visual-side {
    display: none;
    }

    .contact-form-side {
    padding: 3rem 2rem;
    }

    .contact-heading {
    font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .contact-form-split {
    padding: 2rem 1rem;
    min-height: auto;
    }

    .contact-wrapper {
    border-radius: 20px;
    }

    .contact-form-side {
    padding: 2.5rem 1.5rem;
    }

    .contact-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    }

    .form-input,
    .form-textarea {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    }

    .form-submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }

    .form-group {
    gap: 0.375rem;
    }

    .contact-form {
    gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-heading {
    font-size: 1.75rem;
    }

    .form-label {
    font-size: 0.8rem;
    }

    .form-textarea {
    min-height: 120px;
    }
}
/* Contact Information Block - Modern Split Layout */
.contact-info-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Contact Details Card */
.contact-details-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-details-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

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

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

.contact-item:hover {
    padding-left: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

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

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

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
}

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

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

.contact-link:hover {
    color: #4f46e5;
}

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

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

/* Decorative Elements */
.contact-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.deco-circle-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.deco-circle-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    top: 20px;
    right: 50px;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Map Container */
.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 500px;
}

.map-container:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    pointer-events: none;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-section {
    padding: 5rem 0;
    }
    
    .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    }
    
    .contact-info-section .section-title {
    font-size: 2.5rem;
    }
    
    .contact-details-card {
    padding: 2.5rem;
    }
    
    .map-wrapper {
    min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
    padding: 4rem 0;
    }
    
    .contact-header {
    margin-bottom: 3rem;
    }
    
    .contact-info-section .section-title {
    font-size: 2rem;
    }
    
    .contact-details-card {
    padding: 2rem;
    border-radius: 20px;
    }
    
    .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    }
    
    .contact-item:hover {
    padding-left: 0;
    }
    
    .contact-icon {
    width: 48px;
    height: 48px;
    }
    
    .contact-icon svg {
    width: 24px;
    height: 24px;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-wrapper {
    min-height: 350px;
    }
    
    .map-container {
    border-radius: 20px;
    min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
    padding: 3rem 0;
    }
    
    .contact-info-section .container {
    padding: 0 1rem;
    }
    
    .contact-info-section .section-title {
    font-size: 1.75rem;
    }
    
    .contact-details-card {
    padding: 1.5rem;
    border-radius: 16px;
    }
    
    .contact-item {
    padding: 1.25rem 0;
    }
    
    .map-wrapper {
    min-height: 300px;
    }
    
    .map-container {
    min-height: 300px;
    border-radius: 16px;
    }
    
    .contact-decoration {
    width: 150px;
    height: 150px;
    }
    
    .deco-circle-1 {
    width: 100px;
    height: 100px;
    }
    
    .deco-circle-2 {
    width: 70px;
    height: 70px;
    }
}
/* 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;
    }
}
