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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #ebb4404d;
}

#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%;
    }
}
/* Hero Block: Geometric Split Design */
.hero-block-geometric {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0e27;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-backdrop {
    display: none;
}

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

.nav-item {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .hero-header-container {
    padding: 0 1.5rem;
    }
    
    .hero-container {
    padding: 0 1.5rem;
    }
    
    .hero-title {
    font-size: 2rem;
    }
    
    .hero-subtitle {
    font-size: 1rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-badge {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    }
    
    .feature-mini-item {
    font-size: 0.9375rem;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
}
/* Features Section: Asymmetric Chess Grid with Coral & Lime */
.features-chess-grid {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #fff5f7 0%, #f0fdf4 50%, #fffbeb 100%);
    overflow: hidden;
}

.features-chess-grid .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Chess Grid Layout */
.features-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-large {
    grid-row: 1 / 3;
    grid-column: 1;
}

.feature-medium:nth-of-type(2) {
    grid-row: 1;
    grid-column: 2;
}

.feature-medium:nth-of-type(3) {
    grid-row: 2;
    grid-column: 2;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(251, 113, 133, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.03) 0%, rgba(132, 204, 22, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 32px;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(251, 113, 133, 0.16), 0 8px 16px rgba(132, 204, 22, 0.08);
    border-color: rgba(251, 113, 133, 0.2);
}

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

/* Image Containers */
.feature-image-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
}

.feature-large .feature-image-container {
    height: 280px;
}

/* Image Shapes */
.image-blob,
.image-hexagon,
.image-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-blob {
    width: 200px;
    height: 200px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    background: linear-gradient(135deg, #fb7185 0%, #fbbf24 100%);
    padding: 8px;
    animation: morphBlob 8s ease-in-out infinite;
}

.image-hexagon {
    width: 180px;
    height: 180px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #84cc16 0%, #22d3ee 100%);
    padding: 6px;
}

.image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f472b6 0%, #fb923c 100%);
    padding: 6px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.image-hexagon .feature-img {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-card:hover .image-blob,
.feature-card:hover .image-hexagon,
.feature-card:hover .image-circle {
    transform: scale(1.08) rotate(3deg);
}

/* Floating Accents */
.floating-accent {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: floatAccent 6s ease-in-out infinite;
}

.accent-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.2) 0%, transparent 70%);
    top: -20px;
    right: -20px;
}

.accent-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.25) 0%, transparent 70%);
    bottom: 10px;
    left: -10px;
    animation-delay: 1s;
}

.accent-3 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 0%, transparent 70%);
    top: 10px;
    left: -15px;
    animation-delay: 2s;
}

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

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

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

.feature-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

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

/* Background Decorations */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

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

.deco-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #84cc16 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
}

.deco-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    top: 40%;
    right: -80px;
}

/* Animations */
@keyframes morphBlob {
    0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
    25% {
    border-radius: 70% 30% 50% 50% / 30% 65% 35% 70%;
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
    border-radius: 30% 70% 70% 30% / 65% 45% 55% 35%;
    }
}

@keyframes floatAccent {
    0%, 100% {
    transform: translate(0, 0);
    }
    25% {
    transform: translate(10px, -10px);
    }
    50% {
    transform: translate(-5px, -15px);
    }
    75% {
    transform: translate(15px, -5px);
    }
}

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

    .feature-large,
    .feature-medium:nth-of-type(2),
    .feature-medium:nth-of-type(3) {
    grid-row: auto;
    grid-column: 1;
    }

    .feature-large .feature-image-container {
    height: 220px;
    }

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

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

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

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

    .feature-image-container {
    height: 180px;
    margin-bottom: 1.5rem;
    }

    .image-blob {
    width: 160px;
    height: 160px;
    }

    .image-hexagon,
    .image-circle {
    width: 150px;
    height: 150px;
    }

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

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

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

    .bg-decoration {
    filter: blur(60px);
    }
}

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

    .features-wrapper {
    gap: 1.5rem;
    }

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

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

    .feature-image-container {
    height: 160px;
    margin-bottom: 1.25rem;
    }

    .image-blob {
    width: 140px;
    height: 140px;
    }

    .image-hexagon,
    .image-circle {
    width: 130px;
    height: 130px;
    }

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

    .feature-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}
/* Testimonials Section - Modern Carousel Design - ID: zx9k */
.testimonials-section-zx9k {
    padding: 7rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-zx9k::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-section-zx9k::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section-zx9k .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

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

.testimonials-title-zx9k {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.testimonials-carousel-wrapper-zx9k {
    position: relative;
    padding: 0 60px;
}

.testimonials-swiper-zx9k {
    padding-bottom: 60px;
}

.testimonial-card-zx9k {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card-zx9k::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF6B9D 0%, #4ECDC4 50%, #FFB84D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card-zx9k:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

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

.testimonial-content-zx9k {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-icon-zx9k {
    color: #764ba2;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-text-zx9k {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author-zx9k {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.author-avatar-zx9k {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonial-card-zx9k:hover .author-avatar-zx9k {
    transform: scale(1.1) rotate(5deg);
}

.author-avatar-zx9k svg {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info-zx9k {
    flex-grow: 1;
}

.author-name-zx9k {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

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

.star-zx9k {
    color: #FFB84D;
    font-size: 1.125rem;
}

/* Navigation Buttons */
.testimonials-prev-zx9k,
.testimonials-next-zx9k {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #764ba2;
}

.testimonials-prev-zx9k {
    left: 0;
}

.testimonials-next-zx9k {
    right: 0;
}

.testimonials-prev-zx9k:hover,
.testimonials-next-zx9k:hover {
    background: #764ba2;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(118, 75, 162, 0.3);
}

.testimonials-prev-zx9k.swiper-button-disabled,
.testimonials-next-zx9k.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Pagination */
.testimonials-pagination-zx9k {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet-active {
    opacity: 1;
    width: 36px;
    border-radius: 6px;
    background: #ffffff;
}

/* Static fallback layout (no JS) */
.testimonials-static-zx9k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-title-zx9k {
    font-size: 2.75rem;
    }
    
    .testimonials-carousel-wrapper-zx9k {
    padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .testimonials-section-zx9k {
    padding: 5rem 0;
    }
    
    .testimonials-title-zx9k {
    font-size: 2.25rem;
    }
    
    .testimonials-header-zx9k {
    margin-bottom: 3rem;
    }
    
    .testimonials-carousel-wrapper-zx9k {
    padding: 0 40px;
    }
    
    .testimonial-card-zx9k {
    padding: 2rem;
    }
    
    .testimonial-text-zx9k {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .author-name-zx9k {
    font-size: 1.125rem;
    }
    
    .testimonials-prev-zx9k,
    .testimonials-next-zx9k {
    width: 44px;
    height: 44px;
    }
    
    .testimonials-static-zx9k {
    grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .testimonials-section-zx9k {
    padding: 4rem 0;
    }
    
    .testimonials-title-zx9k {
    font-size: 1.875rem;
    }
    
    .testimonials-carousel-wrapper-zx9k {
    padding: 0;
    }
    
    .testimonial-card-zx9k {
    padding: 1.5rem;
    }
    
    .testimonials-prev-zx9k,
    .testimonials-next-zx9k {
    display: none;
    }
    
    .author-avatar-zx9k svg {
    width: 56px;
    height: 56px;
    }
    
    .quote-icon-zx9k {
    margin-bottom: 1rem;
    }
    
    .quote-icon-zx9k svg {
    width: 40px;
    height: 40px;
    }
}

/* Accessibility - Focus States */
.testimonials-prev-zx9k:focus,
.testimonials-next-zx9k:focus {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.testimonials-pagination-zx9k .swiper-pagination-bullet:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* Animation Enhancement */
@media (prefers-reduced-motion: no-preference) {
    .testimonial-card-zx9k {
    animation: fadeInUp 0.6s ease-out backwards;
    }
    
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
}
/* Services Block: Diagonal Grid with Floating Cards Design */
.services-diagonal-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .service-description {
    font-size: 0.9375rem;
    }
}
/* FAQ Block: Violet Gradient Theme with Pure CSS Accordion */
.faq-block-violet {
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f4ff 0%, #e9deff 50%, #f0e6ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-block-violet::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-block-violet::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-block-violet .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

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

.faq-main-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #6b21a8;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.faq-decorative-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #9333ea 0%, #c084fc 100%);
    margin: 0 auto;
    border-radius: 10px;
}

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

.faq-item-wrapper {
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #e9d5ff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.08);
}

.faq-item-wrapper:hover {
    border-color: #c084fc;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.15);
    transform: translateY(-2px);
}

.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;
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.faq-question-label:hover {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b21a8;
    line-height: 1.5;
    padding-right: 1.5rem;
    transition: color 0.3s ease;
}

.faq-question-label:hover .faq-question-text {
    color: #7c3aed;
}

.faq-icon-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    color: #ffffff;
    transition: all 0.3s ease;
}

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

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

.faq-checkbox:checked ~ .faq-question-label .faq-icon-toggle {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.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-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-inner {
    padding: 0 2rem 2rem 2rem;
    background: #ffffff;
}

.faq-answer-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4c1d95;
    margin: 0;
    opacity: 0.9;
}

/* Focus states for accessibility */
.faq-checkbox:focus-visible ~ .faq-question-label {
    outline: 3px solid #a855f7;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-block-violet {
    padding: 4.5rem 0;
    }

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

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

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

    .faq-item-wrapper {
    border-radius: 16px;
    }

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

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

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

    .faq-icon-plus,
    .faq-icon-minus {
    width: 20px;
    height: 20px;
    }

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

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

@media (max-width: 480px) {
    .faq-block-violet {
    padding: 3.5rem 0;
    }

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

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

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

    .faq-answer-text {
    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 Block: Asymmetric Split with Gradient Accent - Deep Teal & Coral */
.footer-block-asymmetric {
    position: relative;
    background: linear-gradient(135deg, #0d3b4d 0%, #1a5568 50%, #0d3b4d 100%);
    color: #e2e8f0;
    padding: 5rem 0 2rem;
    overflow: hidden;
}

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

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

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

.footer-brand-wrapper {
    position: relative;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-brand-accent {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b 0%, #feca57 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.footer-contact-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-contact-link {
    font-size: 1.0625rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-contact-link:hover {
    color: #ffffff;
}

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

/* Navigation Section */
.footer-nav-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

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

.footer-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

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

.footer-link {
    font-size: 1.0625rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.5;
}

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

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

.footer-link:hover::before {
    width: 8px;
    height: 8px;
    background: #feca57;
    box-shadow: 0 0 12px rgba(254, 202, 87, 0.6);
}

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

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

.footer-bottom-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 107, 0.3) 50%, transparent 100%);
    margin-bottom: 2rem;
}

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

.footer-copyright {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.01em;
}

.footer-decorative-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: footer-pulse 2s ease-in-out infinite;
}

.footer-dot:nth-child(2) {
    animation-delay: 0.3s;
    background: #feca57;
}

.footer-dot:nth-child(3) {
    animation-delay: 0.6s;
    background: #48dbfb;
}

@keyframes footer-pulse {
    0%, 100% {
    opacity: 0.4;
    transform: scale(1);
    }
    50% {
    opacity: 1;
    transform: scale(1.3);
    }
}

/* Background Decorative Shapes */
.footer-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.footer-bg-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.footer-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #feca57 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
}

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

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

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

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

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

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

    .footer-contact-text,
    .footer-contact-link,
    .footer-link {
    font-size: 1rem;
    }

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

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

@media (max-width: 576px) {
    .footer-brand-name {
    font-size: 1.75rem;
    }

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

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

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

    .footer-link {
    padding-left: 1rem;
    }

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