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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #99aa8c4d;
}

#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 Glass Navigation - Floating Modern Design */
.header-glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-glass-nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #0f172a;
    border-radius: 50%;
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

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

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dropdown-trigger.active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    transform: translateX(5px);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

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

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-wrapper {
    padding: 1rem 1.5rem;
    }
    
    .hamburger-btn {
    display: flex;
    }
    
    .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
    transform: translateX(0);
    }
    
/*    .mobile-overlay {
    display: block;
    }*/
    
    .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
    padding: 1.25rem 1rem;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    }
    
    .nav-link::before {
    display: none;
    }
    
    .dropdown-menu-new {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease, max-height 0.4s ease;
    }
    
    .dropdown-trigger.active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 0.5rem 0;
    }
    
    .dropdown-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    }
    
    .dropdown-link:hover {
    transform: translateX(10px);
    }
}

@media (max-width: 576px) {
    .nav-container {
    padding: 0 1rem;
    }
    
    .nav-wrapper {
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    }
    
    .logo-circle {
    width: 36px;
    height: 36px;
    }
    
    .logo-circle::before {
    width: 18px;
    height: 18px;
    }
    
    .brand-text {
    font-size: 1.25rem;
    }
    
    .nav-menu {
    width: 280px;
    padding: 5rem 1.5rem 2rem;
    }
    
    .nav-link {
    font-size: 1rem;
    padding: 1rem 0.75rem;
    }
}

/* Active state for current page */
.nav-link.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Ensure header doesn't overlap content */
body {
    padding-top: 100px;
}

@media (max-width: 992px) {
    body {
    padding-top: 90px;
    }
}
/* Hero Wave Block: Asymmetric Pink-Orange Gradient Design */
.hero-wave-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(165deg, #ff0a78 0%, #ff6b35 35%, #ffa07a 70%, #ffcdb2 100%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .hero-nav-container {
    padding: 0 1rem;
    }
    
    .hero-content-container {
    padding: 0 1rem;
    }
    
    .hero-main-title {
    font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-badges {
    gap: 1rem;
    }
    
    .hero-trust-item {
    width: 48px;
    height: 48px;
    }
    
    .hero-trust-icon {
    width: 28px;
    height: 28px;
    }
    
    .hero-visual-column {
    height: 300px;
    }
    
    .hero-floating-card {
    width: 100px;
    height: 100px;
    }
    
    .hero-card-2 {
    width: 120px;
    height: 120px;
    }
    
    .hero-card-icon {
    width: 50px;
    height: 50px;
    }
    
    .float-shape {
    width: 150px !important;
    height: 150px !important;
    }
}
.post-preview > a {
    color: #212529;
}
.post-preview > a:focus,
.post-preview > a:hover {
    text-decoration: none;
    color: #0085a1;
}
.post-preview > a > .post-title {
    font-size: 1.875rem;
    margin-top: 1.875rem;
    margin-bottom: 0.625rem;
}
.post-preview > a > .post-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.625rem;
}
.post-preview > .post-meta {
    font-size: 1.125rem;
    font-style: italic;
    margin-top: 0;
    color: #6c757d;
}
.post-preview > .post-meta > a {
    text-decoration: none;
}
@media (min-width: 992px) {
    .post-preview > a > .post-title {
        font-size: 2.25rem;
    }
}
/* Contact Form Block - Modern Floating Design */
.contact-form-block-kx9 {
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .contact-form-block-kx9 {
    padding: 4rem 0;
    }
    
    .form-wrapper-inner {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-header-area {
    margin-bottom: 2rem;
    }
    
    .contact-form-main {
    gap: 1.25rem;
    }
    
    .form-label-text {
    font-size: 0.875rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    }
    
    .form-submit-btn {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    gap: 0.625rem;
    }
    
    .btn-arrow-icon {
    font-size: 1.25rem;
    }
}
/* Contact Information Block: Geometric Split Design with Floating Cards */

.contact-info-block-x7k2 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

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

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

/* Header Section */
.contact-header-zone {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.title-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

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

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.5);
}

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

.card-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

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

.contact-icon-svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.card-content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.contact-label-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.contact-link-hover {
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.contact-link-hover:hover {
    color: #06b6d4;
}

/* Map Column */
.contact-map-column {
    position: relative;
}

.map-frame-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.map-overlay-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 24px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

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

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

/* Decorative Background Elements */
.bg-decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.circle-top-right {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.circle-bottom-left {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

/* Desktop Layout: Two Columns */
@media (min-width: 992px) {
    .contact-inner-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 3rem;
    }
    
    .contact-header-zone {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    }
    
    .contact-details-column {
    grid-column: 1;
    grid-row: 2;
    }
    
    .contact-map-column {
    grid-column: 2;
    grid-row: 2;
    }
    
    .map-frame-container {
    min-height: 100%;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .contact-main-title {
    font-size: 2.75rem;
    }
    
    .map-frame-container {
    min-height: 450px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-info-block-x7k2 {
    padding: 5rem 0;
    }
    
    .contact-container-wrapper {
    padding: 0 1.25rem;
    }
    
    .contact-main-title {
    font-size: 2rem;
    letter-spacing: -0.01em;
    }
    
    .title-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .contact-inner-grid {
    gap: 2rem;
    }
    
    .contact-details-column {
    gap: 1.5rem;
    }
    
    .contact-card-item {
    padding: 1.5rem;
    gap: 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    }
    
    .card-icon-wrapper {
    width: 56px;
    height: 56px;
    }
    
    .contact-icon-svg {
    width: 28px;
    height: 28px;
    }
    
    .contact-value-text {
    font-size: 1.125rem;
    }
    
    .map-frame-container {
    min-height: 400px;
    border-radius: 16px;
    }
    
    .map-overlay-border {
    border-radius: 16px;
    }
    
    .circle-top-right {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    }
    
    .circle-bottom-left {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
    font-size: 1.75rem;
    }
    
    .contact-card-item {
    padding: 1.25rem;
    }
    
    .card-icon-wrapper {
    width: 48px;
    height: 48px;
    }
    
    .contact-icon-svg {
    width: 24px;
    height: 24px;
    }
    
    .contact-value-text {
    font-size: 1rem;
    }
    
    .map-frame-container {
    min-height: 350px;
    }
}
/* 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;
    }
}
