.senior-living-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 50%, #f1f8f4 100%);
    padding: 100px 50px;
    overflow: hidden;
}

/* Floating nature decorations */

.nature-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float-gentle 15s ease-in-out infinite;
    pointer-events: none;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
}

.flower-1 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.flower-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.senior-living-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Content */

.senior-hero-content {
    margin-bottom: 80px;
}

.senior-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(212, 165, 117, 0.15);
    border: 2px solid rgba(212, 165, 117, 0.3);
    border-radius: 50px;
    color: #0a3f26;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.senior-badge svg {
    color: #d4a575;
}

.senior-title {
    font-size: clamp(48px, 7vw, 60px);
    font-weight: 800;
    color: #0a3f26;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.senior-title .highlight {
    background: linear-gradient(135deg, #d4a575 0%, #b08455 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.senior-description {
    font-size: 16px;
    line-height: 1.8;
    color: #2d5f3f;
    max-width: 800px;
    margin-bottom: 60px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature List Layout */

.senior-features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
    max-width: 100%;
}

.care-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
    max-width: 100%;
}

/* Feature Item Enhanced */

.senior-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out backwards;
    transition: transform 0.3s ease;
    cursor: default;
}

.senior-feature-item:hover {
    transform: translateY(-5px);
}

.senior-feature-item:hover .feature-bullet {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 15px rgba(212, 165, 117, 0.4);
}

.senior-feature-item:nth-child(1) {
    animation-delay: 0.5s;
}

.senior-feature-item:nth-child(2) {
    animation-delay: 0.6s;
}

.senior-feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.senior-feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-bullet {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a575 0%, #b08455 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(212, 165, 117, 0.3);
    margin-top: -2px;
    /* Optical alignment */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-text-content {
    font-size: 16px;
    line-height: 1.6;
    color: #2d5f3f;
    padding-top: 8px;
    /* Better alignment */
}

.feature-inline-title {
    font-weight: 800;
    color: #0a3f26;
    display: inline;
    margin: 0;
    font-size: 19px;
    letter-spacing: -0.5px;
}

.feature-inline-desc {
    color: #5a7a65;
    font-weight: 500;
}

/* Care Services Section - Modern Professional Design */

.care-services-section {
    margin-bottom: 100px;
    position: relative;
}

.care-services-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 165, 117, 0.1) 0%, rgba(10, 63, 38, 0.05) 100%);
    border: 2px solid rgba(212, 165, 117, 0.3);
    border-radius: 50px;
    color: #0a3f26;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    color: #d4a575;
}

.care-services-title {
    font-size: clamp(40px, 5vw, 55px);
    font-weight: 800;
    color: #0a3f26;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.care-services-subtitle {
    font-size: 20px;
    color: #5a7a65;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.underline-dot {
    width: 8px;
    height: 8px;
    background: #d4a575;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.underline-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a575, transparent);
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.care-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.care-service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 28px;
    padding: 15px 15px;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 63, 38, 0.08);
}

/* Alternating card styles */

.care-service-card.card-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
}

.care-service-card.card-secondary {
    background: linear-gradient(135deg, #fefefe 0%, #faf8f5 100%);
}

/* Card number badge */

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(212, 165, 117, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.care-service-card:hover .card-number {
    color: rgba(212, 165, 117, 0.15);
    transform: scale(1.1);
}

/* Gradient border effect */

.care-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, #d4a575, #b08455, #0a3f26);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.care-service-card:hover::before {
    opacity: 1;
}

/* Accent line at bottom */

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d4a575, #b08455);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.care-service-card:hover .card-accent {
    transform: scaleX(1);
}

.care-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(10, 63, 38, 0.15);
    border-color: rgba(212, 165, 117, 0.3);
}

/* Icon wrapper with glow effect */

.care-icon-wrapper {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 28px;
}

.care-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 165, 117, 0.12) 0%, rgba(212, 165, 117, 0.05) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a575;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(212, 165, 117, 0.15);
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(212, 165, 117, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.care-service-card:hover .care-icon {
    background: linear-gradient(135deg, #d4a575 0%, #b08455 100%);
    color: white;
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 15px 40px rgba(212, 165, 117, 0.4);
}

.care-service-card:hover .icon-glow {
    opacity: 1;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.care-service-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.care-service-card:hover h4 {
    color: #d4a575;
}

.care-service-card p {
    font-size: 16px;
    color: #5a7a65;
    line-height: 1.8;
    font-weight: 500;
}

/* Stats Banner */

.care-stats-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 63, 38, 0.05) 0%, rgba(212, 165, 117, 0.05) 100%);
    border: 2px solid rgba(212, 165, 117, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.care-stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 117, 0.1), transparent);
    animation: shimmer-slide 3s infinite;
}

@keyframes shimmer-slide {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4a575 0%, #b08455 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #0a3f26;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 165, 117, 0.3), transparent);
}

/* Image Gallery */

.senior-image-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-main {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 63, 38, 0.2);
    height: 500px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-main:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(10, 63, 38, 0.9) 0%, transparent 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-main:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.overlay-icon {
    color: #d4a575;
}

.image-overlay p {
    font-size: 24px;
    font-weight: 700;
}

.gallery-secondary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.secondary-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 235px;
    box-shadow: 0 10px 30px rgba(10, 63, 38, 0.15);
    transition: transform 0.4s ease;
}

.secondary-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 63, 38, 0.25);
}

.card-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(212, 165, 117, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* Nature Banner */

.nature-banner {
    background: linear-gradient(135deg, rgba(212, 165, 117, 0.1) 0%, rgba(10, 63, 38, 0.05) 100%);
    border: 2px solid rgba(212, 165, 117, 0.3);
    border-radius: 32px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nature-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 117, 0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nature-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.nature-icon {
    font-size: 3rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.nature-icon:nth-child(1) {
    animation-delay: 0s;
}

.nature-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.nature-icon:nth-child(3) {
    animation-delay: 0.4s;
}

.nature-icon:nth-child(4) {
    animation-delay: 0.6s;
}

.nature-icon:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes bounce-gentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.nature-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2d5f3f;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Responsive Design */

@media (max-width: 1024px) {
    .senior-image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 400px;
    }

    .gallery-secondary {
        flex-direction: row;
    }

    .secondary-image-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .senior-living-section {
        padding: 60px 25px;
    }

    .senior-title {
        font-size: 42px;
    }

    .senior-description {
        font-size: 18px;
    }

    .senior-features-grid,
    .senior-features-list,
    .care-services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .care-services-section {
        margin-bottom: 60px;
    }

    .care-services-header {
        margin-bottom: 50px;
    }

    .header-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .care-services-title {
        font-size: 36px;
    }

    .care-services-subtitle {
        font-size: 17px;
    }

    .title-underline {
        margin-top: 20px;
    }

    .underline-line {
        width: 60px;
    }

    .care-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .care-service-card {
        padding: 35px 28px;
    }

    .card-number {
        font-size: 36px;
        top: 15px;
        right: 20px;
    }

    .care-icon {
        width: 75px;
        height: 75px;
    }

    .care-service-card h4 {
        font-size: 21px;
    }

    .care-service-card p {
        font-size: 15px;
    }

    .care-stats-banner {
        flex-direction: column;
        gap: 35px;
        padding: 40px 30px;
        margin-top: 40px;
    }

    .stat-divider {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(212, 165, 117, 0.3), transparent);
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 14px;
    }

    .gallery-secondary {
        flex-direction: column;
    }

    .nature-icons {
        gap: 15px;
    }

    .nature-icon {
        font-size: 2rem;
    }

    .nature-banner {
        padding: 35px 25px;
    }

    .nature-text {
        font-size: 16px;
    }
}/* Why Choose Us Section */
.why-choose-us-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}
/* Background Elements */
.why-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 165, 117, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 63, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.why-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(212, 165, 117, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}
/* Container */
.why-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
/* Header */
.why-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}
.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(212, 165, 117, 0.1);
    border: 1px solid rgba(212, 165, 117, 0.3);
    border-radius: 50px;
    color: #d4a575;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.badge-icon {
    animation: pulse 2s ease-in-out infinite;
}
.why-title {
    font-size: 56px;
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #0a3f26 0%, #d4a575 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.underline-dot {
    width: 8px;
    height: 8px;
    background: #d4a575;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
.underline-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4a575 50%, transparent 100%);
}
/* Benefits List Structure */
.why-features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
}
/* Feature Item Hover Effect */
.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out backwards;
    transition: transform 0.3s ease;
    cursor: default;
}
.why-feature-item:hover {
    transform: translateY(-5px);
}
.why-feature-item:hover .why-feature-bullet {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 15px rgba(212, 165, 117, 0.4);
}
.why-feature-bullet {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a575 0%, #b8935f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(212, 165, 117, 0.3);
    margin-top: -2px;
    /* Optical alignment for larger icon */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.why-feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    padding-top: 8px;
    /* Better alignment with 45px icon */
}
.why-feature-title {
    font-weight: 800;
    color: #0a3f26;
    display: inline;
    margin: 0;
    font-size: 19px;
    letter-spacing: -0.5px;
}
.why-feature-desc {
    color: #666;
    font-weight: 500;
}
/* CTA Section */
.why-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(10, 63, 38, 0.05) 0%, rgba(212, 165, 117, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(212, 165, 117, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.why-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 117, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.why-cta-content {
    position: relative;
    z-index: 1;
}
.why-cta h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0a3f26;
    margin-bottom: 16px;
}
.why-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}
.why-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.why-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.why-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.why-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}
.why-cta-btn.primary {
    background: linear-gradient(135deg, #0a3f26 0%, #0d5233 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(10, 63, 38, 0.3);
}
.why-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 63, 38, 0.4);
}
.why-cta-btn.secondary {
    background: transparent;
    color: #0a3f26;
    border: 2px solid #0a3f26;
}
.why-cta-btn.secondary:hover {
    background: #0a3f26;
    color: white;
    transform: translateY(-3px);
}
.why-cta-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.why-cta-btn:hover svg {
    transform: translateX(5px);
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}
@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .why-title {
        font-size: 48px;
    }

    .why-features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 80px 20px;
    }

    .why-header {
        margin-bottom: 60px;
    }

    .why-title {
        font-size: 36px;
    }

    .why-subtitle {
        font-size: 18px;
    }

    .why-features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* .benefit-card-inner no longer exists */

    .why-cta {
        padding: 40px 24px;
    }

    .why-cta h3 {
        font-size: 28px;
    }

    .why-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .why-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .why-title {
        font-size: 32px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-title {
        font-size: 22px;
    }

    .benefit-description {
        font-size: 15px;
    }
}