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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #d477094d;
}

#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 Search */
.header-nav-split {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-split.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.1);
    border-bottom-color: rgba(15, 23, 42, 0.12);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 240px 1fr auto auto;
    align-items: center;
    gap: 3rem;
    height: 85px;
}

/* Brand Section */
.header-brand-section {
    display: flex;
    align-items: center;
}

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

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

.brand-icon {
    width: 44px;
    height: 44px;
    color: #8b5cf6;
    transition: color 0.3s ease;
}

.brand-logo-link:hover .brand-icon {
    color: #7c3aed;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.desktop-nav {
    justify-self: center;
}

.nav-menu-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.375rem;
    padding: 0.75rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8b5cf6;
}

.nav-link.active-page {
    color: #8b5cf6;
}

.nav-link-underline {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 2.5rem);
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 3px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .nav-link-underline,
.nav-link.active-page ~ .nav-link-underline {
    transform: translateX(-50%) scaleX(1);
}

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

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

/* Dropdown Menu */
.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.dropdown-menu-new::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top-left-radius: 2px;
}

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

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

.dropdown-item:hover {
    background: linear-gradient(135deg, #f8f4ff 0%, #fdf4ff 100%);
    color: #8b5cf6;
    transform: translateX(4px);
}

/* Search Section */
.header-search-section {
    justify-self: end;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 240px;
    height: 46px;
    padding: 0 3.25rem 0 1.25rem;
    font-size: 1rem;
    color: #0f172a;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 23px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-input:focus {
    width: 280px;
    background: #ffffff;
    border-color: #8b5cf6;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.search-button:active {
    transform: translateY(-50%) scale(0.98);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    justify-self: end;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #0f172a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%!;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

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

.mobile-nav-link:hover,
.mobile-nav-link.active-page {
    background: linear-gradient(135deg, #f8f4ff 0%, #fdf4ff 100%);
    color: #8b5cf6;
}

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

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

.mobile-dropdown-menu-new {
    max-height: 0;
    overflow: hidden;
    padding-left: 1.25rem;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-open .mobile-dropdown-menu-new {
    max-height: 300px;
    padding-top: 0.5rem;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
    background: #f8fafc;
    color: #8b5cf6;
    padding-left: 1.5rem;
}

/* Mobile Search Section */
.mobile-search-section {
    padding: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-input {
    width: 100%;
    height: 48px;
    padding: 0 3.5rem 0 1.25rem;
    font-size: 1rem;
    color: #0f172a;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 24px;
    outline: none;
    transition: all 0.3s ease;
}

.mobile-search-input::placeholder {
    color: #94a3b8;
}

.mobile-search-input:focus {
    background: #ffffff;
    border-color: #8b5cf6;
}

.mobile-search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-button:active {
    transform: translateY(-50%) scale(0.95);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .header-container {
    grid-template-columns: 200px 1fr auto auto;
    gap: 2rem;
    }
    
    .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .desktop-nav,
    .header-search-section {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .header-container {
    grid-template-columns: 1fr auto;
    height: 70px;
    padding: 0 1.5rem;
    }
    
    .brand-icon {
    width: 38px;
    height: 38px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1rem;
    height: 65px;
    }
    
    .brand-icon {
    width: 34px;
    height: 34px;
    }
    
    .brand-name {
    font-size: 1.125rem;
    }
    
    .mobile-nav {
    width: 100%;
    max-width: 100%;
    }
}
/* Welcome Hero Block: Asymmetric Design with Cyberpunk Accents */
.welcome-hero-zx9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    padding: 8rem 2rem 4rem;
}

.hero-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left-column {
    position: relative;
    padding: 3rem;
}

.hero-text-container {
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
    }
    50% {
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.hero-btn-primary::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;
}

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

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

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

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatAnimation 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

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

.hero-right-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-main-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(99, 102, 241, 0.3));
}

.svg-shape {
    animation: shapeRotate 20s linear infinite;
    transform-origin: center;
}

.shape-1 {
    animation-duration: 25s;
    animation-direction: normal;
}

.shape-2 {
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    animation-duration: 35s;
    animation-direction: normal;
}

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

.svg-icon-group {
    animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
    transform: translate(400, 400) scale(1);
    }
    50% {
    transform: translate(400, 400) scale(1.05);
    }
}

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: cardFloat 5s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 50%;
    right: -10%;
    animation-delay: 3s;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #6366f1;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
    top: 8px;
    opacity: 1;
    }
    50% {
    top: 24px;
    opacity: 0.5;
    }
    100% {
    top: 8px;
    opacity: 1;
    }
}

.hero-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbPulse 8s ease-in-out infinite;
}

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

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -15%;
    right: -15%;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #14b8a6 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes orbPulse {
    0%, 100% {
    transform: scale(1);
    opacity: 0.4;
    }
    50% {
    transform: scale(1.2);
    opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
    gap: 3rem;
    }
    
    .hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

@media (max-width: 992px) {
    .welcome-hero-zx9 {
    padding: 6rem 1.5rem 3rem;
    }
    
    .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .hero-left-column {
    padding: 2rem 0;
    text-align: center;
    }
    
    .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-right-column {
    order: -1;
    }
    
    .hero-floating-card {
    display: none;
    }
}

@media (max-width: 768px) {
    .welcome-hero-zx9 {
    min-height: auto;
    padding: 5rem 1rem 3rem;
    }
    
    .hero-main-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    }
    
    .hero-left-column {
    padding: 1rem 0;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
    
    .floating-circle {
    display: none;
    }
    
    .gradient-orb {
    filter: blur(60px);
    }
}

@media (max-width: 576px) {
    .hero-main-svg {
    max-width: 350px;
    }
    
    .hero-cta-group {
    flex-direction: column;
    align-items: center;
    }
    
    .hero-btn-primary {
    width: 100%;
    }
    
    .orb-1, .orb-2, .orb-3 {
    width: 250px;
    height: 250px;
    }
}
/* Features Block: Diagonal Split Layout with Bold Gradients */
.features-diagonal-burst {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.features-diagonal-burst::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.features-diagonal-burst::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

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

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

.feature-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);
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

/* Unique gradient backgrounds for each card */
.feature-card-1 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: #ffffff;
}

.feature-card-2 {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #ffffff;
}

.feature-card-3 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
}

.feature-card-1:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-card-2:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-card-3:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.feature-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.2;
    animation: morph 8s ease-in-out infinite;
    z-index: 1;
}

.shape-1 {
    background: rgba(255, 255, 255, 0.3);
    animation-delay: 0s;
}

.shape-2 {
    background: rgba(255, 255, 255, 0.3);
    animation-delay: 1s;
}

.shape-3 {
    background: rgba(255, 255, 255, 0.3);
    animation-delay: 2s;
}

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

.feature-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

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

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

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

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

.feature-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.deco-1 {
    top: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.4);
}

.deco-2 {
    bottom: -25px;
    left: -25px;
    background: rgba(255, 255, 255, 0.4);
}

.deco-3 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
}

.feature-card:hover .feature-decoration {
    transform: scale(1.5);
    opacity: 0.25;
}

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

    .feature-card-3 {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

    .feature-card {
    padding: 2rem;
    }

    .feature-card-3 {
    grid-column: auto;
    max-width: 100%;
    }

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

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

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

    .feature-image {
    width: 70px;
    height: 70px;
    }
}

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

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

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

    .feature-card {
    padding: 1.75rem;
    }

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

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Carousel Section - Asymmetric Split Design */
.testimonials-carousel-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Print styles */
@media print {
    .testimonials-track {
    flex-direction: column;
    width: 100%;
    transform: none !important;
    }
    
    .testimonial-card {
    flex: 1 1 auto;
    page-break-inside: avoid;
    }
    
    .carousel-controls,
    .carousel-navigation {
    display: none;
    }
}
/* Services Section: Asymmetric Grid with Gradient Accents */
.services-wave-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
}

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

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

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

.header-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.8);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: currentColor;
}

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

/* Individual Card Colors */
.service-card-1 {
    color: #06b6d4;
}

.service-card-1:hover {
    border-color: #06b6d4;
}

.service-card-2 {
    color: #8b5cf6;
}

.service-card-2:hover {
    border-color: #8b5cf6;
}

.service-card-3 {
    color: #ec4899;
}

.service-card-3:hover {
    border-color: #ec4899;
}

.service-card-4 {
    color: #f59e0b;
}

.service-card-4:hover {
    border-color: #f59e0b;
}

.service-card-5 {
    color: #10b981;
}

.service-card-5:hover {
    border-color: #10b981;
}

.service-card-6 {
    color: #ef4444;
}

.service-card-6:hover {
    border-color: #ef4444;
}

/* Icon Wrapper */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-svg-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

/* Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: currentColor;
}

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

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.service-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

.service-btn:focus {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

/* Decorative Background Blobs */
.bg-blob-1,
.bg-blob-2,
.bg-blob-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.bg-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    top: -10%;
    left: -5%;
    filter: blur(60px);
}

.bg-blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    bottom: -15%;
    right: -10%;
    filter: blur(80px);
}

.bg-blob-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(70px);
}

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

@media (max-width: 768px) {
    .services-wave-grid {
    padding: 4rem 0 5rem;
    }
    
    .services-wave-grid .container {
    padding: 0 1.5rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-heading {
    margin-bottom: 1rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 5px;
    }
}

@media (max-width: 576px) {
    .services-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .service-card {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-svg-icon {
    width: 40px;
    height: 40px;
    }
    
    .service-title {
    font-size: 1.25rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
    
    .bg-blob-1,
    .bg-blob-2,
    .bg-blob-3 {
    display: none;
    }
}
/* FAQ Section: Pure CSS Accordion with Vibrant Gradient Cards */
.faq-section-vt82 {
    padding: 7rem 0;
    background: linear-gradient(165deg, #f0f4ff 0%, #fef3f8 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-vt82::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-vt82::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 168, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-vt82 .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

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

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-accordion-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.faq-item-card:hover {
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.3);
}

.faq-checkbox {
    display: none;
}

.faq-question-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
    gap: 1.5rem;
}

.faq-question-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1 0%, #ec4899 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-checkbox:checked + .faq-question-label::before {
    transform: scaleY(1);
}

.faq-question-label:hover {
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.05) 0%, rgba(249, 168, 212, 0.05) 100%);
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-checkbox:checked + .faq-question-label .faq-question-text {
    color: #6366f1;
}

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

.faq-icon-toggle svg {
    position: absolute;
    color: #6366f1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.faq-checkbox:checked + .faq-question-label .faq-icon-toggle {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
}

.faq-checkbox:checked + .faq-question-label .faq-icon-toggle svg {
    color: #ffffff;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-checkbox:checked ~ .faq-answer-wrapper .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

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

/* Focus States for Accessibility */
.faq-checkbox:focus + .faq-question-label {
    outline: 3px solid rgba(99, 102, 241, 0.4);
    outline-offset: 2px;
}

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

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

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

    .faq-accordion-grid {
    gap: 1rem;
    }

    .faq-item-card {
    border-radius: 18px;
    }

    .faq-question-label {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
    }

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

    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    }

    .faq-icon-toggle svg {
    width: 20px;
    height: 20px;
    }

    .faq-answer-content {
    padding: 0 1.25rem 1.5rem 1.25rem;
    }

    .faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

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

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

    .faq-question-label {
    padding: 1rem 1rem;
    }

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

    .faq-answer-content p {
    font-size: 0.9375rem;
    }
}
/* Contact Form Block: Geometric Split Design with Gradient Accent */
.contact-form-section-zx9 {
    padding: 0;
    margin: 0;
    background: linear-gradient(165deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-form-section-zx9::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow-zx9 8s ease-in-out infinite;
}

@keyframes pulse-glow-zx9 {
    0%, 100% {
    transform: scale(1);
    opacity: 0.3;
    }
    50% {
    transform: scale(1.1);
    opacity: 0.5;
    }
}

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

.contact-content-wrapper-zx9 {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 
                0 0 80px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Visual Panel with Geometric Shapes */
.contact-visual-panel-zx9 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.geometric-shape-1-zx9 {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
    animation: float-shape-1-zx9 6s ease-in-out infinite;
}

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

.geometric-shape-2-zx9 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transform: rotate(25deg);
    animation: float-shape-2-zx9 7s ease-in-out infinite;
}

@keyframes float-shape-2-zx9 {
    0%, 100% {
    transform: rotate(25deg) translateX(0);
    }
    50% {
    transform: rotate(35deg) translateX(15px);
    }
}

.geometric-shape-3-zx9 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.floating-circle-zx9 {
    position: absolute;
    top: 60%;
    left: 25%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
    animation: float-circle-zx9 5s ease-in-out infinite;
}

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

/* Form Panel */
.contact-form-panel-zx9 {
    padding: 5rem 4rem;
    background: rgba(15, 12, 41, 0.6);
    backdrop-filter: blur(10px);
}

.contact-heading-zx9 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 3rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1.5rem;
}

.contact-heading-zx9::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    border-radius: 2px;
}

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

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

.form-label-zx9 {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input-zx9,
.form-textarea-zx9 {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1.0625rem;
    font-family: inherit;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-input-zx9::placeholder,
.form-textarea-zx9::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-zx9:focus,
.form-textarea-zx9:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f093fb;
    box-shadow: 0 0 0 4px rgba(240, 147, 251, 0.15),
                0 8px 24px rgba(240, 147, 251, 0.2);
    transform: translateY(-2px);
}

.form-input-zx9:hover,
.form-textarea-zx9:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

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

/* Submit Button */
.form-submit-btn-zx9 {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    align-self: flex-start;
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

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

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

.form-submit-btn-zx9:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.45);
}

.form-submit-btn-zx9:active {
    transform: translateY(-2px) scale(0.98);
}

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-content-wrapper-zx9 {
    grid-template-columns: 42% 58%;
    }
    
    .contact-form-panel-zx9 {
    padding: 4rem 3rem;
    }
}

@media (max-width: 992px) {
    .contact-content-wrapper-zx9 {
    grid-template-columns: 1fr;
    }
    
    .contact-visual-panel-zx9 {
    padding: 4rem 2rem;
    min-height: 300px;
    }
    
    .contact-form-panel-zx9 {
    padding: 3.5rem 2.5rem;
    }
    
    .contact-heading-zx9 {
    font-size: 2.5rem;
    }
    
    .geometric-shape-1-zx9 {
    width: 140px;
    height: 140px;
    }
    
    .geometric-shape-3-zx9 {
    width: 220px;
    height: 220px;
    }
}

@media (max-width: 768px) {
    .contact-form-section-zx9 {
    min-height: auto;
    padding: 3rem 0;
    }
    
    .contact-container-zx9 {
    padding: 2rem 1.5rem;
    }
    
    .contact-content-wrapper-zx9 {
    border-radius: 0 30px 0 30px;
    }
    
    .contact-form-panel-zx9 {
    padding: 2.5rem 2rem;
    }
    
    .contact-heading-zx9 {
    font-size: 2rem;
    margin-bottom: 2rem;
    }
    
    .form-input-zx9,
    .form-textarea-zx9 {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    }
    
    .form-submit-btn-zx9 {
    width: 100%;
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    }
    
    .contact-visual-panel-zx9 {
    display: none;
    }
}

@media (max-width: 576px) {
    .contact-heading-zx9 {
    font-size: 1.75rem;
    }
    
    .form-label-zx9 {
    font-size: 0.875rem;
    }
    
    .form-group-zx9 {
    gap: 0.5rem;
    }
    
    .contact-form-zx9 {
    gap: 1.5rem;
    }
}
/* Contact Information Block - Modern asymmetric design with bold gradients */
.contact-info-block {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.map-column {
    position: relative;
}

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .contact-info-block {
    padding: 4rem 0 5rem;
    }
    
    .contact-info-block .container {
    padding: 0 1.25rem;
    }
    
    .contact-info-block .section-title {
    font-size: 1.875rem;
    }
    
    .contact-card {
    padding: 1.75rem 1.25rem;
    }
    
    .contact-item {
    flex-direction: row;
    padding: 1.25rem 0;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-label {
    font-size: 0.8125rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container {
    height: 300px;
    }
}
/* 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;
    }
}
