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

#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 Split Navigation with Floating Card Design */
.main-header-cosmic {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(10, 10, 20, 0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header-cosmic.scrolled {
background: rgba(10, 10, 20, 0.95);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
border-bottom-color: rgba(138, 43, 226, 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 with Animated Orb */
.brand-wrapper {
position: relative;
z-index: 10;
}

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

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

.brand-orb {
width: 42px;
height: 42px;
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
border-radius: 50%;
position: relative;
overflow: hidden;
box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.brand-orb::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
animation: shimmer 3s infinite;
}

@keyframes shimmer {
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.brand-text {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.02em;
}

/* Desktop Navigation - Floating Card Style */
.nav-desktop {
display: none;
}

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

.nav-item {
position: relative;
}

.nav-link {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.25rem;
color: #e0e0ff;
text-decoration: none;
font-size: 1rem;
font-weight: 500;
background: transparent;
border: none;
cursor: pointer;
position: relative;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 12px;
}

.nav-link:hover {
color: #ffffff;
background: rgba(138, 43, 226, 0.15);
}

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

.link-underline {
position: absolute;
bottom: 8px;
left: 1.25rem;
right: 1.25rem;
height: 2px;
background: linear-gradient(90deg, #8a2be2 0%, #ff1493 100%);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .link-underline {
transform: scaleX(1);
transform-origin: left;
}

/* CTA Link Special Styling */
.nav-cta {
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
color: #ffffff;
border-radius: 50px;
padding: 0.75rem 1.75rem;
position: relative;
overflow: hidden;
}

.nav-cta:hover {
background: linear-gradient(135deg, #9a3bf2 0%, #ff2fa3 100%);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.nav-cta .link-underline {
display: none;
}

.cta-glow {
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;
}

.nav-cta:hover .cta-glow {
left: 100%;
}

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

.dropdown-trigger.active .dropdown-arrow {
transform: rotate(180deg);
}

.dropdown-menu-new {
position: absolute;
top: calc(100% + 8px);
left: 50%;
transform: translateX(-50%) translateY(-10px);
background: rgba(20, 20, 35, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(138, 43, 226, 0.3);
border-radius: 16px;
min-width: 220px;
opacity: 0;
visibility: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.dropdown-inner {
padding: 0.75rem;
}

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

.dropdown-link:hover {
background: rgba(138, 43, 226, 0.2);
color: #ffffff;
transform: translateX(4px);
}

.dropdown-icon {
font-size: 1.125rem;
color: #8a2be2;
transition: transform 0.2s ease;
}

.dropdown-link:hover .dropdown-icon {
transform: translateX(4px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 44px;
height: 44px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 1001;
transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
background: rgba(138, 43, 226, 0.15);
border-radius: 10px;
}

.hamburger-line {
width: 26px;
height: 2px;
background: #ffffff;
border-radius: 2px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}

.hamburger-line:not(:last-child) {
margin-bottom: 6px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(10, 10, 20, 0.98);
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-mobile {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 6rem 2rem 2rem;
position: relative;
}

.mobile-nav-list {
list-style: none;
margin: 0;
padding: 0;
width: 100%;
max-width: 500px;
}

.mobile-nav-item {
opacity: 0;
transform: translateX(-30px);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-item {
opacity: 1;
transform: translateX(0);
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link {
display: flex;
align-items: center;
gap: 1.25rem;
padding: 1.25rem 1.5rem;
color: #e0e0ff;
text-decoration: none;
font-size: 1.5rem;
font-weight: 600;
background: transparent;
border: none;
width: 100%;
text-align: left;
cursor: pointer;
border-radius: 16px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.mobile-nav-link::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(180deg, #8a2be2 0%, #ff1493 100%);
transform: scaleY(0);
transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
background: rgba(138, 43, 226, 0.1);
color: #ffffff;
padding-left: 2rem;
}

.mobile-nav-link:hover::before {
transform: scaleY(1);
}

.mobile-link-number {
font-size: 1rem;
color: #8a2be2;
font-weight: 700;
min-width: 32px;
}

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

/* Mobile Dropdown Arrow */
.mobile-dropdown-arrow {
transition: transform 0.3s ease;
margin-left: auto;
}

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

/* Mobile Dropdown Menu */
.mobile-dropdown-menu-new {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding-left: 3rem;
}

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

.mobile-dropdown-link {
display: block;
padding: 0.875rem 1rem;
color: #b0b0d0;
text-decoration: none;
font-size: 1.125rem;
font-weight: 500;
border-radius: 10px;
transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
background: rgba(138, 43, 226, 0.15);
color: #ffffff;
padding-left: 1.5rem;
}

/* Mobile CTA Styling */
.mobile-nav-cta {
background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
color: #ffffff;
margin-top: 1rem;
border-radius: 50px;
}

.mobile-nav-cta:hover {
background: linear-gradient(135deg, #9a3bf2 0%, #ff2fa3 100%);
box-shadow: 0 10px 40px rgba(138, 43, 226, 0.5);
}

/* Mobile Navigation Decoration */
.mobile-nav-decoration {
position: fixed;
bottom: 2rem;
right: 2rem;
pointer-events: none;
}

.decoration-circle {
width: 200px;
height: 200px;
border-radius: 50%;
background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
filter: blur(40px);
}

.decoration-line {
position: absolute;
top: 50%;
left: 50%;
width: 300px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
transform: translate(-50%, -50%) rotate(-45deg);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
overflow: hidden;
}

/* Desktop Navigation Display */
@media (min-width: 992px) {
.nav-desktop {
    display: block;
}

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

.mobile-nav-overlay {
    display: none;
}
}

/* Tablet Responsive */
@media (max-width: 991px) and (min-width: 768px) {
.header-container {
    padding: 0 1.5rem;
}

.mobile-nav-link {
    font-size: 1.75rem;
}
}

/* Mobile Responsive */
@media (max-width: 767px) {
.header-container {
    padding: 0 1.25rem;
    min-height: 70px;
}

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

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

.mobile-nav-link {
    font-size: 1.25rem;
    padding: 1rem 1rem;
    gap: 1rem;
}

.mobile-link-number {
    font-size: 0.875rem;
    min-width: 28px;
}

.mobile-dropdown-menu-new {
    padding-left: 2.5rem;
}

.mobile-dropdown-link {
    font-size: 1rem;
    padding: 0.75rem 0.75rem;
}

.decoration-circle {
    width: 150px;
    height: 150px;
}

.decoration-line {
    width: 200px;
}
}

/* Small Mobile */
@media (max-width: 480px) {
.header-container {
    padding: 0 1rem;
}

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

.mobile-nav-link {
    font-size: 1.125rem;
    padding: 0.875rem 0.875rem;
}
}
/* Hero Wave Block: Asymmetric Pink-Orange Gradient Design */
.hero-wave-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(165deg, #ff0a78 0%, #ff6b35 35%, #ffa07a 70%, #ffcdb2 100%);
}

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    filter: grayscale(100%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 10, 120, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%);
}

/* Floating Background Shapes */
.hero-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    animation: heroFloat 20s ease-in-out infinite;
}

.float-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.float-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.float-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
    animation-duration: 22s;
}

.float-shape.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: -8%;
    animation-delay: 15s;
    animation-duration: 28s;
}

@keyframes heroFloat {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    }
    25% {
    transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
    transform: translate(-20px, 40px) rotate(180deg);
    }
    75% {
    transform: translate(40px, 20px) rotate(270deg);
    }
}

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

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

.hero-logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-logo-icon {
    width: 50px;
    height: 50px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-icon:hover {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.5));
}

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

.hero-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
    position: relative;
}

.hero-ham-line {
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-menu-checkbox:checked ~ .hero-hamburger .hero-ham-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ffffff;
}

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

.hero-menu-checkbox:checked ~ .hero-hamburger .hero-ham-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ffffff;
}

/* Navigation Menu */
.hero-nav-menu {
    display: flex;
    align-items: center;
}

.hero-nav-backdrop {
    display: none;
}

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

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

.hero-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero-nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

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

.hero-nav-link:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    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;
}

.hero-text-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Badge Pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    width: fit-content;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: heroPulseGlow 3s ease-in-out infinite;
}

@keyframes heroPulseGlow {
    0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.hero-badge-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

/* Main Title */
.hero-main-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Title Decoration */
.hero-title-decoration {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: heroFadeIn 1.2s ease 0.3s both;
}

@keyframes heroFadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
}

.hero-deco-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.hero-deco-star {
    width: 32px;
    height: 32px;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    animation: heroRotateStar 10s linear infinite;
}

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

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 600px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.hero-btn-primary {
    background: #ffffff;
    color: #ff0a78;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #fff5f8;
}

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

.hero-btn-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-trust-item {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-trust-item:hover {
    transform: translateY(-6px) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-trust-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

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

.hero-floating-card {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heroCardFloat 6s ease-in-out infinite;
}

.hero-floating-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-floating-card:hover::before {
    opacity: 1;
}

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

.hero-card-2 {
    top: 45%;
    right: 15%;
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

.hero-card-3 {
    bottom: 5%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero-floating-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-floating-card:hover .hero-card-glow {
    opacity: 1;
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-floating-card:hover .hero-card-icon {
    transform: scale(1.15) rotate(10deg);
}

/* Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    color: #ffffff;
    opacity: 0.15;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-visual-column {
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
    }
    
    .hero-main-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .hero-floating-card {
    width: 150px;
    height: 150px;
    }
    
    .hero-card-2 {
    width: 160px;
    height: 160px;
    }
}

@media (max-width: 768px) {
    .hero-hamburger {
    display: flex;
    }
    
    .hero-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(165deg, #ff0a78 0%, #ff6b35 100%);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
    z-index: 105;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu {
    right: 0;
    }
    
    .hero-nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 100;
    backdrop-filter: blur(4px);
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-backdrop {
    opacity: 1;
    visibility: visible;
    }
    
    .hero-nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    }
    
    .hero-nav-item {
    opacity: 0;
    transform: translateX(40px);
    animation: heroSlideInMenu 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(1) {
    animation-delay: 0.1s;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(2) {
    animation-delay: 0.2s;
    }
    
    .hero-menu-checkbox:checked ~ .hero-nav-menu .hero-nav-item:nth-child(3) {
    animation-delay: 0.3s;
    }
    
    @keyframes heroSlideInMenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    .hero-nav-link {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    }
    
    .hero-nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    }
    
    .hero-nav-link::before {
    display: none;
    }
    
    .hero-content-wrapper {
    padding: 2rem 0 4rem;
    }
    
    .hero-text-column {
    text-align: center;
    align-items: center;
    }
    
    .hero-subtitle {
    max-width: 100%;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-trust-badges {
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .hero-floating-card {
    width: 120px;
    height: 120px;
    }
    
    .hero-card-2 {
    width: 140px;
    height: 140px;
    }
    
    .hero-card-icon {
    width: 60px;
    height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-nav-container {
    padding: 0 1rem;
    }
    
    .hero-content-container {
    padding: 0 1rem;
    }
    
    .hero-main-title {
    font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-badges {
    gap: 1rem;
    }
    
    .hero-trust-item {
    width: 48px;
    height: 48px;
    }
    
    .hero-trust-icon {
    width: 28px;
    height: 28px;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .hero-floating-card {
    width: 100px;
    height: 100px;
    }
    
    .hero-card-2 {
    width: 120px;
    height: 120px;
    }
    
    .hero-card-icon {
    width: 50px;
    height: 50px;
    }
    
    .float-shape {
    width: 150px !important;
    height: 150px !important;
    }
}
/* Features Block: Diagonal Split with Neon Accents */
.features-diagonal-neon {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

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

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

/* Feature Card Styling */
.feature-card {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

/* Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.8);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

/* Image Glow Effect */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card:hover .image-glow {
    opacity: 0.7;
}

.glow-lime {
    background: radial-gradient(circle, #c0ff00 0%, transparent 70%);
}

.glow-pink {
    background: radial-gradient(circle, #ff006e 0%, transparent 70%);
}

.glow-cyan {
    background: radial-gradient(circle, #00f5ff 0%, transparent 70%);
}

/* Feature Content */
.feature-content {
    padding: 2.5rem 2rem 2rem;
    position: relative;
    z-index: 3;
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.card-accent-lime .feature-number {
    background: linear-gradient(135deg, #c0ff00 0%, #7fff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-accent-pink .feature-number {
    background: linear-gradient(135deg, #ff006e 0%, #ff4d8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-accent-cyan .feature-number {
    background: linear-gradient(135deg, #00f5ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* Accent Line */
.feature-accent-line {
    height: 4px;
    width: 0;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-accent-line {
    width: 80px;
}

.line-lime {
    background: linear-gradient(90deg, #c0ff00 0%, #7fff00 100%);
    box-shadow: 0 0 20px rgba(192, 255, 0, 0.5);
}

.line-pink {
    background: linear-gradient(90deg, #ff006e 0%, #ff4d8f 100%);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.line-cyan {
    background: linear-gradient(90deg, #00f5ff 0%, #00d4ff 100%);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* Decorative Blobs */
.deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    animation: float-blob 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #c0ff00 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff006e 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: -10s;
}

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

/* Decorative Grid Pattern */
.deco-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    }

    .feature-card:nth-child(3) {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

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

    .feature-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
    }

    .feature-image-wrapper {
    height: 220px;
    }

    .feature-content {
    padding: 2rem 1.5rem 1.5rem;
    }

    .feature-number {
    font-size: 2.5rem;
    }

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

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

    .blob-1,
    .blob-2 {
    width: 300px;
    height: 300px;
    }
}

@media (max-width: 480px) {
    .features-diagonal-neon {
    padding: 4rem 0;
    }

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

    .feature-image-wrapper {
    height: 180px;
    }

    .feature-content {
    padding: 1.5rem 1.25rem;
    }

    .feature-number {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    }

    .feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    }

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

    .feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    }
}

/* Focus States for Accessibility */
.feature-card:focus-within {
    outline: 3px solid rgba(192, 255, 0, 0.5);
    outline-offset: 4px;
}
/* Testimonials Carousel Block */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.testimonials-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #1a1a2e;
    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;
}

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

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
}

/* Testimonial Card */
.testimonial-card {
    min-width: 100%;
    padding: 3.5rem 2.5rem;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.85;
    transform: scale(0.95);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.18);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    border-radius: 30px 30px 0 0;
}

/* Avatar */
.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.25));
}

/* Content */
.testimonial-content {
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    color: #667eea;
    opacity: 0.3;
}

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

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

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

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    color: #fbbf24;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #667eea;
}

.carousel-nav:hover {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-block {
    padding: 5rem 0;
    }
    
    .testimonials-header h2 {
    font-size: 2.5rem;
    }
    
    .testimonial-card {
    padding: 3rem 2rem;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-block {
    padding: 4rem 0;
    }
    
    .testimonials-carousel-wrapper {
    padding: 0 50px;
    }
    
    .testimonial-card {
    padding: 2.5rem 1.5rem;
    }
    
    .testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    }
    
    .testimonial-name {
    font-size: 1.25rem;
    }
    
    .carousel-nav {
    width: 44px;
    height: 44px;
    }
    
    .carousel-nav svg {
    width: 20px;
    height: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-block .container {
    padding: 0 1rem;
    }
    
    .testimonials-carousel-wrapper {
    padding: 0 40px;
    }
    
    .testimonial-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
    }
    
    .testimonial-avatar {
    width: 70px;
    height: 70px;
    }
    
    .quote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    }
    
    .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .testimonial-name {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    }
    
    .testimonial-stars svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-nav {
    width: 40px;
    height: 40px;
    }
    
    .carousel-nav svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-pagination {
    margin-top: 2rem;
    gap: 0.75rem;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .pagination-dot.active {
    width: 28px;
    }
}

/* Fallback for no-JS - show all cards stacked */
.no-js .testimonials-carousel-track {
    flex-direction: column;
    gap: 2rem;
}

.no-js .testimonial-card {
    min-width: 100%;
    opacity: 1;
    transform: scale(1);
}

.no-js .carousel-nav,
.no-js .carousel-pagination {
    display: none;
}
/* Services Block: Diagonal Grid with Gradient Accents */
.services-diagonal-grid {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0f9ff 100%);
    overflow: hidden;
}

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

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

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

.services-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ec4899, #f59e0b);
    margin: 0 auto;
    border-radius: 50px;
    position: relative;
}

.services-title-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

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

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    border-color: rgba(236, 72, 153, 0.2);
}

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

.service-card-1 { animation-delay: 0.1s; }
.service-card-2 { animation-delay: 0.2s; }
.service-card-3 { animation-delay: 0.3s; }
.service-card-4 { animation-delay: 0.4s; }
.service-card-5 { animation-delay: 0.5s; }
.service-card-6 { animation-delay: 0.6s; }

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.75rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
}

.service-icon {
    width: 48px;
    height: 48px;
    color: #6366f1;
    transition: all 0.4s ease;
}

.service-card-1 .service-icon { color: #6366f1; }
.service-card-2 .service-icon { color: #ec4899; }
.service-card-3 .service-icon { color: #8b5cf6; }
.service-card-4 .service-icon { color: #14b8a6; }
.service-card-5 .service-icon { color: #f59e0b; }
.service-card-6 .service-icon { color: #ef4444; }

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px currentColor);
}

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

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

.service-card:hover .service-name {
    color: #6366f1;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.75rem;
    flex: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

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

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

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.service-btn:focus {
    outline: 3px solid rgba(99, 102, 241, 0.4);
    outline-offset: 3px;
}

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

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

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

/* Background decorative elements */
.services-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.services-bg-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    top: -150px;
    right: -150px;
    animation: float-1 20s ease-in-out infinite;
}

.services-bg-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, #8b5cf6, #14b8a6);
    bottom: -100px;
    left: -100px;
    animation: float-2 18s ease-in-out infinite;
}

.services-bg-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #f59e0b, #ec4899);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-3 22s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

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

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

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

@media (max-width: 768px) {
    .services-diagonal-grid {
    padding: 5rem 0;
    }
    
    .services-container {
    padding: 0 1.5rem;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
    
    .service-card {
    padding: 2rem;
    }
    
    .services-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    .services-diagonal-grid {
    padding: 4rem 0;
    }
    
    .services-container {
    padding: 0 1rem;
    }
    
    .service-card {
    padding: 1.75rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    }
    
    .service-icon {
    width: 40px;
    height: 40px;
    }
    
    .service-name {
    font-size: 1.25rem;
    }
}
/* 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 Block - Modern Gradient Card Design */
.contact-form-block-zx8q {
    position: relative;
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-form-wrapper-zx8q {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-title-zx8q {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-underline-zx8q {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

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

.form-group-zx8q {
    position: relative;
    width: 100%;
}

.form-label-zx8q {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.625rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.form-input-zx8q,
.form-textarea-zx8q {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1.0625rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-input-zx8q::placeholder,
.form-textarea-zx8q::placeholder {
    color: #a0aec0;
    opacity: 1;
}

.form-input-zx8q:focus,
.form-textarea-zx8q:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 8px 20px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-input-zx8q:hover,
.form-textarea-zx8q:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-textarea-zx8q {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

.form-submit-zx8q {
    width: 100%;
    padding: 1.375rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
}

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

.form-submit-zx8q:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.45);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

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

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

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

.button-arrow-zx8q {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

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

.decorative-shapes-zx8q {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape-circle-zx8q {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    animation: float-zx8q 8s ease-in-out infinite;
}

.shape-1-zx8q {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2-zx8q {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation-delay: 2s;
}

.shape-blob-zx8q {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 65%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph-zx8q 12s ease-in-out infinite;
}

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

@keyframes morph-zx8q {
    0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
    border-radius: 60% 40% 50% 70% / 60% 30% 70% 40%;
    }
    50% {
    border-radius: 50% 60% 40% 60% / 50% 70% 30% 60%;
    }
    75% {
    border-radius: 70% 50% 60% 40% / 40% 60% 50% 70%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-block-zx8q {
    padding: 4rem 1rem;
    min-height: auto;
    }
    
    .contact-form-wrapper-zx8q {
    padding: 2.5rem 1.75rem;
    border-radius: 24px;
    }
    
    .form-title-zx8q {
    font-size: 2.25rem;
    }
    
    .form-header-zx8q {
    margin-bottom: 2rem;
    }
    
    .contact-form-zx8q {
    gap: 1.5rem;
    }
    
    .form-input-zx8q,
    .form-textarea-zx8q {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .form-submit-zx8q {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
    }
    
    .shape-1-zx8q {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -60px;
    }
    
    .shape-2-zx8q {
    width: 220px;
    height: 220px;
    bottom: -50px;
    left: -50px;
    }
    
    .shape-blob-zx8q {
    width: 350px;
    height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper-zx8q {
    padding: 2rem 1.5rem;
    }
    
    .form-title-zx8q {
    font-size: 1.875rem;
    }
    
    .title-underline-zx8q {
    width: 60px;
    height: 4px;
    }
    
    .form-textarea-zx8q {
    min-height: 140px;
    }
}

/* Focus visible for accessibility */
.form-input-zx8q:focus-visible,
.form-textarea-zx8q:focus-visible,
.form-submit-zx8q:focus-visible {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}
/* Contact Information Block - Organic Shapes with Terracotta & Sage Palette */

.contact-info-block-zx9 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f7f4f1 0%, #faf8f6 50%, #f2ede8 100%);
    overflow: hidden;
}

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

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

/* Contact Details Panel */
.contact-details-panel {
    position: relative;
}

.contact-header-zone {
    margin-bottom: 3.5rem;
}

.contact-main-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #2d3436;
    line-height: 1.15;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.title-accent-line {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #e07a5f 0%, #f4a261 100%);
    border-radius: 3px;
}

.contact-items-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Item Cards */
.contact-item-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(45, 52, 54, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.03) 0%, rgba(129, 178, 154, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(224, 122, 95, 0.15);
}

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

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

.address-bubble {
    background: linear-gradient(135deg, #e07a5f 0%, #f4a261 100%);
    color: #ffffff;
}

.phone-bubble {
    background: linear-gradient(135deg, #81b29a 0%, #95d5b2 100%);
    color: #ffffff;
}

.email-bubble {
    background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
    color: #ffffff;
}

.contact-item-card:hover .contact-icon-bubble {
    border-radius: 40% 50% 40% 50%;
    transform: rotate(10deg) scale(1.05);
}

.contact-svg-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

/* Text Zone */
.contact-text-zone {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3436;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

.contact-link {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #e07a5f;
}

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

/* Map Panel */
.contact-map-panel {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.map-container-frame {
    position: sticky;
    top: 2rem;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(45, 52, 54, 0.12);
    background: #e0e0e0;
}

.map-inner-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

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

.map-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(224, 122, 95, 0.05) 0%, transparent 30%, transparent 70%, rgba(129, 178, 154, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Decorative Background Blobs */
.contact-bg-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    opacity: 0.4;
    z-index: 1;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e07a5f 0%, #f4a261 100%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #81b29a 0%, #95d5b2 100%);
    bottom: -120px;
    left: -80px;
    animation-delay: 7s;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes blob-float {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    }
    25% {
    transform: translate(20px, -30px) rotate(5deg);
    border-radius: 60% 40% 30% 70% / 60% 50% 60% 40%;
    }
    50% {
    transform: translate(-20px, 20px) rotate(-5deg);
    border-radius: 30% 70% 60% 40% / 40% 60% 50% 60%;
    }
    75% {
    transform: translate(30px, 10px) rotate(3deg);
    border-radius: 70% 30% 40% 60% / 50% 40% 60% 50%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-block-zx9 {
    padding: 5rem 0;
    }
    
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-main-title {
    font-size: 2.5rem;
    }
    
    .contact-map-panel {
    min-height: 450px;
    }
    
    .map-container-frame {
    position: relative;
    top: 0;
    height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-info-block-zx9 {
    padding: 4rem 0;
    }
    
    .contact-container-wrap {
    padding: 0 1.5rem;
    }
    
    .contact-content-grid {
    gap: 2.5rem;
    }
    
    .contact-main-title {
    font-size: 2rem;
    }
    
    .contact-header-zone {
    margin-bottom: 2.5rem;
    }
    
    .contact-items-stack {
    gap: 1.5rem;
    }
    
    .contact-item-card {
    padding: 1.5rem;
    gap: 1.25rem;
    flex-direction: row;
    }
    
    .contact-icon-bubble {
    width: 56px;
    height: 56px;
    }
    
    .contact-svg-icon {
    width: 28px;
    height: 28px;
    }
    
    .contact-value {
    font-size: 1.125rem;
    }
    
    .contact-map-panel {
    min-height: 380px;
    }
    
    .map-container-frame {
    height: 380px;
    border-radius: 24px;
    }
    
    .contact-bg-blob {
    opacity: 0.25;
    }
    
    .blob-1 {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -80px;
    }
    
    .blob-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
    }
    
    .blob-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .contact-main-title {
    font-size: 1.75rem;
    }
    
    .contact-item-card {
    padding: 1.25rem;
    gap: 1rem;
    }
    
    .contact-icon-bubble {
    width: 48px;
    height: 48px;
    }
    
    .contact-svg-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-label {
    font-size: 0.8rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container-frame {
    height: 320px;
    border-radius: 20px;
    }
}
/* Footer Wave Modern Design - Vibrant Coral & Mint Theme */
.footer-wave-modern {
    position: relative;
    background: linear-gradient(165deg, #fef9f3 0%, #fff5eb 50%, #ffeee0 100%);
    padding-top: 0;
    overflow: hidden;
}

.footer-wave-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

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

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
}

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

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

.footer-brand-wrapper {
    margin-bottom: 0.5rem;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff8787 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: #8b5e3c;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #6b4423;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-phone-link {
    color: #6b4423;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-phone-link:hover {
    color: #ff6b6b;
    transform: translateX(3px);
}

/* Columns */
.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3d2817;
    margin: 0 0 1.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

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

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

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b4423;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.footer-link-arrow {
    display: inline-block;
    color: #ff6b6b;
    font-size: 1.125rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

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

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

/* Newsletter Column */
.footer-newsletter-text {
    color: #6b4423;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.1);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

.footer-social-link:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 3px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 107, 107, 0.15);
}

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

.footer-copyright {
    color: #8b5e3c;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-bottom-link {
    color: #6b4423;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-bottom-link:hover {
    color: #ff6b6b;
}

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

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

.footer-separator {
    color: #d4a373;
    font-weight: 600;
}

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

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

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

@media (max-width: 768px) {
    .footer-container {
    padding: 4rem 1.5rem 2rem;
    }

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

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

    .footer-column-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

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

    .footer-bottom-links {
    justify-content: center;
    }

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

@media (max-width: 576px) {
    .footer-container {
    padding: 3rem 1rem 1.5rem;
    }

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

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

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

    .footer-social-link {
    width: 40px;
    height: 40px;
    }

    .footer-social-link svg {
    width: 18px;
    height: 18px;
    }

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